Spaces:
Sleeping
Sleeping
File size: 365 Bytes
93e5d93 6172832 074a596 15e78da e8f9166 6172832 e8f9166 |
1 2 3 4 5 6 7 8 9 10 11 12 |
from crewai import Crew, Process
from langchain_openai import ChatOpenAI
from agents import get_planner, get_writer, get_editor
from tasks import get_plan, get_write, get_edit
def get_financial_trading_crew():
return Crew(
agents=[get_planner(), get_writer(), get_editor()],
tasks=[get_plan(), get_write(), get_edit()],
verbose=2
) |