Skip to content

Commit 7a7783d

Browse files
remove deployment name from azure model args
1 parent e1ce602 commit 7a7783d

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
@@ -210,31 +210,27 @@
210210
### Azure
211211
"azure/gpt-4o-mini": AzureModelArgs(
212212
model_name="gpt-4o-mini",
213-
# deployment_name="gpt-4o-mini-2024-07-18",
214213
max_total_tokens=128_000,
215214
max_input_tokens=128_000,
216215
max_new_tokens=16_384,
217216
vision_support=True,
218217
),
219218
"azure/gpt-4o": AzureModelArgs(
220219
model_name="gpt-4o",
221-
# deployment_name="gpt-4o-mini-2024-07-18",
222220
max_total_tokens=128_000,
223221
max_input_tokens=128_000,
224222
max_new_tokens=16_384,
225223
vision_support=True,
226224
),
227225
"azure/gpt-4.1": AzureModelArgs(
228226
model_name="gpt-4.1",
229-
# deployment_name="gpt-4.1",
230227
max_total_tokens=128_000,
231228
max_input_tokens=128_000,
232229
max_new_tokens=16_384,
233230
vision_support=True,
234231
),
235232
"azure/gpt-4.1-mini": AzureModelArgs(
236233
model_name="gpt-4.1-mini",
237-
# deployment_name="gpt-4.1-mini",
238234
max_total_tokens=128_000,
239235
max_input_tokens=128_000,
240236
max_new_tokens=16_384,

0 commit comments

Comments
 (0)