fix all verbose

This commit is contained in:
Lorenze Jay
2024-08-07 12:15:56 -07:00
parent 0584e29fb4
commit 75bcb52be5
7 changed files with 7 additions and 7 deletions

View File

@@ -54,5 +54,5 @@ class ResearchCrew():
agents=self.agents, # Automatically created by the @agent decorator
tasks=self.tasks, # Automatically created by the @task decorator
process=Process.sequential,
verbose=2,
verbose=True,
)

View File

@@ -47,5 +47,5 @@ class WriteLinkedInCrew():
agents=self.agents, # Automatically created by the @agent decorator
tasks=self.tasks, # Automatically created by the @task decorator
process=Process.sequential,
verbose=2,
verbose=True,
)

View File

@@ -32,5 +32,5 @@ class WriteXCrew:
agents=self.agents, # Automatically created by the @agent decorator
tasks=self.tasks, # Automatically created by the @task decorator
process=Process.sequential,
verbose=2,
verbose=True,
)

View File

@@ -6,7 +6,7 @@ authors = ["Your Name <you@example.com>"]
[tool.poetry.dependencies]
python = ">=3.10,<=3.13"
crewai = { extras = ["tools"], version = "^0.41.1" }
crewai = { extras = ["tools"], version = "^0.46.0" }
asyncio = "*"
[tool.poetry.scripts]

View File

@@ -36,5 +36,5 @@ class ClassifierCrew:
agents=self.agents, # Automatically created by the @agent decorator
tasks=self.tasks, # Automatically created by the @task decorator
process=Process.sequential,
verbose=2,
verbose=True,
)

View File

@@ -32,5 +32,5 @@ class NormalCrew:
agents=self.agents, # Automatically created by the @agent decorator
tasks=self.tasks, # Automatically created by the @task decorator
process=Process.sequential,
verbose=2,
verbose=True,
)

View File

@@ -32,5 +32,5 @@ class UrgentCrew:
agents=self.agents, # Automatically created by the @agent decorator
tasks=self.tasks, # Automatically created by the @task decorator
process=Process.sequential,
verbose=2,
verbose=True,
)