evaluators
Execute conversation-quality evaluator
Evaluate conversation quality based on tone, clarity, flow, responsiveness, and transparency
Request Body:
- input.prompts (string, required): JSON array of prompts in the conversation
- input.completions (string, required): JSON array of completions in the conversation
- config.model (string, optional): Model to use for evaluation (default: gpt-4o)
post/v2/evaluators/execute/conversation-quality
Request body
Example request
{
"config": {
"model": "gpt-4o"
},
"input": {
"completions": "[\"Hi! I'd be happy to assist you today.\", \"We offer consulting, development, and support services.\"]",
"prompts": "[\"Hello, how can I help?\", \"What services do you offer?\"]"
}
}Response
OK
Example response
{
"conversation_quality_score": 0.82
}