This document tracks known issues with the current repository state.
Last updated: 2026-04-15. Tested against Python 3.13 / Windows in
.venv_ga_test.
| Package | Current Version |
|---|---|
agent-framework-azure-ai |
1.0.0rc3 |
agent-framework-core |
1.0.0rc3 |
azure-ai-agentserver-agentframework |
1.0.0b16 |
azure-ai-agentserver-core |
1.0.0b16 |
agent-dev-cli |
--pre (fixed — see KI-003) |
Status: Open | Severity: 🔴 High | Type: Breaking
The agent-framework-azure-ai package (pinned at 1.0.0rc3) was removed/deprecated
in the GA release (1.0.0, released 2026-04-02). It is replaced by:
agent-framework-foundry==1.0.0— Foundry-hosted agent patternagent-framework-openai==1.0.0— OpenAI-backed agent pattern
All three main.py files import AzureAIAgentClient from agent_framework.azure, which
raises ImportError under GA packages. The agent_framework.azure namespace still exists
in GA but now contains only Azure Functions classes (DurableAIAgent,
AzureAISearchContextProvider, CosmosHistoryProvider) — not Foundry agents.
ImportError: cannot import name 'AzureAIAgentClient' from 'agent_framework.azure'
(~\.venv_ga_test\Lib\site-packages\agent_framework\azure\__init__.py)
| File | Line |
|---|---|
ExecutiveAgent/main.py |
15 |
workshop/lab01-single-agent/agent/main.py |
15 |
workshop/lab02-multi-agent/PersonalCareerCopilot/main.py |
22 |
Status: Open | Severity: 🔴 High | Type: Breaking (blocked on upstream)
azure-ai-agentserver-agentframework==1.0.0b17 (latest) hard-pins
agent-framework-core<=1.0.0rc3. Installing it alongside agent-framework-core==1.0.0 (GA)
forces pip to downgrade agent-framework-core back to rc3, which then breaks
agent-framework-foundry==1.0.0 and agent-framework-openai==1.0.0.
The from azure.ai.agentserver.agentframework import from_agent_framework call used by all
agents to bind the HTTP server is therefore also blocked.
ERROR: pip's dependency resolver does not currently take into account all the packages
that are installed. This behaviour is the source of the following dependency conflicts.
agent-framework-foundry 1.0.0 requires agent-framework-core<2,>=1.0.0,
but you have agent-framework-core 1.0.0rc3 which is incompatible.
agent-framework-openai 1.0.0 requires agent-framework-core<2,>=1.0.0,
but you have agent-framework-core 1.0.0rc3 which is incompatible.
All three main.py files — both the top-level import and the in-function import in main().
Status: ✅ Fixed (non-breaking) | Severity: 🟢 Low
All requirements.txt files previously included agent-dev-cli --pre to pull the
pre-release CLI. Since GA 1.0.0 was released on 2026-04-02, the stable release of
agent-dev-cli is now available without the --pre flag.
Fix applied: The --pre flag has been removed from all three requirements.txt files.
Status: Open | Severity: 🟡 Low
All Dockerfiles use FROM python:3.14-slim which tracks a pre-release Python build.
For production deployments this should be pinned to a stable release (e.g., python:3.12-slim).
ExecutiveAgent/Dockerfileworkshop/lab01-single-agent/agent/Dockerfileworkshop/lab02-multi-agent/PersonalCareerCopilot/Dockerfile