We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 231175c commit 875ffd7Copy full SHA for 875ffd7
src/agentlab/llm/llm_configs.py
@@ -95,6 +95,13 @@
95
max_new_tokens=64_000,
96
temperature=1e-1,
97
),
98
+ "openai/gpt-4.1-nano-2025-04-14": OpenAIModelArgs(
99
+ model_name="gpt-4.1-nano-2025-04-14",
100
+ max_total_tokens=128_000,
101
+ max_input_tokens=128_000,
102
+ max_new_tokens=16_384,
103
+ vision_support=True,
104
+ ),
105
"openai/gpt-5-nano-2025-08-07": OpenAIModelArgs(
106
model_name="gpt-5-nano-2025-08-07",
107
max_total_tokens=400_000,
@@ -119,6 +126,7 @@
119
126
temperature=1, # temperature param not supported by gpt-5
120
127
vision_support=True,
121
128
129
+ # ---------------- Azure ----------------#
122
130
"azure/gpt-35-turbo/gpt-35-turbo": AzureModelArgs(
123
131
model_name="gpt-35-turbo",
124
132
max_total_tokens=8_192,
0 commit comments