arbor-ai 0.1.7__tar.gz → 0.1.8__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {arbor_ai-0.1.7 → arbor_ai-0.1.8}/PKG-INFO +17 -3
- {arbor_ai-0.1.7 → arbor_ai-0.1.8}/README.md +15 -1
- {arbor_ai-0.1.7 → arbor_ai-0.1.8}/arbor_ai.egg-info/PKG-INFO +17 -3
- {arbor_ai-0.1.7 → arbor_ai-0.1.8}/arbor_ai.egg-info/requires.txt +1 -1
- {arbor_ai-0.1.7 → arbor_ai-0.1.8}/pyproject.toml +2 -2
- {arbor_ai-0.1.7 → arbor_ai-0.1.8}/LICENSE +0 -0
- {arbor_ai-0.1.7 → arbor_ai-0.1.8}/arbor/__init__.py +0 -0
- {arbor_ai-0.1.7 → arbor_ai-0.1.8}/arbor/cli.py +0 -0
- {arbor_ai-0.1.7 → arbor_ai-0.1.8}/arbor/client/__init__.py +0 -0
- {arbor_ai-0.1.7 → arbor_ai-0.1.8}/arbor/client/api.py +0 -0
- {arbor_ai-0.1.7 → arbor_ai-0.1.8}/arbor/server/__init__.py +0 -0
- {arbor_ai-0.1.7 → arbor_ai-0.1.8}/arbor/server/api/__init__.py +0 -0
- {arbor_ai-0.1.7 → arbor_ai-0.1.8}/arbor/server/api/models/schemas.py +0 -0
- {arbor_ai-0.1.7 → arbor_ai-0.1.8}/arbor/server/api/routes/__init__.py +0 -0
- {arbor_ai-0.1.7 → arbor_ai-0.1.8}/arbor/server/api/routes/files.py +0 -0
- {arbor_ai-0.1.7 → arbor_ai-0.1.8}/arbor/server/api/routes/grpo.py +0 -0
- {arbor_ai-0.1.7 → arbor_ai-0.1.8}/arbor/server/api/routes/inference.py +0 -0
- {arbor_ai-0.1.7 → arbor_ai-0.1.8}/arbor/server/api/routes/jobs.py +0 -0
- {arbor_ai-0.1.7 → arbor_ai-0.1.8}/arbor/server/core/__init__.py +0 -0
- {arbor_ai-0.1.7 → arbor_ai-0.1.8}/arbor/server/core/config.py +0 -0
- {arbor_ai-0.1.7 → arbor_ai-0.1.8}/arbor/server/core/logging.py +0 -0
- {arbor_ai-0.1.7 → arbor_ai-0.1.8}/arbor/server/main.py +0 -0
- {arbor_ai-0.1.7 → arbor_ai-0.1.8}/arbor/server/services/__init__.py +0 -0
- {arbor_ai-0.1.7 → arbor_ai-0.1.8}/arbor/server/services/comms/__init__.py +0 -0
- {arbor_ai-0.1.7 → arbor_ai-0.1.8}/arbor/server/services/comms/comms.py +0 -0
- {arbor_ai-0.1.7 → arbor_ai-0.1.8}/arbor/server/services/dependencies.py +0 -0
- {arbor_ai-0.1.7 → arbor_ai-0.1.8}/arbor/server/services/file_manager.py +0 -0
- {arbor_ai-0.1.7 → arbor_ai-0.1.8}/arbor/server/services/grpo_manager.py +0 -0
- {arbor_ai-0.1.7 → arbor_ai-0.1.8}/arbor/server/services/inference_manager.py +0 -0
- {arbor_ai-0.1.7 → arbor_ai-0.1.8}/arbor/server/services/job_manager.py +0 -0
- {arbor_ai-0.1.7 → arbor_ai-0.1.8}/arbor/server/services/scripts/grpo_training.py +0 -0
- {arbor_ai-0.1.7 → arbor_ai-0.1.8}/arbor/server/services/training_manager.py +0 -0
- {arbor_ai-0.1.7 → arbor_ai-0.1.8}/arbor/server/utils/__init__.py +0 -0
- {arbor_ai-0.1.7 → arbor_ai-0.1.8}/arbor/server/utils/helpers.py +0 -0
- {arbor_ai-0.1.7 → arbor_ai-0.1.8}/arbor_ai.egg-info/SOURCES.txt +0 -0
- {arbor_ai-0.1.7 → arbor_ai-0.1.8}/arbor_ai.egg-info/dependency_links.txt +0 -0
- {arbor_ai-0.1.7 → arbor_ai-0.1.8}/arbor_ai.egg-info/entry_points.txt +0 -0
- {arbor_ai-0.1.7 → arbor_ai-0.1.8}/arbor_ai.egg-info/top_level.txt +0 -0
- {arbor_ai-0.1.7 → arbor_ai-0.1.8}/setup.cfg +0 -0
- {arbor_ai-0.1.7 → arbor_ai-0.1.8}/tests/test_cli.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: arbor-ai
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.8
|
4
4
|
Summary: A framework for fine-tuning and managing language models
|
5
5
|
Author-email: Noah Ziems <nziems2@nd.edu>
|
6
6
|
Project-URL: Homepage, https://github.com/Ziems/arbor
|
@@ -21,7 +21,7 @@ Requires-Dist: ray>=2.9
|
|
21
21
|
Requires-Dist: setuptools<77.0.0,>=76.0.0
|
22
22
|
Requires-Dist: pyzmq>=26.4.0
|
23
23
|
Requires-Dist: pyyaml>=6.0.2
|
24
|
-
Requires-Dist: sglang[all]>=0.4.
|
24
|
+
Requires-Dist: sglang[all]>=0.4.5.post3
|
25
25
|
Requires-Dist: sglang-router
|
26
26
|
Dynamic: license-file
|
27
27
|
|
@@ -31,6 +31,8 @@ Dynamic: license-file
|
|
31
31
|
|
32
32
|
**A framework for optimizing DSPy programs with RL.**
|
33
33
|
|
34
|
+
[](https://pepy.tech/projects/arbor-ai)
|
35
|
+
|
34
36
|
---
|
35
37
|
|
36
38
|
## 🚀 Installation
|
@@ -38,7 +40,7 @@ Dynamic: license-file
|
|
38
40
|
Install Arbor via pip:
|
39
41
|
|
40
42
|
```bash
|
41
|
-
pip install
|
43
|
+
pip install arbor-ai
|
42
44
|
```
|
43
45
|
|
44
46
|
---
|
@@ -76,3 +78,15 @@ Follow the DSPy tutorials here to see usage examples:
|
|
76
78
|
Arbor builds on the shoulders of great work. We extend our thanks to:
|
77
79
|
- **[Will Brown's Verifiers library](https://github.com/willccbb/verifiers)**
|
78
80
|
- **[Hugging Face TRL library](https://github.com/huggingface/trl)**
|
81
|
+
|
82
|
+
## 📚 Citation
|
83
|
+
|
84
|
+
If you use this code in your research, please cite:
|
85
|
+
|
86
|
+
```bibtex
|
87
|
+
@misc{ziems2025arbor,
|
88
|
+
title={Arbor: Open Source Language Model Post Training},
|
89
|
+
author={Ziems, Noah and Agrawal, Lakshya A and Soylu, Dilara and Lai, Liheng and Miller, Isaac and Qian, Chen and Jiang, Meng and Khattab, Omar},
|
90
|
+
year={2025}
|
91
|
+
}
|
92
|
+
```
|
@@ -4,6 +4,8 @@
|
|
4
4
|
|
5
5
|
**A framework for optimizing DSPy programs with RL.**
|
6
6
|
|
7
|
+
[](https://pepy.tech/projects/arbor-ai)
|
8
|
+
|
7
9
|
---
|
8
10
|
|
9
11
|
## 🚀 Installation
|
@@ -11,7 +13,7 @@
|
|
11
13
|
Install Arbor via pip:
|
12
14
|
|
13
15
|
```bash
|
14
|
-
pip install
|
16
|
+
pip install arbor-ai
|
15
17
|
```
|
16
18
|
|
17
19
|
---
|
@@ -49,3 +51,15 @@ Follow the DSPy tutorials here to see usage examples:
|
|
49
51
|
Arbor builds on the shoulders of great work. We extend our thanks to:
|
50
52
|
- **[Will Brown's Verifiers library](https://github.com/willccbb/verifiers)**
|
51
53
|
- **[Hugging Face TRL library](https://github.com/huggingface/trl)**
|
54
|
+
|
55
|
+
## 📚 Citation
|
56
|
+
|
57
|
+
If you use this code in your research, please cite:
|
58
|
+
|
59
|
+
```bibtex
|
60
|
+
@misc{ziems2025arbor,
|
61
|
+
title={Arbor: Open Source Language Model Post Training},
|
62
|
+
author={Ziems, Noah and Agrawal, Lakshya A and Soylu, Dilara and Lai, Liheng and Miller, Isaac and Qian, Chen and Jiang, Meng and Khattab, Omar},
|
63
|
+
year={2025}
|
64
|
+
}
|
65
|
+
```
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: arbor-ai
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.8
|
4
4
|
Summary: A framework for fine-tuning and managing language models
|
5
5
|
Author-email: Noah Ziems <nziems2@nd.edu>
|
6
6
|
Project-URL: Homepage, https://github.com/Ziems/arbor
|
@@ -21,7 +21,7 @@ Requires-Dist: ray>=2.9
|
|
21
21
|
Requires-Dist: setuptools<77.0.0,>=76.0.0
|
22
22
|
Requires-Dist: pyzmq>=26.4.0
|
23
23
|
Requires-Dist: pyyaml>=6.0.2
|
24
|
-
Requires-Dist: sglang[all]>=0.4.
|
24
|
+
Requires-Dist: sglang[all]>=0.4.5.post3
|
25
25
|
Requires-Dist: sglang-router
|
26
26
|
Dynamic: license-file
|
27
27
|
|
@@ -31,6 +31,8 @@ Dynamic: license-file
|
|
31
31
|
|
32
32
|
**A framework for optimizing DSPy programs with RL.**
|
33
33
|
|
34
|
+
[](https://pepy.tech/projects/arbor-ai)
|
35
|
+
|
34
36
|
---
|
35
37
|
|
36
38
|
## 🚀 Installation
|
@@ -38,7 +40,7 @@ Dynamic: license-file
|
|
38
40
|
Install Arbor via pip:
|
39
41
|
|
40
42
|
```bash
|
41
|
-
pip install
|
43
|
+
pip install arbor-ai
|
42
44
|
```
|
43
45
|
|
44
46
|
---
|
@@ -76,3 +78,15 @@ Follow the DSPy tutorials here to see usage examples:
|
|
76
78
|
Arbor builds on the shoulders of great work. We extend our thanks to:
|
77
79
|
- **[Will Brown's Verifiers library](https://github.com/willccbb/verifiers)**
|
78
80
|
- **[Hugging Face TRL library](https://github.com/huggingface/trl)**
|
81
|
+
|
82
|
+
## 📚 Citation
|
83
|
+
|
84
|
+
If you use this code in your research, please cite:
|
85
|
+
|
86
|
+
```bibtex
|
87
|
+
@misc{ziems2025arbor,
|
88
|
+
title={Arbor: Open Source Language Model Post Training},
|
89
|
+
author={Ziems, Noah and Agrawal, Lakshya A and Soylu, Dilara and Lai, Liheng and Miller, Isaac and Qian, Chen and Jiang, Meng and Khattab, Omar},
|
90
|
+
year={2025}
|
91
|
+
}
|
92
|
+
```
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "arbor-ai"
|
3
|
-
version = "0.1.
|
3
|
+
version = "0.1.8"
|
4
4
|
description = "A framework for fine-tuning and managing language models"
|
5
5
|
authors = [
|
6
6
|
{name = "Noah Ziems", email = "nziems2@nd.edu"}
|
@@ -21,7 +21,7 @@ dependencies = [
|
|
21
21
|
"setuptools (>=76.0.0,<77.0.0)",
|
22
22
|
"pyzmq>=26.4.0",
|
23
23
|
"pyyaml>=6.0.2",
|
24
|
-
"sglang[all]>=0.4.
|
24
|
+
"sglang[all]>=0.4.5.post3",
|
25
25
|
"sglang-router"
|
26
26
|
]
|
27
27
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|