Files
sweet-hut-agent/agent/bill.py
2026-07-02 22:17:33 +08:00

12 lines
246 B
Python

from langchain.agents import create_agent
from agent.model import model
from prompt.bill import bill_prompt
from tools.bill import bill_search
bill_agent = create_agent(
model=model,
tools=[bill_search],
system_prompt=bill_prompt
)