Adding support to export tasks as json, pydantic objects, and save as file

This commit is contained in:
João Moura
2024-02-19 22:46:34 -03:00
parent 3cfc8dd4e0
commit a649eb8555
3 changed files with 70 additions and 9 deletions

View File

@@ -41,7 +41,6 @@ class Crew(BaseModel):
full_output: Whether the crew should return the full output with all tasks outputs or just the final output.
step_callback: Callback to be executed after each step for every agents execution.
share_crew: Whether you want to share the complete crew infromation and execution with crewAI to make the library better, and allow us to train models.
_cache_handler: Handles caching for the crew's operations.
"""
__hash__ = object.__hash__ # type: ignore