Files
health-service/agent/health.py
2026-08-31 15:22:00 +08:00

10 lines
184 B
Python

from langchain.agents import create_agent
from agent.model import model
from agent.prompt import tip_prompt
tip_agent = create_agent(
model=model,
system_prompt=tip_prompt
)