When to use them
| Task | Recommended model type |
|---|---|
| Translation, rewriting, short Q&A | Standard chat model |
| Math proof, logic puzzle, algorithm design | Reasoning model |
| Complex planning or architecture analysis | Reasoning model |
| High-volume simple classification | Standard or smaller model |
Control reasoning effort
Some OpenAI-compatible reasoning models supportreasoning_effort:
| Value | Behavior | Use case |
|---|---|---|
low | Faster, lower cost | Simple reasoning tasks |
medium | Balanced | General reasoning tasks |
high | More compute, slower, higher cost | Hard math, logic, or code tasks |
Reasoning content
Some providers expose a separate reasoning field, such asreasoning_content, while others return only the final answer. If the model exposes reasoning content, your application can display it, store it for debugging, or ignore it.
Example response shape:
Streaming reasoning output
In streaming mode, a provider may send reasoning deltas before final answer deltas. If you choose to display them, keep them visually separate from the final answer and make sure your parser handles missing fields.Cost and latency
Reasoning tokens usually count toward output usage. A higher reasoning budget may improve quality on hard tasks, but it also increases latency and cost. Monitor usage in dashboard and usage.Practical guidance
- Start with a standard model for simple tasks.
- Use reasoning models for hard tasks with measurable accuracy needs.
- Keep prompts focused and provide the necessary facts up front.
- Set reasoning controls only when the selected model supports them.
- Validate final answers when they affect money, permissions, or user data.
