Update app.py
Browse files
app.py
CHANGED
|
@@ -61,7 +61,7 @@ writer = Agent(
|
|
| 61 |
max_execution_time=120,
|
| 62 |
max_iter=50, # Optional
|
| 63 |
max_rpm=25, # Optional
|
| 64 |
-
allow_delegation=
|
| 65 |
llm=llm_zephyr_7b_beta
|
| 66 |
)
|
| 67 |
|
|
@@ -86,7 +86,7 @@ task2 = Task(
|
|
| 86 |
crew = Crew(
|
| 87 |
agents=[researcher, writer],
|
| 88 |
tasks=[task1, task2],
|
| 89 |
-
verbose=
|
| 90 |
)
|
| 91 |
|
| 92 |
# Get your crew to work!
|
|
|
|
| 61 |
max_execution_time=120,
|
| 62 |
max_iter=50, # Optional
|
| 63 |
max_rpm=25, # Optional
|
| 64 |
+
allow_delegation=False,
|
| 65 |
llm=llm_zephyr_7b_beta
|
| 66 |
)
|
| 67 |
|
|
|
|
| 86 |
crew = Crew(
|
| 87 |
agents=[researcher, writer],
|
| 88 |
tasks=[task1, task2],
|
| 89 |
+
verbose=1, # You can set it to 1 or 2 to different logging levels
|
| 90 |
)
|
| 91 |
|
| 92 |
# Get your crew to work!
|