You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file tracks the current lifecycle state of the Python packages in this workspace. Some packages at later stages might have features within them that are not ready yet, these have feature stage decorators on the relevant APIs, and for `experimental` features warnings are raised. See the [Feature-level staged APIs](#feature-level-staged-apis) section below for details on which features are in which stage and where to find them.
4
+
5
+
Status is grouped into these buckets:
6
+
7
+
-`alpha` - initial release and early development packages that are not yet ready for general use
8
+
-`beta` - prerelease packages that are not currently release candidates
9
+
-`rc` - release candidate packages, these are close to ready for release but may still have some breaking changes before the final release
10
+
-`released` - stable packages without a prerelease suffix, these are stable packages that should not have breaking changes between versions
11
+
-`deprecated` - removed or deprecated packages that should not be used for new work
|`agent-framework-azure-ai`|`python/packages/azure-ai`|`deprecated`| The client classes within the `azure-ai` package were renamed, sometimes changed, and moved to `agent-framework-foundry`. |
48
+
49
+
## Feature-level staged APIs
50
+
51
+
The following feature IDs have explicit feature-stage decorators on public APIs in the packages
52
+
listed below.
53
+
54
+
### Experimental features
55
+
56
+
#### `EVALS`
57
+
58
+
-`agent-framework-core`: exported evaluation APIs from `agent_framework`, including
59
+
`LocalEvaluator`, `evaluate_agent`, `evaluate_workflow`, and the related evaluation types and
60
+
helper checks defined in `agent_framework/_evaluation.py`
61
+
-`agent-framework-foundry`: `FoundryEvals`, `evaluate_traces`, and `evaluate_foundry_target`
62
+
63
+
#### `SKILLS`
64
+
65
+
-`agent-framework-core`: exported skills APIs from `agent_framework`, including `Skill`,
66
+
`SkillResource`, `SkillScript`, `SkillScriptRunner`, and `SkillsProvider` from
Copy file name to clipboardExpand all lines: python/README.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,10 +9,10 @@ We recommend two common installation paths depending on your use case.
9
9
If you are exploring or developing locally, install the entire framework with all sub-packages:
10
10
11
11
```bash
12
-
pip install agent-framework --pre
12
+
pip install agent-framework
13
13
```
14
14
15
-
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.
15
+
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.
16
16
17
17
### 2. Selective install
18
18
@@ -22,19 +22,19 @@ If you only need specific integrations, you can install at a more granular level
22
22
# Core only
23
23
# includes Azure OpenAI and OpenAI support by default
24
24
# also includes workflows and orchestrations
25
-
pip install agent-framework-core --pre
25
+
pip install agent-framework-core
26
26
27
27
# Core + Azure AI Foundry integration
28
-
pip install agent-framework-foundry --pre
28
+
pip install agent-framework-foundry
29
29
30
-
# Core + Microsoft Copilot Studio integration
30
+
# Core + Microsoft Copilot Studio integration (preview package)
31
31
pip install agent-framework-copilotstudio --pre
32
32
33
33
# Core + both Microsoft Copilot Studio and Azure AI Foundry integration
This selective approach is useful when you know which integrations you need, and it is the recommended way to set up lightweight environments.
37
+
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.
0 commit comments