Task needs an expected_output field in docs. (#568)

* Task needs an expected_output field in docs..

* Add missing comma.
This commit is contained in:
Steven Edwards
2024-05-10 10:55:10 -04:00
committed by GitHub
parent 7cc6bccdec
commit 8430c2f9af

View File

@@ -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],