bringing TaskOutput.result back to avoind breakign change

This commit is contained in:
João Moura
2024-02-23 15:23:58 -03:00
parent 464dfc4e67
commit 093a9c8174
3 changed files with 6 additions and 3 deletions

View File

@@ -157,7 +157,7 @@ def callback_function(output: TaskOutput):
print(f"""
Task completed!
Task: {output.description}
Output: {output.result}
Output: {output.raw_ouput}
""")
research_task = Task(
@@ -198,7 +198,7 @@ result = crew.kickoff()
print(f"""
Task completed!
Task: {task1.output.description}
Output: {task1.output.result}
Output: {task1.output.raw_ouput}
""")
```