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
292 B
15 lines
292 B
11 months ago
|
from swarms import Agent, AzureOpenAI
|
||
|
|
||
|
## Initialize the workflow
|
||
|
agent = Agent(
|
||
|
llm=AzureOpenAI(),
|
||
|
max_loops="auto",
|
||
|
autosave=True,
|
||
|
dashboard=False,
|
||
|
streaming_on=True,
|
||
|
verbose=True,
|
||
|
)
|
||
|
|
||
|
# Run the workflow on a task
|
||
|
agent("Understand the risk profile of this account")
|