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.
swarms/playground/agents/basic_agent_with_azure_open...

15 lines
292 B

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")