update link (#1051)

This commit is contained in:
Eric Zhu
2025-10-01 04:18:11 -07:00
committed by GitHub
Unverified
parent 5f1417ab94
commit 08b602c290
4 changed files with 33 additions and 25 deletions
+6 -4
View File
@@ -8,20 +8,22 @@ This package enables you to train and fine-tune agents using advanced RL algorit
## Installation
Install the agent-framework-lab package with Lightning dependencies:
Install from source with Lightning dependencies:
```bash
pip install "agent-framework-lab[lightning]"
git clone https://github.com/microsoft/agent-framework.git
cd agent-framework/python/packages/lab
pip install -e ".[lightning]"
```
### Optional Dependencies
```bash
# For math-related training
pip install agent-framework-lab[lightning,math]
pip install -e ".[lightning,math]"
# For tau2 benchmarking
pip install agent-framework-lab[lightning,tau2]
pip install -e ".[lightning,tau2]"
```
To prepare for RL training, you'll also need to install dependencies like PyTorch, Ray, and vLLM. See the [Agent-lightning setup instructions](https://github.com/microsoft/agent-lightning) for more details.