{
"chat_simple": {
"endpoint": "/chat/completions",
"body": {
"messages": [{"role": "user", "content": "Write a haiku about the ocean. Reply with only the haiku, nothing else."}]
},
"allowed_mismatches": [
"id", "created",
"annotations", "audio", "function_call", "kv_transfer_params",
"logprobs", "prompt_logprobs", "prompt_token_ids", "prompt_tokens_details",
"reasoning", "refusal", "service_tier", "stop_reason",
"system_fingerprint", "token_ids", "tool_calls"
]
},
"chat_tools": {
"endpoint": "/chat/completions",
"body": {
"messages": [{"role": "user", "content": "What is the weather in Paris?"}],
"tools": [
{
"type": "function",
"function": {
"name": "get_weather",
"parameters": {
"type": "object",
"properties": {"location": {"type": "string"}}
}
}
}
],
"tool_choice": "required"
},
"allowed_mismatches": [
"id", "created",
"annotations", "audio", "function_call", "kv_transfer_params",
"logprobs", "prompt_logprobs", "prompt_token_ids", "prompt_tokens_details",
"reasoning", "refusal", "service_tier", "stop_reason",
"system_fingerprint", "token_ids"
]
},
"legacy_completion": {
"endpoint": "/completions",
"body": {
"prompt": "The quick brown fox jumped over the lazy dog and then",
"max_tokens": 50
},
"allowed_mismatches": [
"id", "created",
"kv_transfer_params", "logprobs", "prompt_logprobs",
"prompt_token_ids", "prompt_tokens_details",
"service_tier", "stop_reason", "system_fingerprint", "token_ids"
]
},
"responses_simple": {
"endpoint": "/responses",
"body": {
"input": "Write a haiku about the ocean. Reply with only the haiku, nothing else."
},
"allowed_mismatches": [
"id", "created_at"
]
}
}