Spaces:
Running
Running
Update crew.py
Browse files
crew.py
CHANGED
@@ -6,7 +6,7 @@ from tasks import get_researcher_task, get_author_task
|
|
6 |
|
7 |
def get_crew(model):
|
8 |
return Crew(
|
9 |
-
agents=[get_researcher_agent(), get_author_agent()],
|
10 |
tasks=[get_researcher_task(), get_author_task()],
|
11 |
manager_llm=ChatOpenAI(model=model, temperature=0.7),
|
12 |
process=Process.sequential,
|
|
|
6 |
|
7 |
def get_crew(model):
|
8 |
return Crew(
|
9 |
+
agents=[get_researcher_agent(model), get_author_agent(model)],
|
10 |
tasks=[get_researcher_task(), get_author_task()],
|
11 |
manager_llm=ChatOpenAI(model=model, temperature=0.7),
|
12 |
process=Process.sequential,
|