File size: 557 Bytes
93e5d93
 
 
add33ab
 
074a596
619fc35
e8f9166
add33ab
dad52e7
e57c533
add33ab
dad52e7
e57c533
 
 
a5f9d4e
e57c533
e8f9166
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from crewai import Crew, Process
from langchain_openai import ChatOpenAI

from agents import get_researcher_agent, get_author_agent
from tasks import get_researcher_task, get_author_task

def get_crew():
    return Crew(
        agents=[get_researcher_agent(), 
                get_author_agent()],
        
        tasks=[get_researcher_task(), 
               get_author_task()],
        
        manager_llm=ChatOpenAI(model="gpt-3.5-turbo", 
                               temperature=0.7),
        process=Process.sequential,
        verbose=True
    )