-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Closed as not planned
Closed as not planned
Copy link
Description
Describe the bug
The [project.optional-dependencies] all section in python/packages/core/pyproject.toml is missing several integration packages that exist in the repository. This means users who install agent-framework-core[all] expecting to get all integrations will not receive:
agent-framework-claudeagent-framework-bedrockagent-framework-foundry-local
To Reproduce
- Install with all extras:
pip install agent-framework-core[all] - Try to import Claude agent:
from agent_framework_claude import ClaudeAgent - Get
ModuleNotFoundError
Expected behavior
All integration packages in python/packages/ should be included in the all optional dependency group, similar to how agent-framework-github-copilot, agent-framework-anthropic, etc. are included.
Current all dependencies:
all = [
"agent-framework-a2a",
"agent-framework-ag-ui",
"agent-framework-azure-ai-search",
"agent-framework-anthropic",
"agent-framework-azure-ai",
"agent-framework-azurefunctions",
"agent-framework-chatkit",
"agent-framework-copilotstudio",
"agent-framework-declarative",
"agent-framework-devui",
"agent-framework-durabletask",
"agent-framework-github-copilot",
"agent-framework-lab",
"agent-framework-mem0",
"agent-framework-ollama",
"agent-framework-purview",
"agent-framework-redis",
# Missing:
# "agent-framework-bedrock",
# "agent-framework-claude",
# "agent-framework-foundry-local",
]Platform
- OS: All
- Language: Python
- Source: PyPI / GitHub