From 42fd4d9af8e9c6b30d782de6597d3fc47d8de76f Mon Sep 17 00:00:00 2001 From: caidebin Date: Fri, 28 Mar 2025 17:58:35 +0800 Subject: [PATCH 1/3] Update agents.py --- src/config/agents.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/agents.py b/src/config/agents.py index a228e00..1b42395 100644 --- a/src/config/agents.py +++ b/src/config/agents.py @@ -6,7 +6,7 @@ # Define agent-LLM mapping AGENT_LLM_MAP: dict[str, LLMType] = { "coordinator": "basic", # 协调默认使用basic llm - "planner": "reasoning", # 计划默认使用basic llm + "planner": "reasoning", # reasoning llm "supervisor": "basic", # 决策使用basic llm "researcher": "basic", # 简单搜索任务使用basic llm "coder": "basic", # 编程任务使用basic llm From 0a2bbf31bc7722b80eef15cdddfd140c8545256c Mon Sep 17 00:00:00 2001 From: caidebin Date: Fri, 28 Mar 2025 18:01:58 +0800 Subject: [PATCH 2/3] Update agents.py --- src/config/agents.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/agents.py b/src/config/agents.py index 1b42395..a228e00 100644 --- a/src/config/agents.py +++ b/src/config/agents.py @@ -6,7 +6,7 @@ # Define agent-LLM mapping AGENT_LLM_MAP: dict[str, LLMType] = { "coordinator": "basic", # 协调默认使用basic llm - "planner": "reasoning", # reasoning llm + "planner": "reasoning", # 计划默认使用basic llm "supervisor": "basic", # 决策使用basic llm "researcher": "basic", # 简单搜索任务使用basic llm "coder": "basic", # 编程任务使用basic llm From 43b48358d530f4661987cb15918e1b134900e409 Mon Sep 17 00:00:00 2001 From: caidebin Date: Fri, 28 Mar 2025 18:03:43 +0800 Subject: [PATCH 3/3] Update agents.py --- src/config/agents.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/agents.py b/src/config/agents.py index a228e00..6fea666 100644 --- a/src/config/agents.py +++ b/src/config/agents.py @@ -6,7 +6,7 @@ # Define agent-LLM mapping AGENT_LLM_MAP: dict[str, LLMType] = { "coordinator": "basic", # 协调默认使用basic llm - "planner": "reasoning", # 计划默认使用basic llm + "planner": "reasoning", # 计划默认使用reasoning llm "supervisor": "basic", # 决策使用basic llm "researcher": "basic", # 简单搜索任务使用basic llm "coder": "basic", # 编程任务使用basic llm