Skip to content

Files

This branch is up to date with microsoft/semantic-kernel:main.

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Feb 7, 2025
Mar 27, 2025
Mar 25, 2025
Mar 24, 2025
Mar 24, 2025
Mar 24, 2025
Mar 24, 2025
Mar 24, 2025
Mar 24, 2025

Azure AI Agents

The following getting started samples show how to use Azure AI Agents with Semantic Kernel.

To set up the required resources, follow the "Quickstart: Create a new agent" guide here.

You will need to install the optional Semantic Kernel azure dependencies if you haven't already via:

pip install semantic-kernel[azure]

Before running an Azure AI Agent, modify your .env file to include:

AZURE_AI_AGENT_PROJECT_CONNECTION_STRING = "<example-connection-string>"
AZURE_AI_AGENT_MODEL_DEPLOYMENT_NAME = "<example-model-deployment-name>"

or

AZURE_AI_AGENT_MODEL_DEPLOYMENT_NAME = "<example-model-deployment-name>"
AZURE_AI_AGENT_ENDPOINT = "<example-endpoint>"
AZURE_AI_AGENT_SUBSCRIPTION_ID = "<example-subscription-id>"
AZURE_AI_AGENT_RESOURCE_GROUP_NAME = "<example-resource-group-name>"
AZURE_AI_AGENT_PROJECT_NAME = "<example-project-name>"

The project connection string is of the following format: <HostName>;<AzureSubscriptionId>;<ResourceGroup>;<ProjectName>. See here for information on obtaining the values to populate the connection string.

The .env should be placed in the root directory.

Configuring the AI Project Client

Ensure that your Azure AI Agent resources are configured with at least a Basic or Standard SKU.

To begin, create the project client as follows:

async with DefaultAzureCredential() as credential:
    client = await AzureAIAgent.create_client(credential=credential)

    async with client:
        # Your operational code here

Required Imports

The required imports for the Azure AI Agent include async libraries:

from azure.identity.aio import DefaultAzureCredential

Initializing the Agent

You can pass in a connection string (shown above) to create the client:

async with (
    DefaultAzureCredential() as creds,
    AzureAIAgent.create_client(
        credential=creds,
        conn_str=ai_agent_settings.project_connection_string.get_secret_value(),
    ) as client,
):
    # operational logic

Creating an Agent Definition

Once the client is initialized, you can define the agent:

# Create agent definition
agent_definition = await client.agents.create_agent(
    model=ai_agent_settings.model_deployment_name,
    name=AGENT_NAME,
    instructions=AGENT_INSTRUCTIONS,
)

Then, instantiate the AzureAIAgent with the client and agent_definition:

# Create the AzureAI Agent
agent = AzureAIAgent(
    client=client,
    definition=agent_definition,
)

Now, you can create a thread, add chat messages to the agent, and invoke it with given inputs and optional parameters.

Reusing an Agent Definition

In certain scenarios, you may prefer to reuse an existing agent definition rather than creating a new one. This can be done by calling await client.agents.get_agent(...) instead of await client.agents.create_agent(...).

For a practical example, refer to the step7_azure_ai_agent_retrieval sample.

Requests and Rate Limits

Managing API Request Frequency

Your default request limits may be low, affecting how often you can poll the status of a run. You have two options:

  1. Adjust the polling_options of the AzureAIAgent

By default, the polling interval is 250 ms. You can slow it down to 1 second (or another preferred value) to reduce the number of API calls:

# Required imports
from datetime import timedelta
from semantic_kernel.agents.run_polling_options import RunPollingOptions

# Configure the polling options as part of the `AzureAIAgent`
agent = AzureAIAgent(
    client=client,
    definition=agent_definition,
    polling_options=RunPollingOptions(run_polling_interval=timedelta(seconds=1)),
)
  1. Increase Rate Limits in Azure AI Foundry

You can also adjust your deployment's Rate Limit (Tokens per minute), which impacts the Rate Limit (Requests per minute). This can be configured in Azure AI Foundry under your project's deployment settings for the "Connected Azure OpenAI Service Resource."