Skip to content

Commit 280c96a

Browse files
authored
Add langgraph based orchestrator (#130)
* use langgraph to define orchestrator state transition * refactor * fix coral and tau2 langgaph * bump version
1 parent 319c68a commit 280c96a

26 files changed

Lines changed: 2407 additions & 1754 deletions

matrix/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
Multi-Agent daTa geneRation Infra and eXperimentation framework.
1212
"""
1313

14-
__version__ = "0.2.5"
14+
__version__ = "0.2.6"
1515
__author__ = "FAIR"
1616
__credits__ = "FAIR - Meta"
1717
__description__ = "Multi-Agent daTa geneRation Infra and eXperimentation framework."

matrix/agents/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ A Python package for multi-agent synthetic data generation. Technical details ar
1111

1212

1313
## Examples
14+
### Setup
15+
```
16+
pip install .[agent]
17+
```
18+
1419
### Deploy applications
1520
```bash
1621
matrix deploy_applications --action replace --applications "[{'model_name': 'openai/gpt-oss-120b', 'name': 'gpt120b', 'min_replica': 2, 'enable_tools': 'true', 'use_grpc': 'false'}, {'name': 'container', 'app_type': container, 'min_replica': 1, 'max_ongoing_requests':20}, {'model_name': 'meta-llama/Llama-3.1-8B-Instruct', 'use_grpc': 'true', 'min_replica': 1, 'name': '8B'}]"

0 commit comments

Comments
 (0)