Transport
HTTP status: `200`
Response size: `778 bytes`
Benchmark
This page records a short public request against the OpenAI-compatible chat endpoint on `probqa.com`. The purpose is to show the live request path, token accounting, and end-to-end latency for a small completion, not to claim maximum throughput.
Request
curl https://probqa.com/v1/chat/completions \
-H "Authorization: Bearer cgs_live_your_key" \
-H "Content-Type: application/json" \
-d '{
"model": "meta-llama/Llama-4-Scout-17B-16E-Instruct",
"messages": [
{"role": "system", "content": "Be concise and useful."},
{"role": "user", "content": "Give a one-sentence description of an online SAT solver."}
],
"max_tokens": 96
}'
Result
HTTP status: `200`
Response size: `778 bytes`
Prompt tokens: `32`
Completion tokens: `38`
Total tokens: `70`
“An online SAT (Satisfiability) solver is a web-based tool that takes a Boolean satisfiability problem as input and returns a solution or determines that the problem is unsatisfiable.”
Interpretation
Next Step
Trial credits let you test the exact OpenAI-compatible surface with your own prompts, your own system messages, and your own token budgets.