Skip to main content
In Deploy your first hosted agent, you deployed a sample. In this quickstart, you deploy your own Python agent code to Foundry Agent Service. Your code can use any agent framework - such as Microsoft Agent Framework, LangGraph, the GitHub Copilot SDK, or the OpenAI Agents SDK - or plain Python that calls a model directly.

Prerequisites

Before you begin, you need: Your project directory should contain at minimum:

Choose your framework

The hosting library you add in Step 1 handles the protocol - the HTTP server, health checks, and request and response schemas. It doesn’t depend on a specific agent framework, so your agent logic can use any Python packages you prefer. To use a framework, add its packages to requirements.txt next to the hosting library, then call the framework from the handler in main.py. The following table lists common choices and a sample for each. Each sample’s requirements.txt lists the exact package versions. For the full set of bring-your-own samples, see the samples folder.
Microsoft Agent Framework has a built-in hosting integration that uses its own package. To deploy a Microsoft Agent Framework agent, see Deploy your first hosted agent.

Start from a sample in Visual Studio Code

To start from a working framework template instead of your own code, use the sample gallery in the Microsoft Foundry Toolkit for Visual Studio Code:
  1. In the Visual Studio Code Activity Bar, select the Foundry Toolkit icon.
  2. Under Developer Tools > Agent Dev Tools, select Create Agent.
  3. Under Create in code with full control, select Use a sample.
  4. On Create Hosted Agent from Sample, use the filters to narrow the gallery:
    • For Framework, select Agent Framework, Bring Your Own, LangGraph, or Copilot SDK.
    • For Protocol Type, select Responses API or Invocations API.
  5. Select a sample, and then select Next.
  6. Enter an agent name, select your Foundry project, and then select Create.
The toolkit scaffolds the sample into a new workspace and sets up a one-click F5 debug experience. To install dependencies, test locally, and deploy from Visual Studio Code, follow the Visual Studio Code steps in Deploy your first hosted agent.

Choose your protocol

Select the tab that matches your agent’s interaction pattern. Responses manages conversation history and is OpenAI-compatible. Invocations gives you full control over request and response schemas.
Not sure which protocol to use? Start with Responses.

Step 1: Add the hosting library

Add the protocol library to your requirements.txt. The library handles the HTTP server, health checks, and protocol compliance, independent of the agent framework you use. If you use a framework, add its packages to the same file - see Choose your framework.

Step 2: Add the hosting wrapper

Create or update main.py with the hosting wrapper. The examples show the minimal pattern—replace the marked block with your existing agent logic.
These examples echo user input to demonstrate the hosting wrapper. Replace the marked block with your own agent logic - model calls, RAG, or a framework like LangGraph or the GitHub Copilot SDK. For complete examples, see the Python samples and C# samples.

Step 3: Initialize the project

Run azd ai agent init from your agent source directory:
The interactive flow prompts for:
  • Agent name: Customize the name or accept the default.
  • Foundry Project: Select Use an existing Foundry project or Create a new Foundry project.
  • Subscription: Select your Azure subscription.
  • Location: Select an Azure region.
When complete, you see: AI agent definition added to your azd project successfully!

Step 4: Provision Azure resources

This creates the required Azure resources, such as Application Insights.

Step 5: Test the agent locally

This command creates a virtual environment, installs dependencies, and launches your agent. It also opens the agent inspector in your browser so you can chat with the agent. You can also invoke from the CLI in a separate terminal:

Step 6: Deploy to Foundry Agent Service

When the command finishes, the output shows links to the agent playground and the agent endpoint:

Step 7: Invoke the deployed agent

You should see a response within a few seconds.

Clean up resources

azd down permanently deletes every resource in the resource group, including the Foundry project and hosted agent. If the resource group contains other resources, those are also deleted.

Troubleshooting

For the full permission and role-assignment matrix, see Hosted agent permissions reference.

What you learned

In this quickstart, you:
  • Added one hosting library to your existing agent code.
  • Initialized an azd project from your source directory.
  • Tested locally with azd ai agent run and azd ai agent invoke --local.
  • Deployed to Foundry Agent Service with azd deploy.

Next steps

Manage hosted agent lifecycle