21 lines
377 B
Python
21 lines
377 B
Python
from langchain.agents import create_agent
|
|
|
|
from agent.model import model
|
|
from agent.prompt import tip_prompt, recipe_prompt, report_prompt
|
|
|
|
tip_agent = create_agent(
|
|
model=model,
|
|
system_prompt=tip_prompt
|
|
)
|
|
|
|
recipe_agent = create_agent(
|
|
model=model,
|
|
system_prompt=recipe_prompt
|
|
)
|
|
|
|
report_agent = create_agent(
|
|
model=model,
|
|
system_prompt=report_prompt
|
|
)
|
|
|