mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-08 08:20:20 +08:00
* feat: implement enhance prompt * add unit test * fix prompt * fix: fix eslint and compiling issues * feat: add border-beam animation * fix: fix importing issues --------- Co-authored-by: Henry Li <henry1943@163.com>
21 lines
519 B
Python
21 lines
519 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",
|
|
"ppt_composer": "basic",
|
|
"prose_writer": "basic",
|
|
"prompt_enhancer": "basic",
|
|
}
|