| 12345678910111213141516171819202122232425262728293031323334 |
- """
- 项目配置
- """
- from agent.core.runner import RunConfig
- from agent.tools.builtin.knowledge import KnowledgeConfig
- RUN_CONFIG = RunConfig(
- model="qwen3.5-plus",
- temperature=0.3,
- max_iterations=500,
- extra_llm_params={"extra_body": {"enable_thinking": True}},
- agent_type="analyst",
- name="内容树需求归纳",
- knowledge=KnowledgeConfig(
- enable_extraction=False,
- enable_completion_extraction=False,
- enable_injection=False,
- owner="sunlit.howard@gmail.com",
- default_tags={"project": "gen_query_from_content_tree"},
- default_scopes=["org:cybertogether"],
- # default_search_types=["strategy"],
- default_search_owner="sunlit.howard@gmail.com",
- ),
- )
- OUTPUT_DIR = "examples/content_tree_analyst/output"
- SKILLS_DIR = "./skills"
- TRACE_STORE_PATH = ".trace"
- DEBUG = True
- LOG_LEVEL = "INFO"
- LOG_FILE = None
|