12 lines
246 B
Python
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
|
|
)
|