LLM models
GPT-5.4
On this page
GPT-5.4 — frontier reasoning and generation through one API.
| modelId | gpt-5-4 |
| Modality | text |
| Pricing | See this model on the Pricing page for the current per-call price (with your markup). |
Operations
| Operation | modelId | Endpoint | Required input |
|---|---|---|---|
| Default | gpt-5-4 | POST /api/v1/generate | prompt |
| Poll task | — | GET /api/v1/task/{id}?model=gpt-5-4 | — |
Input parameters
| Field | Type | Required | Values / example |
|---|---|---|---|
| prompt | string | Yes | Text value |
| memory | boolean | No | Automatically append previous messages to maintain multi-turn context. May increase token usage. (true/false) (default: false) |
| function_calling | boolean | No | Lets you define functions that Gemini can call (true/false) (default: false) |
| web_search | boolean | No | Use Web Access (true/false) (default: true) |
| reasoning_effort | string | No | Control reasoning depth: Low for faster responses, High for deeper analysis (options: Low | Medium | High | XHigh) (default: Medium) |
| stream | boolean | No | Turn off to get a single non-streaming response. (true/false) (default: true) |
| system | string | No | System instruction for the model. Defaults to "You are GPT-5.4, developed by OpenAI." when omitted. |
Example request
bash
curl -X POST https://you.bot/api/v1/generate \
-H "Authorization: Bearer $YOUBOT_API_KEY" \
-H "Content-Type: application/json" \
-d '{"modelId":"gpt-5-4","input":{"prompt":"Explain how diffusion models generate images, in two short sentences.","memory":false,"function_calling":false,"web_search":true,"reasoning_effort":"Medium","stream":true}}'