curl --request POST \
--url https://api.galileo.ai/v2/scorers/llm/validate/log_record \
--header 'Content-Type: application/json' \
--header 'Galileo-API-Key: <api-key>' \
--data '
{
"query": "<string>",
"response": "<string>",
"chain_poll_template": {
"template": "<string>",
"metric_system_prompt": "<string>",
"metric_description": "<string>",
"value_field_name": "rating",
"explanation_field_name": "explanation",
"metric_few_shot_examples": [
{
"generation_prompt_and_response": "<string>",
"evaluating_response": "<string>"
}
],
"response_schema": {}
},
"scorer_configuration": {
"model_alias": "gpt-4.1-mini",
"num_judges": 3,
"output_type": "boolean",
"scoreable_node_types": [
"<string>"
],
"cot_enabled": false,
"ground_truth": false
},
"user_prompt": "<string>",
"starting_token": 0,
"limit": 100,
"previous_last_row_id": "<string>",
"log_stream_id": "<string>",
"experiment_id": "<string>",
"metrics_testing_id": "<string>",
"filters": [
{
"column_id": "<string>",
"value": "<string>",
"operator": "eq",
"type": "id"
}
],
"filter_tree": {
"filter": {
"column_id": "<string>",
"value": "<string>",
"operator": "eq",
"type": "id"
}
},
"sort": {
"column_id": "created_at",
"ascending": false,
"sort_type": "column"
},
"truncate_fields": false
}
'