diff --git a/docs/how-to/LLM-Connections.md b/docs/how-to/LLM-Connections.md index 95850294f..446530cd4 100644 --- a/docs/how-to/LLM-Connections.md +++ b/docs/how-to/LLM-Connections.md @@ -103,7 +103,8 @@ general_agent = Agent(role = "Math Professor", verbose = True, llm = llm) task = Task (description="""what is 3 + 5""", - agent = general_agent) + agent = general_agent, + expected_output="A numerical answer.") crew = Crew( agents=[general_agent],