You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
657 B
27 lines
657 B
11 months ago
|
import os
|
||
|
from dotenv import load_dotenv
|
||
|
from swarms import OpenAIChat, Task, RecursiveWorkflow, Agent
|
||
|
|
||
|
# Load environment variables from .env file
|
||
|
load_dotenv()
|
||
|
|
||
|
# Load environment variables
|
||
|
llm = OpenAIChat(openai_api_key=os.getenv("OPENAI_API_KEY"))
|
||
|
agent = Agent(llm=llm, max_loops=1)
|
||
|
|
||
|
# Create a workflow
|
||
|
workflow = RecursiveWorkflow(stop_token="<DONE>")
|
||
|
|
||
|
# Create tasks
|
||
|
task1 = Task(agent, "What's the weather in miami")
|
||
|
task2 = Task(agent, "What's the weather in new york")
|
||
|
task3 = Task(agent, "What's the weather in london")
|
||
|
|
||
|
# Add tasks to the workflow
|
||
|
workflow.add(task1)
|
||
|
workflow.add(task2)
|
||
|
workflow.add(task3)
|
||
|
|
||
|
# Run the workflow
|
||
|
workflow.run()
|