chat-ui-with-agent-examples / routes.chat.json
ccm's picture
Update routes.chat.json
ab05f76 verified
[
{
"name": "casual_conversation",
"description": "General purpose dialog, fast and cheap",
"primary_model": "Qwen/Qwen3-1.7B-nothink"
},
{
"name": "reasoning_conversation",
"description": "General purpose reasoning model for more detailed discussions",
"primary_model": "Qwen/Qwen3-1.7B"
},
{
"name": "mathematical_questions",
"primary_model": "code-writing-agent-without-tools",
"description": "An agent that can use Python programming to answer questions"
},
{
"name": "mathematical_questions_with_search",
"primary_model": "code-writing-agent-with-search",
"description": "An agent that can use Python programming and search to answer questions"
},
{
"name": "beam_design",
"primary_model": "custom-agent-with-beam-design-tools",
"description": "An agent that specializes in designing beams using mechanical principles"
},
{
"name": "self_reflection",
"primary_model": "generator-with-managed-critic",
"description": "An agent that uses a self-reflection pattern to iteratively refine outputs."
}
]