- Model
o3-deep-research- Provider
openai- API
openai-responses- Base URL
https://api.openai.com/v1- Input
- text, image
- Reasoning
- Yes
- Context window
- 200,000
- Max tokens
- 100,000
- Cost / million input
- $10
- Cost / million output
- $40
- Cost / million cache read
- $2.5
- Cost / million cache write
- $0
Model config JSON
{
"providers": {
"openai": {
"apiKey": "YOUR_API_KEY",
"models": [
{
"id": "o3-deep-research",
"name": "o3-deep-research",
"reasoning": true,
"input": [
"text",
"image"
],
"contextWindow": 200000,
"maxTokens": 100000,
"cost": {
"input": 10,
"output": 40,
"cacheRead": 2.5,
"cacheWrite": 0
}
}
],
"api": "openai-responses",
"baseUrl": "https://api.openai.com/v1"
}
}
}