feat: 增加报告智能体

This commit is contained in:
2026-09-03 17:25:06 +08:00
parent cc39d7b19d
commit 38310f7b1c
6 changed files with 104 additions and 88 deletions

View File

@@ -1,7 +1,7 @@
from langchain.agents import create_agent
from agent.model import model
from agent.prompt import tip_prompt, recipe_prompt
from agent.prompt import tip_prompt, recipe_prompt, report_prompt
tip_agent = create_agent(
model=model,
@@ -12,3 +12,9 @@ recipe_agent = create_agent(
model=model,
system_prompt=recipe_prompt
)
report_agent = create_agent(
model=model,
system_prompt=report_prompt
)