Please install this package via pip:
pip install agent-framework-azurefunctions --preThe 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.
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}/runendpoint
For more details, review the Python README and the samples directory.