Skip to content

Commit 033e21d

Browse files
remove deployment name from azure model args
1 parent a89a37d commit 033e21d

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
@@ -245,31 +245,27 @@
245245
### Azure
246246
"azure/gpt-4o-mini": AzureModelArgs(
247247
model_name="gpt-4o-mini",
248-
# deployment_name="gpt-4o-mini-2024-07-18",
249248
max_total_tokens=128_000,
250249
max_input_tokens=128_000,
251250
max_new_tokens=16_384,
252251
vision_support=True,
253252
),
254253
"azure/gpt-4o": AzureModelArgs(
255254
model_name="gpt-4o",
256-
# deployment_name="gpt-4o-mini-2024-07-18",
257255
max_total_tokens=128_000,
258256
max_input_tokens=128_000,
259257
max_new_tokens=16_384,
260258
vision_support=True,
261259
),
262260
"azure/gpt-4.1": AzureModelArgs(
263261
model_name="gpt-4.1",
264-
# deployment_name="gpt-4.1",
265262
max_total_tokens=128_000,
266263
max_input_tokens=128_000,
267264
max_new_tokens=16_384,
268265
vision_support=True,
269266
),
270267
"azure/gpt-4.1-mini": AzureModelArgs(
271268
model_name="gpt-4.1-mini",
272-
# deployment_name="gpt-4.1-mini",
273269
max_total_tokens=128_000,
274270
max_input_tokens=128_000,
275271
max_new_tokens=16_384,

0 commit comments

Comments
 (0)