File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
src/agentlab/agents/generic_agent_hinter Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 1313 AGENT_CLAUDE_SONNET_35 ,
1414 AGENT_CLAUDE_SONNET_35_VISION ,
1515 AGENT_CUSTOM ,
16+ AGENT_GPT5_MINI ,
17+ AGENT_GPT5_NANO ,
1618 AGENT_LLAMA3_70B ,
1719 AGENT_LLAMA4_17B_INSTRUCT ,
1820 AGENT_LLAMA31_70B ,
2628 AGENT_o3_MINI ,
2729 FLAGS_GPT_4o ,
2830 GenericAgentArgs ,
29- AGENT_GPT5_MINI ,
3031)
31-
3232from .generic_agent import GenericAgent , GenericAgentArgs
3333
3434__all__ = [
5050 "AGENT_4o_MINI_VISION" ,
5151 "AGENT_CLAUDE_SONNET_35_VISION" ,
5252 "AGENT_GPT5_MINI" ,
53+ "AGENT_GPT5_NANO" ,
5354]
Original file line number Diff line number Diff line change 365365 chat_model_args = CHAT_MODEL_ARGS_DICT ["openai/gpt-5-mini-2025-08-07" ],
366366 flags = GPT5_MINI_FLAGS ,
367367)
368+ AGENT_GPT5_NANO = GenericAgentArgs (
369+ chat_model_args = CHAT_MODEL_ARGS_DICT ["openai/gpt-5-nano-2025-08-07" ],
370+ flags = GPT5_MINI_FLAGS ,
371+ )
368372
369373AGENT_GPT5 = GenericAgentArgs (
370374 chat_model_args = CHAT_MODEL_ARGS_DICT ["openai/gpt-5-2025-08-07" ],
You can’t perform that action at this time.
0 commit comments