POST
/
v1
/
evaluate
/
runs
curl --request POST \
  --url https://api.acme.rungalileo.io/v1/evaluate/runs \
  --header 'Content-Type: application/json' \
  --header 'Galileo-API-Key: <api-key>' \
  --data '{
  "project_name": "my-evaluate-project",
  "run_name": "my-evaluate-run",
  "scorers": [
    {
      "name": "correctness"
    },
    {
      "name": "output_pii"
    }
  ],
  "workflows": [
    {
      "created_at_ns": 1744827344427819800,
      "duration_ns": 0,
      "input": "who is a smart LLM?",
      "metadata": {},
      "name": "llm",
      "output": "I am!",
      "type": "llm"
    }
  ]
}'
{
  "message": "<string>",
  "project_id": "<string>",
  "project_name": "<string>",
  "run_id": "<string>",
  "run_name": "<string>",
  "workflows_count": 123,
  "records_count": 123
}

Authorizations

Galileo-API-Key
string
header
required

Body

application/json
workflows
object[]
required

List of workflows to include in the run.

scorers
object[]

List of Galileo scorers to enable.

registered_scorers
object[]

List of registered scorers to enable.

generated_scorers
object[]

List of generated scorers to enable.

project_id
string | null

Evaluate Project ID to which the run should be associated.

project_name
string | null

Evaluate Project name to which the run should be associated. If the project does not exist, it will be created.

run_name
string | null

Name of the run. If no name is provided, a timestamp-based name will be generated.

Response

200
application/json
Successful Response
message
string
required
project_id
string
required
project_name
string
required
run_id
string
required
run_name
string
required
workflows_count
integer
required
records_count
integer
required