docs / llm

AI Text

Run prompts through a hosted language model.

base /llm/v12 endpoints
post/llm/v1/complete3 credits

prompt -> generated text. params: prompt (str, required) + optional system (str), max_tokens (int, default 512, cap 4096), temperature (float 0-2, default 0.7), top_p, think (bool, default false — Qwen3 reasoning mode; off = direct answer, faster/cheaper, best for overlay), model. Returns text + finish_reason + usage.

ParameterRequired
promptrequired
systemoptional
max_tokensoptional
temperatureoptional
top_poptional
thinkoptional
modeloptional
Try in playground →
post/llm/v1/chat3 credits

OpenAI-style chat. params: messages (list of {role, content}, required) + optional max_tokens, temperature, top_p, think (bool, default false), model. Returns message {role, content} + text + usage.

ParameterRequired
messagesrequired
max_tokensoptional
temperatureoptional
top_poptional
thinkoptional
modeloptional
Try in playground →