Python: Update lab packages and installation instructions (#1687)

* update lab packages and installation instructions

* fix dep
This commit is contained in:
Eric Zhu
2025-10-24 21:12:08 +00:00
committed by GitHub
parent 418d7f2353
commit aba505df77
7 changed files with 183 additions and 184 deletions
+5 -7
View File
@@ -17,7 +17,7 @@ one of the following categories:
- [**gaia**](./gaia/): Evaluate your agents using the GAIA benchmark for general assistant tasks
- [**tau2**](./tau2/): Evaluate your agents using the TAU2 benchmark for customer support tasks
- [**lightning**](./lightning/): RL training for agents (in development)
- [**lightning**](./lightning/): RL training for agents using Agent Lightning
## Repository Structure
@@ -44,16 +44,14 @@ This structure maintains a single PyPI package `agent-framework-lab` while suppo
## Installation
Install from source:
To install each lab module, use the extras syntax with `pip`:
```bash
git clone https://github.com/microsoft/agent-framework.git
cd agent-framework/python/packages/lab
pip install -e .
pip install "agent-framework-lab[gaia]"
pip install "agent-framework-lab[tau2]"
pip install "agent-framework-lab[lightning]"
```
For details on installing individual modules, see their respective README files listed above.
## Usage
Import and use lab modules from the `agent_framework.lab` namespace.