Python: [BREAKING] update to v1.0.0 (#5062)

* updates to final deprecated pieces and versions

* fix mypy

* fix readme links
This commit is contained in:
Eduard van Valkenburg
2026-04-02 17:26:30 +02:00
committed by GitHub
Unverified
parent 5f06b68535
commit 3446eb8d5d
171 changed files with 2580 additions and 2392 deletions
+7 -7
View File
@@ -9,10 +9,10 @@ We recommend two common installation paths depending on your use case.
If you are exploring or developing locally, install the entire framework with all sub-packages:
```bash
pip install agent-framework --pre
pip install agent-framework
```
This installs the core and every integration package, making sure that all features are available without additional steps. The `--pre` flag is required while Agent Framework is in preview. This is the simplest way to get started.
This installs the core and every integration package, making sure that all features are available without additional steps. This is the simplest way to get started.
### 2. Selective install
@@ -22,19 +22,19 @@ If you only need specific integrations, you can install at a more granular level
# Core only
# includes Azure OpenAI and OpenAI support by default
# also includes workflows and orchestrations
pip install agent-framework-core --pre
pip install agent-framework-core
# Core + Azure AI Foundry integration
pip install agent-framework-foundry --pre
pip install agent-framework-foundry
# Core + Microsoft Copilot Studio integration
# Core + Microsoft Copilot Studio integration (preview package)
pip install agent-framework-copilotstudio --pre
# Core + both Microsoft Copilot Studio and Azure AI Foundry integration
pip install agent-framework-microsoft agent-framework-foundry --pre
pip install --pre agent-framework-copilotstudio agent-framework-foundry
```
This selective approach is useful when you know which integrations you need, and it is the recommended way to set up lightweight environments.
This selective approach is useful when you know which integrations you need, and it is the recommended way to set up lightweight environments. Released packages such as `agent-framework`, `agent-framework-core`, and `agent-framework-foundry` no longer require `--pre`, while preview connectors such as `agent-framework-copilotstudio` still do.
Supported Platforms: