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.
15 lines
287 B
15 lines
287 B
5 months ago
|
from swarms import Agent, OpenAIChat
|
||
|
|
||
|
## Initialize the workflow
|
||
|
agent = Agent(
|
||
|
llm=OpenAIChat(),
|
||
|
max_loops=1,
|
||
|
autosave=True,
|
||
|
dashboard=False,
|
||
|
streaming_on=True,
|
||
|
verbose=True,
|
||
|
)
|
||
|
|
||
|
# Run the workflow on a task
|
||
|
agent("Find a chick fil a equivalent in hayes valley")
|