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 Task

PyPI

Please install this package via pip:

pip install agent-framework-durabletask --pre

Durable Task Integration

The durable task integration lets you host Microsoft Agent Framework agents using the Durable Task framework so they can persist state, replay conversation history, and recover from failures automatically.

Basic Usage Example

from durabletask import TaskHubGrpcWorker
from agent_framework.azure import DurableAIAgentWorker

# Create the worker
with TaskHubGrpcWorker(...) as worker:
    
    # Register the agent worker wrapper
    agent_worker = DurableAIAgentWorker(worker)
    
    # Register the agent
    agent_worker.add_agent(my_agent)

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