Recordings update from CI (setup: vllm, suite: base-vllm-subset)

This commit is contained in:
github-actions[bot] 2025-09-16 15:21:53 +00:00 committed by Derek Higgins
parent 2b19f98d68
commit dc965ba6dc
29 changed files with 16830 additions and 0 deletions

View file

@ -0,0 +1,67 @@
{
"request": {
"method": "POST",
"url": "http://localhost:8000/v1/v1/chat/completions",
"headers": {},
"body": {
"model": "meta-llama/Llama-3.2-1B-Instruct",
"messages": [
{
"role": "user",
"content": [
{
"type": "text",
"text": "Humans live on which planet: Mars, Venus, or Earth?"
}
]
}
],
"stream": false,
"temperature": 0.0,
"max_tokens": 4096
},
"endpoint": "/v1/chat/completions",
"model": "meta-llama/Llama-3.2-1B-Instruct"
},
"response": {
"body": {
"__type__": "openai.types.chat.chat_completion.ChatCompletion",
"__data__": {
"id": "chatcmpl-8133359c598740198362d87fa091285d",
"choices": [
{
"finish_reason": "stop",
"index": 0,
"logprobs": null,
"message": {
"content": "Humans live on Earth.",
"refusal": null,
"role": "assistant",
"annotations": null,
"audio": null,
"function_call": null,
"tool_calls": [],
"reasoning_content": null
},
"stop_reason": null
}
],
"created": 1758035654,
"model": "meta-llama/Llama-3.2-1B-Instruct",
"object": "chat.completion",
"service_tier": null,
"system_fingerprint": null,
"usage": {
"completion_tokens": 6,
"prompt_tokens": 48,
"total_tokens": 54,
"completion_tokens_details": null,
"prompt_tokens_details": null
},
"prompt_logprobs": null,
"kv_transfer_params": null
}
},
"is_streaming": false
}
}