Fix logging types to bool (#1051)

* fixes pydantic validations hierarchical

* more tests

* logger logs everything or not

* verbose rm levels to bool

* updated readme verbose levels
This commit is contained in:
Lorenze Jay
2024-08-07 10:31:18 -07:00
committed by GitHub
parent 033b6f23e3
commit 8eea22c763
17 changed files with 15857 additions and 62 deletions

View File

@@ -126,7 +126,7 @@ task2 = Task(
crew = Crew(
agents=[researcher, writer],
tasks=[task1, task2],
verbose=2, # You can set it to 1 or 2 to different logging levels
verbose=True,
process = Process.sequential
)