Skip to content

Python: Missing packages in agent-framework-core[all] optional dependencies #3669

@droideronline

Description

@droideronline

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-claude
  • agent-framework-bedrock
  • agent-framework-foundry-local

To Reproduce

  1. Install with all extras: pip install agent-framework-core[all]
  2. Try to import Claude agent: from agent_framework_claude import ClaudeAgent
  3. 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

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions