Files
study-agent-service/agent/study.py
2026-07-27 20:00:57 +08:00

10 lines
190 B
Python

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
)