Create an Evaluation Pipeline associated with a dataset group. Use this endpoint to create a pipeline blueprint with optional columns, custom scoring configuration, folder placement, and external IDs.Documentation Index
Fetch the complete documentation index at: https://docs.promptlayer.com/llms.txt
Use this file to discover all available pages before exploring further.
is_part_of_score on columns for built-in scoring, or provide score_configuration for custom scoring logic.Evaluation pipeline creation payload.
ID of the dataset group to use.
Name for the pipeline. Auto-generated if omitted.
Folder ID for organization.
Specific dataset version. Uses latest published version if omitted.
Evaluation columns to add to the pipeline.
Optional custom scoring logic.
{
"code": "score = sum(1 for row in data if row.get(\"Accuracy Check\") is True) / len(data) * 100 if data else 0\nreturn {\"score\": score}",
"code_language": "PYTHON"
}External ID mappings to attach to the pipeline.
Evaluation pipeline created.