azot 0.0.1__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.
- azot-0.0.1/PKG-INFO +31 -0
- azot-0.0.1/README.md +16 -0
- azot-0.0.1/pyproject.toml +25 -0
- azot-0.0.1/setup.cfg +4 -0
- azot-0.0.1/src/azot/__init__.py +9 -0
- azot-0.0.1/src/azot.egg-info/PKG-INFO +31 -0
- azot-0.0.1/src/azot.egg-info/SOURCES.txt +7 -0
- azot-0.0.1/src/azot.egg-info/dependency_links.txt +1 -0
- azot-0.0.1/src/azot.egg-info/top_level.txt +1 -0
azot-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: azot
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Azot — an agent harness built exclusively for small local models (1B-9B, 12 GB VRAM). Name reservation; the harness ships as a Go binary, Python bindings may follow.
|
|
5
|
+
Author-email: Pedja Urosevic <pedjaurosevic@gmail.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/pedjaurosevic/azot
|
|
8
|
+
Keywords: llm,agent,harness,local-models,llama.cpp
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
13
|
+
Requires-Python: >=3.9
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# Azot
|
|
17
|
+
|
|
18
|
+
**An agent harness built exclusively for small local models (1B–9B) on ≤ 12 GB VRAM.**
|
|
19
|
+
|
|
20
|
+
> *Azot* (from *azote*, the historical name for nitrogen): abundant, free, and inert
|
|
21
|
+
> until something *fixes* it into life. Azot is the nitrogenase: it takes small local
|
|
22
|
+
> models that sit inert on disk and fixes them into useful work.
|
|
23
|
+
|
|
24
|
+
Small models are everywhere — and inert. **Azot fixes them into work.**
|
|
25
|
+
|
|
26
|
+
## Status
|
|
27
|
+
|
|
28
|
+
Early development. This PyPI package reserves the name; the harness itself ships as a
|
|
29
|
+
single Go binary. Python bindings may follow.
|
|
30
|
+
|
|
31
|
+
Project home: https://github.com/pedjaurosevic/azot
|
azot-0.0.1/README.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Azot
|
|
2
|
+
|
|
3
|
+
**An agent harness built exclusively for small local models (1B–9B) on ≤ 12 GB VRAM.**
|
|
4
|
+
|
|
5
|
+
> *Azot* (from *azote*, the historical name for nitrogen): abundant, free, and inert
|
|
6
|
+
> until something *fixes* it into life. Azot is the nitrogenase: it takes small local
|
|
7
|
+
> models that sit inert on disk and fixes them into useful work.
|
|
8
|
+
|
|
9
|
+
Small models are everywhere — and inert. **Azot fixes them into work.**
|
|
10
|
+
|
|
11
|
+
## Status
|
|
12
|
+
|
|
13
|
+
Early development. This PyPI package reserves the name; the harness itself ships as a
|
|
14
|
+
single Go binary. Python bindings may follow.
|
|
15
|
+
|
|
16
|
+
Project home: https://github.com/pedjaurosevic/azot
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "azot"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Azot — an agent harness built exclusively for small local models (1B-9B, 12 GB VRAM). Name reservation; the harness ships as a Go binary, Python bindings may follow."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = { text = "MIT" }
|
|
12
|
+
authors = [{ name = "Pedja Urosevic", email = "pedjaurosevic@gmail.com" }]
|
|
13
|
+
keywords = ["llm", "agent", "harness", "local-models", "llama.cpp"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"License :: OSI Approved :: MIT License",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[project.urls]
|
|
22
|
+
Homepage = "https://github.com/pedjaurosevic/azot"
|
|
23
|
+
|
|
24
|
+
[tool.setuptools.packages.find]
|
|
25
|
+
where = ["src"]
|
azot-0.0.1/setup.cfg
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"""Azot — an agent harness built exclusively for small local models (1B-9B, 12 GB VRAM).
|
|
2
|
+
|
|
3
|
+
Small models are everywhere — and inert. Azot fixes them into work.
|
|
4
|
+
|
|
5
|
+
This package currently reserves the name. The harness itself ships as a Go binary:
|
|
6
|
+
https://github.com/pedjaurosevic/azot
|
|
7
|
+
"""
|
|
8
|
+
|
|
9
|
+
__version__ = "0.0.1"
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: azot
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Azot — an agent harness built exclusively for small local models (1B-9B, 12 GB VRAM). Name reservation; the harness ships as a Go binary, Python bindings may follow.
|
|
5
|
+
Author-email: Pedja Urosevic <pedjaurosevic@gmail.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/pedjaurosevic/azot
|
|
8
|
+
Keywords: llm,agent,harness,local-models,llama.cpp
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
13
|
+
Requires-Python: >=3.9
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# Azot
|
|
17
|
+
|
|
18
|
+
**An agent harness built exclusively for small local models (1B–9B) on ≤ 12 GB VRAM.**
|
|
19
|
+
|
|
20
|
+
> *Azot* (from *azote*, the historical name for nitrogen): abundant, free, and inert
|
|
21
|
+
> until something *fixes* it into life. Azot is the nitrogenase: it takes small local
|
|
22
|
+
> models that sit inert on disk and fixes them into useful work.
|
|
23
|
+
|
|
24
|
+
Small models are everywhere — and inert. **Azot fixes them into work.**
|
|
25
|
+
|
|
26
|
+
## Status
|
|
27
|
+
|
|
28
|
+
Early development. This PyPI package reserves the name; the harness itself ships as a
|
|
29
|
+
single Go binary. Python bindings may follow.
|
|
30
|
+
|
|
31
|
+
Project home: https://github.com/pedjaurosevic/azot
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
azot
|