Files
deer-flow/src/config/agents.py
2025-04-19 17:37:40 +08:00

18 lines
429 B
Python

# Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
# SPDX-License-Identifier: MIT
from typing import Literal
# Define available LLM types
LLMType = Literal["basic", "reasoning", "vision"]
# Define agent-LLM mapping
AGENT_LLM_MAP: dict[str, LLMType] = {
"coordinator": "basic",
"planner": "basic",
"researcher": "basic",
"coder": "basic",
"reporter": "basic",
"podcast_script_writer": "basic",
}