From 8430c2f9afc34de95fba2529a69a43094c0f6cf1 Mon Sep 17 00:00:00 2001 From: Steven Edwards Date: Fri, 10 May 2024 10:55:10 -0400 Subject: [PATCH] Task needs an expected_output field in docs. (#568) * Task needs an expected_output field in docs.. * Add missing comma. --- docs/how-to/LLM-Connections.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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],