feat:初始化工程

This commit is contained in:
2026-07-27 20:00:57 +08:00
commit 3ebb249516
16 changed files with 414 additions and 0 deletions

9
agent/study.py Normal file
View File

@@ -0,0 +1,9 @@
from langchain.agents import create_agent
from agent.model import model
from agent.prompt import study_prompt
study_agent = create_agent(
model=model,
system_prompt=study_prompt
)