Skip to content
provod.ai
RU

Developer workflow

An AI request path developers can inspect

Move an existing client from configuration to a streamed request with an explicit model identifier.

Developer workflow from application request through an API key to a response.

Example request and abbreviated response shape; values are illustrative and do not show a live execution.

bash
curl https://api.provod.ai/v1/chat/completions \
  -H "Authorization: Bearer sk_..." \
  -H "Content-Type: application/json" \
  -d '{"model":"openai/gpt-5.4","messages":[{"role":"user","content":"Reply with ok"}]}'
json
{"id":"example-chat-completion","object":"chat.completion","model":"openai/gpt-5.4","choices":[{"index":0,"message":{"role":"assistant","content":"ok"},"finish_reason":"stop"}]}

From application input to a traceable response

Input
An existing OpenAI-compatible client and a platform API key.
Output
A response from the selected public model ID and a request record.
Constraint
Capabilities and availability follow the current public catalog.