system_prompt="Generate a simple, direct, and reliable summary of the input task alongside the highlights",
llm=llm,
max_loops=1,
)
# Point out that if their are details that can be added
# What do you mean? What lights do you have turned on.
agent2=Agent(
agent_name="Evaluator",
system_prompt="Summarize and evaluate the summary and the users demand, always be interested in learning more about the situation with extreme precision.",
llm=llm,
max_loops=1,
list_base_models=[EvaluatorOuputSchema],
)
# research_agent = Agent(
# agent_name="Research Agent",
# system_prompt="Summarize and evaluate the summary and the users demand, always be interested in learning more about the situation with extreme precision.",
# llm=llm,
# max_loops=1,
# tool = [webbrowser]
# )
agent3=Agent(
agent_name="Summarizer Agent",
system_prompt="Summarize the entire history of the interaction",
llm=llm,
max_loops=1,
long_term_memory=memory,
)
# Task
task="Car Model: S-Class, Car Year: 2020, Car Mileage: 10000, all my service lights are on, what should i do?"