Skip to main content
POST
Test Llm Config Inline

Authorizations

Authorization
string
header
required

Retrieve your API Key from Dashboard API Keys Section.

Body

application/json
system_prompt
string
required

Required, non-empty system prompt.

Minimum string length: 1
config
Azure OpenAI · object
required

Full config to test inline, before any config record is persisted (create flow). Unlike the saved-config test, there is no stored record to recover secrets from: the provider api_key must be supplied here, or omitted to fall back to the team's stored vendor credentials.

messages
LLMTestMessage · object[]

Optional ordered conversation history to send to the model.

Response

Successful Response

success
boolean
required
response
string | null

Concatenated model output text on success.

error
string | null

Clean error message when success is False.

provider
string | null
model
string | null
prompt_tokens
integer | null
completion_tokens
integer | null
total_tokens
integer | null
latency_ms
integer | null
winning_member
LLMTestMemberInfo · object | null

Which group member produced the main response.

backchannel_response
string | null

Backchannel text emitted before the main response, if any.

backchannel_member
LLMTestMemberInfo · object | null

Producer of the backchannel response (null for a static backchannel).

backchannel_prompt_tokens
integer | null
backchannel_completion_tokens
integer | null
backchannel_total_tokens
integer | null