|
201 | 201 | temperature=1, # temperature param not supported by gpt-5 |
202 | 202 | vision_support=True, |
203 | 203 | ), |
204 | | - "azure/gpt-5-high-2025-08-07": AzureModelArgs( |
205 | | - model_name="gpt-5", |
206 | | - max_total_tokens=400_000, |
207 | | - max_input_tokens=256_000, |
208 | | - max_new_tokens=128_000, |
209 | | - temperature=1, # temperature param not supported by gpt-5 |
210 | | - vision_support=True, |
211 | | - reasoning_effort="high", |
212 | | - ), |
213 | | - "azure/gpt-5-mini-high-2025-08-07": AzureModelArgs( |
214 | | - model_name="gpt-5-mini", |
215 | | - max_total_tokens=400_000, |
216 | | - max_input_tokens=256_000, |
217 | | - max_new_tokens=128_000, |
218 | | - temperature=1, # temperature param not supported by gpt-5 |
219 | | - vision_support=True, |
220 | | - reasoning_effort="high", |
221 | | - ), |
222 | | - "azure/gpt-5-nano-high-2025-08-07": AzureModelArgs( |
223 | | - model_name="gpt-5-nano", |
224 | | - max_total_tokens=400_000, |
225 | | - max_input_tokens=256_000, |
226 | | - max_new_tokens=128_000, |
227 | | - temperature=1, # temperature param not supported by gpt-5 |
228 | | - vision_support=True, |
229 | | - reasoning_effort="high", |
230 | | - ), |
231 | | - "azure/gpt-oss-120b": AzureModelArgs( |
232 | | - model_name="gpt-oss-120b", |
233 | | - max_total_tokens=200_000, |
234 | | - max_input_tokens=200_000, |
235 | | - max_new_tokens=100_000, |
236 | | - temperature=1, |
237 | | - vision_support=False, |
238 | | - reasoning_effort="low", |
239 | | - ), |
240 | | - "azure/o3-high-2025-04-16": AzureModelArgs( |
241 | | - model_name="o3", |
242 | | - max_total_tokens=200_000, |
243 | | - max_input_tokens=200_000, |
244 | | - max_new_tokens=100_000, |
245 | | - temperature=1, |
246 | | - vision_support=False, |
247 | | - reasoning_effort="high", |
248 | | - ), |
249 | | - "azure/o3-mini-2025-01-31": AzureModelArgs( |
250 | | - model_name="o3-mini", |
251 | | - max_total_tokens=200_000, |
252 | | - max_input_tokens=200_000, |
253 | | - max_new_tokens=100_000, |
254 | | - temperature=1, |
255 | | - vision_support=False, |
256 | | - ), |
257 | | - "azure/o3-mini-high-2025-01-31": AzureModelArgs( |
258 | | - model_name="o3-mini", |
259 | | - max_total_tokens=200_000, |
260 | | - max_input_tokens=200_000, |
261 | | - max_new_tokens=100_000, |
262 | | - temperature=1, |
263 | | - vision_support=False, |
264 | | - reasoning_effort="high", |
265 | | - ), |
266 | 204 | # ---------------- Anthropic ----------------# |
267 | 205 | "anthropic/claude-3-7-sonnet-20250219": AnthropicModelArgs( |
268 | 206 | model_name="claude-3-7-sonnet-20250219", |
|
0 commit comments