feat: support Podcast generation

This commit is contained in:
Li Xin
2025-04-19 17:37:40 +08:00
parent 6556056df2
commit be5f823395
9 changed files with 255 additions and 6 deletions

View File

@@ -8,9 +8,10 @@ LLMType = Literal["basic", "reasoning", "vision"]
# Define agent-LLM mapping
AGENT_LLM_MAP: dict[str, LLMType] = {
"coordinator": "basic", # 协调默认使用basic llm
"planner": "basic", # 计划默认使用basic llm
"researcher": "basic", # 简单搜索任务使用basic llm
"coder": "basic", # 编程任务使用basic llm
"reporter": "basic", # 报告使用basic llm
"coordinator": "basic",
"planner": "basic",
"researcher": "basic",
"coder": "basic",
"reporter": "basic",
"podcast_script_writer": "basic",
}