|
4 | 4 | "type": "openai", |
5 | 5 | "api_key": "$OPENAI_API_KEY", |
6 | 6 | "api_endpoint": "$OPENAI_API_ENDPOINT", |
7 | | - "default_large_model_id": "o4-mini", |
| 7 | + "default_large_model_id": "gpt-5", |
8 | 8 | "default_small_model_id": "gpt-4o", |
9 | 9 | "models": [ |
| 10 | + { |
| 11 | + "id": "gpt-5", |
| 12 | + "name": "GPT-5", |
| 13 | + "cost_per_1m_in": 1.25, |
| 14 | + "cost_per_1m_out": 10, |
| 15 | + "cost_per_1m_in_cached": 0.25, |
| 16 | + "cost_per_1m_out_cached": 0.25, |
| 17 | + "context_window": 400000, |
| 18 | + "default_max_tokens": 128000, |
| 19 | + "can_reason": true, |
| 20 | + "has_reasoning_effort": true, |
| 21 | + "default_reasoning_effort": "minimal", |
| 22 | + "supports_attachments": true |
| 23 | + }, |
| 24 | + { |
| 25 | + "id": "gpt-5-mini", |
| 26 | + "name": "GPT-5 Mini", |
| 27 | + "cost_per_1m_in": 0.25, |
| 28 | + "cost_per_1m_out": 2, |
| 29 | + "cost_per_1m_in_cached": 0.025, |
| 30 | + "cost_per_1m_out_cached": 0.025, |
| 31 | + "context_window": 400000, |
| 32 | + "default_max_tokens": 128000, |
| 33 | + "can_reason": true, |
| 34 | + "has_reasoning_effort": true, |
| 35 | + "default_reasoning_effort": "low", |
| 36 | + "supports_attachments": true |
| 37 | + }, |
| 38 | + { |
| 39 | + "id": "gpt-5-nano", |
| 40 | + "name": "GPT-5 Nano", |
| 41 | + "cost_per_1m_in": 0.05, |
| 42 | + "cost_per_1m_out": 0.4, |
| 43 | + "cost_per_1m_in_cached": 0.005, |
| 44 | + "cost_per_1m_out_cached": 0.005, |
| 45 | + "context_window": 400000, |
| 46 | + "default_max_tokens": 128000, |
| 47 | + "can_reason": true, |
| 48 | + "has_reasoning_effort": true, |
| 49 | + "default_reasoning_effort": "low", |
| 50 | + "supports_attachments": true |
| 51 | + }, |
10 | 52 | { |
11 | 53 | "id": "o4-mini", |
12 | 54 | "name": "o4 Mini", |
|
0 commit comments