Skip to main content
Twilio Agent Connect for Microsoft Logo

Twilio Agent Connect for Microsoft

Azure integrations for Twilio Agent Connect — connect Microsoft Foundry agents to Twilio's channels, memory, and context.

Python SDK License CI Status Getting Started

DocumentationPython SDKExamplesDeployment

Ships Microsoft Agent Framework and Azure AI Voice Live connectors for Twilio Agent Connect (TAC), plus production Azure deployments for each.


Features

Installation

With Agent Framework

pip install twilio-agent-connect-microsoft[agent-framework,server]

With Voice Live

pip install twilio-agent-connect-microsoft[voice-live,server]

On Hosted Agents in Foundry Agent Service

pip install twilio-agent-connect-microsoft[hosted-agents]

The hosted-agents extra provides the Hosted Agents runtime (TACHostedAgentsApp) and includes tac[server], so a separate server extra isn't needed. TACHostedAgentsApp hosts any TAC connector, so add the extra for the connector you want — e.g. [hosted-agents,agent-framework] (as the deployment example does) or [hosted-agents,voice-live]. Or pair it with TAC core to host an agent built on any other SDK.

Development

git clone https://github.com/twilio/twilio-agent-connect-microsoft.git
cd twilio-agent-connect-microsoft
uv sync --all-extras

Prerequisites

Before running any examples, you need to create and configure the required Twilio services (Conversation Configuration, phone number, etc.). Follow the TAC Quickstart guide to set these up.

Configuration

TAC Microsoft requires TAC environment variables. See TAC Configuration for details.

Required Environment Variables

# Twilio Agent Connect (required for all examples)
TWILIO_CONVERSATION_CONFIGURATION_ID=conv_configuration_xxxxxxxxxxxxxxxxxx
TWILIO_ACCOUNT_SID=ACxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
TWILIO_AUTH_TOKEN=your_auth_token
TWILIO_API_KEY=SKxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
TWILIO_API_SECRET=your_api_key_secret
TWILIO_PHONE_NUMBER=+1234567890
# Optional — set to auto-enable the RCS / WhatsApp channels on the connector
# TWILIO_RCS_SENDER_ID=rcs_sender_xxxxxxxxxxxxxxxxxx
# TWILIO_WHATSAPP_NUMBER=+1234567890

# Server (required for voice)
TWILIO_VOICE_PUBLIC_DOMAIN=your-domain.ngrok.io

# Azure OpenAI — Agent Framework basic example (API key auth)
# Endpoint is the resource base URL only — no /openai/v1 suffix.
AZURE_OPENAI_ENDPOINT=https://your-resource.openai.azure.com/
AZURE_AI_API_KEY=your_azure_openai_api_key
AZURE_AI_DEPLOYMENT_NAME=gpt-4o

# Agent Framework advanced example uses the same AZURE_OPENAI_ENDPOINT as basic,
# but authenticates via `DefaultAzureCredential` (run `az login` first) instead of an API key.

# Voice Live API — voice_live example (hostname only, no https:// prefix)
# AZURE_VOICE_LIVE_ENDPOINT=your-resource.services.ai.azure.com
# AZURE_VOICE_LIVE_API_KEY=your_voice_live_api_key
# AZURE_VOICE_LIVE_MODEL=gpt-realtime

See getting_started/examples/.env.example for the full list including optional features (Cosmos DB, knowledge base, conversation intelligence). Copy it to getting_started/examples/.env and fill in your values — all examples load from that shared file.

Quick Start

Everything imports from tac_microsoft — no need to import from the underlying tac package:

from tac_microsoft import (
    TAC, TACConfig, TACFastAPIServer,
    AgentFrameworkConnector, ConversationSession,
    FileAgentSessionStore,
)
from tac_microsoft.agent_framework_tools import create_memory_tool

Examples

Full examples available in getting_started/examples/:

  • agent_framework/basic.py - Minimal Agent Framework setup (~30 lines)
  • agent_framework/advanced.py - Full feature set (channel-aware prompts, tools, hooks, session persistence)
  • voice_live/basic.py - Voice Live API with tool calling

AgentSessionStore

The AgentSessionStore protocol defines how Agent Framework sessions are persisted between requests, enabling conversation continuity across SMS messages and horizontal scaling for voice.

Three implementations are included:

  • InMemoryAgentSessionStore — default, suitable for single-instance deployments
  • FileAgentSessionStore — persists sessions as JSON files on disk (single-instance, local dev). Also the recommended store for Hosted Agents in Foundry Agent Service, where APIM pins each conversation to one sandbox via agent_session_id affinity and $HOME survives idle eviction — giving durable continuity without Cosmos DB
  • CosmosDBAgentSessionStore — persists sessions in Azure Cosmos DB for NoSQL (horizontally scaled production). Requires the cosmos extra: pip install twilio-agent-connect-microsoft[cosmos]

Implement the protocol to use any other backing store (Redis, DynamoDB, Postgres, etc.).

Development

Setup

# Clone repository
git clone https://github.com/twilio/twilio-agent-connect-microsoft.git
cd twilio-agent-connect-microsoft

# Install dependencies
uv sync --all-extras

Getting Started

See getting_started/README.md for the full setup and deployment guide.

Dependencies

TAC Microsoft depends on:

  • twilio-agent-connect - Core Twilio Agent Connect framework (installed from PyPI)
    • Requires twilio-agent-connect[server] extra for TACFastAPIServer support
  • agent-framework (optional) - Microsoft Agent Framework
  • websockets (optional) - For Voice Live connector
  • azure-cosmos (optional) - For CosmosDB session store

Documentation

  • API Reference - Full API documentation generated from the source
  • CLAUDE.md - Architecture, development guide, and API reference
  • Getting Started Guide - Setup instructions, environment variables, and troubleshooting

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

MIT License - see LICENSE file for details.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

twilio_agent_connect_microsoft-2.0.0.tar.gz (38.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

File details

Details for the file twilio_agent_connect_microsoft-2.0.0.tar.gz.

File metadata

File hashes

Hashes for twilio_agent_connect_microsoft-2.0.0.tar.gz
Algorithm Hash digest
SHA256 eb46520d2f1c2edc26580bc64da9232f61d523dc678a2d3510f3047699696179
MD5 059de9f571fe92194cb2a6dbd0939a55
BLAKE2b-256 fb5d2ccfee4357f0bd8883b07d3cca5471c5cd2764e9942ff591864f50a8bc76

See more details on using hashes here.

Provenance

The following attestation bundles were made for twilio_agent_connect_microsoft-2.0.0.tar.gz:

Publisher: deploy.yml on twilio/twilio-agent-connect-microsoft

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file twilio_agent_connect_microsoft-2.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for twilio_agent_connect_microsoft-2.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 15764ba18a0bddcaa64c7708110fcbaf8b7670c20f542867ca83ae5f814f5ce4
MD5 56f1405faf387108ca22f5f0e7f6cf92
BLAKE2b-256 d118f7a2fabadc4c07f1ff770ba574fe30c6a3b1b06f055dec0e4c43a1dfd276

See more details on using hashes here.

Provenance

The following attestation bundles were made for twilio_agent_connect_microsoft-2.0.0-py3-none-any.whl:

Publisher: deploy.yml on twilio/twilio-agent-connect-microsoft

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page