From 5bfa7cf2d39d6c78d2d83b1f3caaf3160ffb031a Mon Sep 17 00:00:00 2001 From: Shun Ishii <39784917+shunishii@users.noreply.github.com> Date: Tue, 10 Mar 2026 23:39:45 +0900 Subject: [PATCH] Specify versions for agent-framework packages Because the latest Agent Framework includes breaking changes, this sample no longer works when imported. As a temporary workaround, I changed Agent Framework to a version from before those breaking changes. --- python/agent-framework/sample-agent/pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python/agent-framework/sample-agent/pyproject.toml b/python/agent-framework/sample-agent/pyproject.toml index 97aaa010..5e391bb0 100644 --- a/python/agent-framework/sample-agent/pyproject.toml +++ b/python/agent-framework/sample-agent/pyproject.toml @@ -7,7 +7,8 @@ authors = [ ] dependencies = [ # AgentFramework SDK - The official package - "agent-framework-azure-ai", + "agent-framework-core==1.0.0b260128", + "agent-framework-azure-ai==1.0.0b260128", # Azure AI Projects - explicitly require pre-release version "azure-ai-agents>=1.2.0b5",