aaria-lm 0.1.0__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.
- aaria_lm-0.1.0/PKG-INFO +8 -0
- aaria_lm-0.1.0/README.md +0 -0
- aaria_lm-0.1.0/aaria_lm.egg-info/PKG-INFO +8 -0
- aaria_lm-0.1.0/aaria_lm.egg-info/SOURCES.txt +8 -0
- aaria_lm-0.1.0/aaria_lm.egg-info/dependency_links.txt +1 -0
- aaria_lm-0.1.0/aaria_lm.egg-info/entry_points.txt +2 -0
- aaria_lm-0.1.0/aaria_lm.egg-info/requires.txt +2 -0
- aaria_lm-0.1.0/aaria_lm.egg-info/top_level.txt +1 -0
- aaria_lm-0.1.0/pyproject.toml +17 -0
- aaria_lm-0.1.0/setup.cfg +4 -0
aaria_lm-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: aaria-lm
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Official inference engine for the Aaria-Micro 125M Foundation Model.
|
|
5
|
+
Requires-Python: >=3.8
|
|
6
|
+
Description-Content-Type: text/markdown
|
|
7
|
+
Requires-Dist: huggingface-hub>=0.20.0
|
|
8
|
+
Requires-Dist: llama-cpp-python>=0.2.50
|
aaria_lm-0.1.0/README.md
ADDED
|
File without changes
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: aaria-lm
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Official inference engine for the Aaria-Micro 125M Foundation Model.
|
|
5
|
+
Requires-Python: >=3.8
|
|
6
|
+
Description-Content-Type: text/markdown
|
|
7
|
+
Requires-Dist: huggingface-hub>=0.20.0
|
|
8
|
+
Requires-Dist: llama-cpp-python>=0.2.50
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "aaria-lm"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Official inference engine for the Aaria-Micro 125M Foundation Model."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
dependencies = [
|
|
12
|
+
"huggingface-hub>=0.20.0",
|
|
13
|
+
"llama-cpp-python>=0.2.50"
|
|
14
|
+
]
|
|
15
|
+
|
|
16
|
+
[project.scripts]
|
|
17
|
+
aaria = "aaria_lm.cli:main"
|
aaria_lm-0.1.0/setup.cfg
ADDED