Skip to content

Commit d3a52d9

Browse files
remove deployment name from azure model args
1 parent 4052cb0 commit d3a52d9

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/agentlab/llm/llm_configs.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -224,31 +224,27 @@
224224
### Azure
225225
"azure/gpt-4o-mini": AzureModelArgs(
226226
model_name="gpt-4o-mini",
227-
# deployment_name="gpt-4o-mini-2024-07-18",
228227
max_total_tokens=128_000,
229228
max_input_tokens=128_000,
230229
max_new_tokens=16_384,
231230
vision_support=True,
232231
),
233232
"azure/gpt-4o": AzureModelArgs(
234233
model_name="gpt-4o",
235-
# deployment_name="gpt-4o-mini-2024-07-18",
236234
max_total_tokens=128_000,
237235
max_input_tokens=128_000,
238236
max_new_tokens=16_384,
239237
vision_support=True,
240238
),
241239
"azure/gpt-4.1": AzureModelArgs(
242240
model_name="gpt-4.1",
243-
# deployment_name="gpt-4.1",
244241
max_total_tokens=128_000,
245242
max_input_tokens=128_000,
246243
max_new_tokens=16_384,
247244
vision_support=True,
248245
),
249246
"azure/gpt-4.1-mini": AzureModelArgs(
250247
model_name="gpt-4.1-mini",
251-
# deployment_name="gpt-4.1-mini",
252248
max_total_tokens=128_000,
253249
max_input_tokens=128_000,
254250
max_new_tokens=16_384,

0 commit comments

Comments
 (0)