API Reference
- Api reference
- Getting Started
- Schemas
protect
trace
log_stream
experiment
feedback
API Reference
evaluate
Get Evaluate Run Results
Fetch evaluation results for a specific run including rows and aggregate information.
POST
/
v1
/
evaluate
/
run-workflows
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
application/json
Response
200
application/json
Successful Response
Response model for workflow evaluation results
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>"
}
]
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.