Get Evaluate Run Results
Fetch evaluation results for a specific run including rows and aggregate information.
curl --request POST \
--url https://api.acme.rungalileo.io/v1/evaluate/run-workflows \
--header 'Content-Type: application/json' \
--header 'Galileo-API-Key: <api-key>' \
--data '{
"starting_token": 0,
"limit": 100,
"project_id": "<string>",
"project_name": "<string>",
"run_id": "<string>",
"run_name": "<string>"
}'
{
"starting_token": 0,
"limit": 100,
"paginated": false,
"next_starting_token": 123,
"workflows": [
{
"type": "workflow",
"input": "<string>",
"output": "<string>",
"name": "",
"created_at_ns": 123,
"duration_ns": 0,
"metadata": {},
"status_code": 123,
"ground_truth": "<string>",
"root_workflow_id": "<string>",
"workflow_id": "<string>",
"step_id": "<string>",
"steps": [
{}
],
"metrics": [
{
"name": "<string>",
"value": "<any>"
}
]
}
]
}
Authorizations
Body
Response
Response model for workflow evaluation results
Input to the step.
Type of the step. By default, it is set to workflow.
chain
, chat
, llm
, retriever
, tool
, agent
, workflow
, trace
Output of the step.
Name of the step.
Timestamp of the step's creation, as nanoseconds since epoch.
Duration of the step in nanoseconds.
Status code of the step. Used for logging failed/errored steps.
Ground truth expected output for the step.
Input to the step.
Type of the step. By default, it is set to workflow.
chain
, chat
, llm
, retriever
, tool
, agent
, workflow
, trace
Output of the step.
Name of the step.
Timestamp of the step's creation, as nanoseconds since epoch.
Duration of the step in nanoseconds.
Metadata associated with this step.
Status code of the step. Used for logging failed/errored steps.
Ground truth expected output for the step.
Input to the step.
Type of the step. By default, it is set to workflow.
chain
, chat
, llm
, retriever
, tool
, agent
, workflow
, trace
Output of the step.
Name of the step.
Timestamp of the step's creation, as nanoseconds since epoch.
Duration of the step in nanoseconds.
Metadata associated with this step.
Status code of the step. Used for logging failed/errored steps.
Ground truth expected output for the step.
Input to the step.
Type of the step. By default, it is set to workflow.
chain
, chat
, llm
, retriever
, tool
, agent
, workflow
, trace
Output of the step.
Name of the step.
Timestamp of the step's creation, as nanoseconds since epoch.
Duration of the step in nanoseconds.
Metadata associated with this step.
Status code of the step. Used for logging failed/errored steps.
Ground truth expected output for the step.
Was this page helpful?
curl --request POST \
--url https://api.acme.rungalileo.io/v1/evaluate/run-workflows \
--header 'Content-Type: application/json' \
--header 'Galileo-API-Key: <api-key>' \
--data '{
"starting_token": 0,
"limit": 100,
"project_id": "<string>",
"project_name": "<string>",
"run_id": "<string>",
"run_name": "<string>"
}'
{
"starting_token": 0,
"limit": 100,
"paginated": false,
"next_starting_token": 123,
"workflows": [
{
"type": "workflow",
"input": "<string>",
"output": "<string>",
"name": "",
"created_at_ns": 123,
"duration_ns": 0,
"metadata": {},
"status_code": 123,
"ground_truth": "<string>",
"root_workflow_id": "<string>",
"workflow_id": "<string>",
"step_id": "<string>",
"steps": [
{}
],
"metrics": [
{
"name": "<string>",
"value": "<any>"
}
]
}
]
}