rolloutlib 0.1.0__py3-none-any.whl
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.
rolloutlib/__init__.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Environments and post-training for language agents."""
|
rolloutlib/py.typed
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: rolloutlib
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Environments and post-training for language agents
|
|
5
|
+
Requires-Python: >=3.12
|
|
6
|
+
Project-URL: Homepage, https://github.com/atemaguer/rolloutlib
|
|
7
|
+
Project-URL: Issues, https://github.com/atemaguer/rolloutlib/issues
|
|
8
|
+
Project-URL: Repository, https://github.com/atemaguer/rolloutlib
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# rolloutlib
|
|
12
|
+
|
|
13
|
+
Environments and post-training for language agents.
|
|
14
|
+
|
|
15
|
+
## Development
|
|
16
|
+
|
|
17
|
+
Install the project:
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
uv sync
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Release
|
|
24
|
+
|
|
25
|
+
Releases are published to PyPI by GitHub Actions when a tag matching the package
|
|
26
|
+
version is pushed:
|
|
27
|
+
|
|
28
|
+
```bash
|
|
29
|
+
git tag v0.1.0
|
|
30
|
+
git push origin v0.1.0
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
The repository uses PyPI Trusted Publishing, so the `pypi` GitHub environment must be
|
|
34
|
+
registered as a trusted publisher for this repository's `release.yml` workflow before
|
|
35
|
+
the first release.
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
rolloutlib/__init__.py,sha256=vFHcblr0Tg2WpeOk5QtRwYNIWOSdC7tIMe8-p92ft2w,58
|
|
2
|
+
rolloutlib/py.typed,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
3
|
+
rolloutlib-0.1.0.dist-info/WHEEL,sha256=M6du7VZflc4UPsGphmOXHANdgk8zessdJG0DBUuoA-U,78
|
|
4
|
+
rolloutlib-0.1.0.dist-info/METADATA,sha256=8E2hC_5QWhwKZ2bliLMHgU7M7N8veenkx2VaHhyJk2s,856
|
|
5
|
+
rolloutlib-0.1.0.dist-info/RECORD,,
|