areno 0.0.1.dev0__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.
@@ -0,0 +1,34 @@
1
+ Metadata-Version: 2.4
2
+ Name: areno
3
+ Version: 0.0.1.dev0
4
+ Summary: Extreme single-node scale-up infrastructure for LLM post-training.
5
+ Author: asystem
6
+ License: Apache-2.0
7
+ Project-URL: Homepage, https://github.com/asystem/areno
8
+ Project-URL: Repository, https://github.com/asystem/areno
9
+ Keywords: llm,post-training,rlhf,reinforcement-learning,cuda,inference
10
+ Classifier: Development Status :: 2 - Pre-Alpha
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: Intended Audience :: Science/Research
13
+ Classifier: License :: OSI Approved :: Apache Software License
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
17
+ Requires-Python: >=3.10
18
+ Description-Content-Type: text/markdown
19
+
20
+ # areno
21
+
22
+ **Extreme single-node scale-up infrastructure for LLM post-training.**
23
+
24
+ > This is a name placeholder release. The project is not yet generally
25
+ > available on PyPI. Development happens at
26
+ > <https://github.com/asystem/areno>.
27
+
28
+ `areno` is a CUDA-native post-training and inference stack for local LLMs:
29
+ one workflow for RL/SFT training, tensor-parallel rollout, Hugging
30
+ Face-compatible checkpointing, and an OpenAI-compatible serving endpoint —
31
+ all on a single node.
32
+
33
+ Until the first general release, install from source following the
34
+ instructions in the [GitHub repository](https://github.com/asystem/areno).
@@ -0,0 +1,15 @@
1
+ # areno
2
+
3
+ **Extreme single-node scale-up infrastructure for LLM post-training.**
4
+
5
+ > This is a name placeholder release. The project is not yet generally
6
+ > available on PyPI. Development happens at
7
+ > <https://github.com/asystem/areno>.
8
+
9
+ `areno` is a CUDA-native post-training and inference stack for local LLMs:
10
+ one workflow for RL/SFT training, tensor-parallel rollout, Hugging
11
+ Face-compatible checkpointing, and an OpenAI-compatible serving endpoint —
12
+ all on a single node.
13
+
14
+ Until the first general release, install from source following the
15
+ instructions in the [GitHub repository](https://github.com/asystem/areno).
@@ -0,0 +1,30 @@
1
+ [build-system]
2
+ requires = ["setuptools>=69", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "areno"
7
+ version = "0.0.1.dev0"
8
+ description = "Extreme single-node scale-up infrastructure for LLM post-training."
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ license = { text = "Apache-2.0" }
12
+ authors = [{ name = "asystem" }]
13
+ keywords = ["llm", "post-training", "rlhf", "reinforcement-learning", "cuda", "inference"]
14
+ classifiers = [
15
+ "Development Status :: 2 - Pre-Alpha",
16
+ "Intended Audience :: Developers",
17
+ "Intended Audience :: Science/Research",
18
+ "License :: OSI Approved :: Apache Software License",
19
+ "Programming Language :: Python :: 3",
20
+ "Programming Language :: Python :: 3.10",
21
+ "Topic :: Scientific/Engineering :: Artificial Intelligence",
22
+ ]
23
+
24
+ [project.urls]
25
+ Homepage = "https://github.com/asystem/areno"
26
+ Repository = "https://github.com/asystem/areno"
27
+
28
+ [tool.setuptools.packages.find]
29
+ where = ["src"]
30
+ include = ["areno*"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,7 @@
1
+ """areno — name placeholder release.
2
+
3
+ The project is not yet generally available on PyPI. See
4
+ https://github.com/asystem/areno for source and installation instructions.
5
+ """
6
+
7
+ __version__ = "0.0.1.dev0"
@@ -0,0 +1,34 @@
1
+ Metadata-Version: 2.4
2
+ Name: areno
3
+ Version: 0.0.1.dev0
4
+ Summary: Extreme single-node scale-up infrastructure for LLM post-training.
5
+ Author: asystem
6
+ License: Apache-2.0
7
+ Project-URL: Homepage, https://github.com/asystem/areno
8
+ Project-URL: Repository, https://github.com/asystem/areno
9
+ Keywords: llm,post-training,rlhf,reinforcement-learning,cuda,inference
10
+ Classifier: Development Status :: 2 - Pre-Alpha
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: Intended Audience :: Science/Research
13
+ Classifier: License :: OSI Approved :: Apache Software License
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
17
+ Requires-Python: >=3.10
18
+ Description-Content-Type: text/markdown
19
+
20
+ # areno
21
+
22
+ **Extreme single-node scale-up infrastructure for LLM post-training.**
23
+
24
+ > This is a name placeholder release. The project is not yet generally
25
+ > available on PyPI. Development happens at
26
+ > <https://github.com/asystem/areno>.
27
+
28
+ `areno` is a CUDA-native post-training and inference stack for local LLMs:
29
+ one workflow for RL/SFT training, tensor-parallel rollout, Hugging
30
+ Face-compatible checkpointing, and an OpenAI-compatible serving endpoint —
31
+ all on a single node.
32
+
33
+ Until the first general release, install from source following the
34
+ instructions in the [GitHub repository](https://github.com/asystem/areno).
@@ -0,0 +1,7 @@
1
+ README.md
2
+ pyproject.toml
3
+ src/areno/__init__.py
4
+ src/areno.egg-info/PKG-INFO
5
+ src/areno.egg-info/SOURCES.txt
6
+ src/areno.egg-info/dependency_links.txt
7
+ src/areno.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ areno