Files
copilot-swe-agent[bot] 2a5186c8b4 Update integration test paths to match new durable directory structure
- Updated durabletask integration tests to use samples/durable/console_apps
- Updated azurefunctions integration tests to use samples/durable/azure_functions
- Fixed paths in conftest.py, test_03_dt_single_agent_streaming.py, and testutils.py

Co-authored-by: larohra <41490930+larohra@users.noreply.github.com>
2a5186c8b4 ยท 2026-01-30 22:36:51 +00:00
History
..

Get Started with Microsoft Agent Framework Durable Functions

PyPI

Please install this package via pip:

pip install agent-framework-azurefunctions --pre

Durable Agent Extension

The durable agent extension lets you host Microsoft Agent Framework agents on Azure Durable Functions so they can persist state, replay conversation history, and recover from failures automatically.

Basic Usage Example

See the durable functions integration sample in the repository to learn how to:

from agent_framework.azure import AgentFunctionApp

_app = AgentFunctionApp()
  • Register agents with AgentFunctionApp
  • Post messages using the generated /api/agents/{agent_name}/run endpoint

For more details, review the Python README and the samples directory.