|
4 | 4 | "type": "openai", |
5 | 5 | "api_key": "$OPENAI_API_KEY", |
6 | 6 | "api_endpoint": "$OPENAI_API_ENDPOINT", |
7 | | - "default_large_model_id": "gpt-5-codex", |
| 7 | + "default_large_model_id": "gpt-5-1-codex", |
8 | 8 | "default_small_model_id": "gpt-4o", |
9 | 9 | "models": [ |
| 10 | + { |
| 11 | + "id": "gpt-5.1", |
| 12 | + "name": "GPT-5.1", |
| 13 | + "cost_per_1m_in": 1.25, |
| 14 | + "cost_per_1m_out": 10, |
| 15 | + "cost_per_1m_in_cached": 0.13, |
| 16 | + "cost_per_1m_out_cached": 0.13, |
| 17 | + "context_window": 400000, |
| 18 | + "default_max_tokens": 128000, |
| 19 | + "can_reason": true, |
| 20 | + "reasoning_levels": [ |
| 21 | + "minimal", |
| 22 | + "low", |
| 23 | + "medium", |
| 24 | + "high" |
| 25 | + ], |
| 26 | + "default_reasoning_effort": "medium", |
| 27 | + "supports_attachments": true |
| 28 | + }, |
| 29 | + { |
| 30 | + "id": "gpt-5.1-codex", |
| 31 | + "name": "GPT-5.1 Codex", |
| 32 | + "cost_per_1m_in": 1.25, |
| 33 | + "cost_per_1m_out": 10, |
| 34 | + "cost_per_1m_in_cached": 0.25, |
| 35 | + "cost_per_1m_out_cached": 0.25, |
| 36 | + "context_window": 400000, |
| 37 | + "default_max_tokens": 128000, |
| 38 | + "can_reason": true, |
| 39 | + "reasoning_levels": [ |
| 40 | + "minimal", |
| 41 | + "low", |
| 42 | + "medium", |
| 43 | + "high" |
| 44 | + ], |
| 45 | + "default_reasoning_effort": "medium", |
| 46 | + "supports_attachments": true |
| 47 | + }, |
| 48 | + { |
| 49 | + "id": "gpt-5.1-codex-mini", |
| 50 | + "name": "GPT-5.1 Codex Mini", |
| 51 | + "cost_per_1m_in": 0.25, |
| 52 | + "cost_per_1m_out": 2, |
| 53 | + "cost_per_1m_in_cached": 0.03, |
| 54 | + "cost_per_1m_out_cached": 0.03, |
| 55 | + "context_window": 400000, |
| 56 | + "default_max_tokens": 128000, |
| 57 | + "can_reason": true, |
| 58 | + "reasoning_levels": [ |
| 59 | + "low", |
| 60 | + "medium", |
| 61 | + "high" |
| 62 | + ], |
| 63 | + "default_reasoning_effort": "medium", |
| 64 | + "supports_attachments": true |
| 65 | + }, |
10 | 66 | { |
11 | 67 | "id": "gpt-5-codex", |
12 | 68 | "name": "GPT-5 Codex", |
|
31 | 87 | "name": "GPT-5", |
32 | 88 | "cost_per_1m_in": 1.25, |
33 | 89 | "cost_per_1m_out": 10, |
34 | | - "cost_per_1m_in_cached": 0.25, |
35 | | - "cost_per_1m_out_cached": 0.25, |
| 90 | + "cost_per_1m_in_cached": 0.13, |
| 91 | + "cost_per_1m_out_cached": 0.13, |
36 | 92 | "context_window": 400000, |
37 | 93 | "default_max_tokens": 128000, |
38 | 94 | "can_reason": true, |
|
0 commit comments