apron 0.0.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.
- apron-0.0.0/PKG-INFO +52 -0
- apron-0.0.0/README.md +33 -0
- apron-0.0.0/pyproject.toml +34 -0
- apron-0.0.0/pyproject.toml.orig +26 -0
- apron-0.0.0/src/apron/__init__.py +7 -0
apron-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: apron
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Apron, by Mondegreens — name reserved; implementation has not started
|
|
5
|
+
Keywords: inference,deployment,vllm,evaluation,evidence
|
|
6
|
+
Author: Vlad Ryzhkov
|
|
7
|
+
License-Expression: Apache-2.0
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
13
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
14
|
+
Classifier: Topic :: System :: Systems Administration
|
|
15
|
+
Requires-Python: >=3.11
|
|
16
|
+
Project-URL: Homepage, https://apron.dev
|
|
17
|
+
Project-URL: Source, https://github.com/mondegreens/apron
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
|
|
20
|
+
# Apron
|
|
21
|
+
|
|
22
|
+
**Apron finds, deploys and maintains the inference solution that actually works
|
|
23
|
+
for a real workload.**
|
|
24
|
+
|
|
25
|
+
## Status: not implemented
|
|
26
|
+
|
|
27
|
+
This release reserves the name. There is no software here yet — no command, no
|
|
28
|
+
library, nothing to run. Installing it does nothing.
|
|
29
|
+
|
|
30
|
+
What exists today is the specification: the architecture, the decision records,
|
|
31
|
+
the invariants and the delivery plan.
|
|
32
|
+
|
|
33
|
+
- Specification and design record: <https://github.com/mondegreens/apron>
|
|
34
|
+
- Documentation: <https://apron.dev>
|
|
35
|
+
|
|
36
|
+
## What it will do
|
|
37
|
+
|
|
38
|
+
Given a real task and an accepted quality floor, serving requirement, policy and
|
|
39
|
+
budget, Apron compares managed APIs, self-hosted models and compound systems;
|
|
40
|
+
predicts resource fit before anything is rented or downloaded; deploys the
|
|
41
|
+
selected solution; measures whether the task outcome and the serving contract
|
|
42
|
+
actually hold; diagnoses failures to a corrected plan; and keeps the result
|
|
43
|
+
qualified as models, engines and providers change.
|
|
44
|
+
|
|
45
|
+
Every result declares how it is known. A calculation is labelled a prediction
|
|
46
|
+
until something executes on the stated hardware. A measurement belongs only to
|
|
47
|
+
the exact execution that produced it. What is unknown is reported as unknown.
|
|
48
|
+
|
|
49
|
+
## Licence
|
|
50
|
+
|
|
51
|
+
Apache-2.0 for code and documentation. Evidence records are published separately
|
|
52
|
+
under CDLA-Permissive-2.0.
|
apron-0.0.0/README.md
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# Apron
|
|
2
|
+
|
|
3
|
+
**Apron finds, deploys and maintains the inference solution that actually works
|
|
4
|
+
for a real workload.**
|
|
5
|
+
|
|
6
|
+
## Status: not implemented
|
|
7
|
+
|
|
8
|
+
This release reserves the name. There is no software here yet — no command, no
|
|
9
|
+
library, nothing to run. Installing it does nothing.
|
|
10
|
+
|
|
11
|
+
What exists today is the specification: the architecture, the decision records,
|
|
12
|
+
the invariants and the delivery plan.
|
|
13
|
+
|
|
14
|
+
- Specification and design record: <https://github.com/mondegreens/apron>
|
|
15
|
+
- Documentation: <https://apron.dev>
|
|
16
|
+
|
|
17
|
+
## What it will do
|
|
18
|
+
|
|
19
|
+
Given a real task and an accepted quality floor, serving requirement, policy and
|
|
20
|
+
budget, Apron compares managed APIs, self-hosted models and compound systems;
|
|
21
|
+
predicts resource fit before anything is rented or downloaded; deploys the
|
|
22
|
+
selected solution; measures whether the task outcome and the serving contract
|
|
23
|
+
actually hold; diagnoses failures to a corrected plan; and keeps the result
|
|
24
|
+
qualified as models, engines and providers change.
|
|
25
|
+
|
|
26
|
+
Every result declares how it is known. A calculation is labelled a prediction
|
|
27
|
+
until something executes on the stated hardware. A measurement belongs only to
|
|
28
|
+
the exact execution that produced it. What is unknown is reported as unknown.
|
|
29
|
+
|
|
30
|
+
## Licence
|
|
31
|
+
|
|
32
|
+
Apache-2.0 for code and documentation. Evidence records are published separately
|
|
33
|
+
under CDLA-Permissive-2.0.
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "apron"
|
|
3
|
+
version = "0.0.0"
|
|
4
|
+
description = "Apron, by Mondegreens — name reserved; implementation has not started"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.11"
|
|
7
|
+
license = "Apache-2.0"
|
|
8
|
+
keywords = [
|
|
9
|
+
"inference",
|
|
10
|
+
"deployment",
|
|
11
|
+
"vllm",
|
|
12
|
+
"evaluation",
|
|
13
|
+
"evidence",
|
|
14
|
+
]
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Development Status :: 1 - Planning",
|
|
17
|
+
"Intended Audience :: Developers",
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
"Programming Language :: Python :: 3.11",
|
|
20
|
+
"Programming Language :: Python :: 3.14",
|
|
21
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
22
|
+
"Topic :: System :: Systems Administration",
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
[[project.authors]]
|
|
26
|
+
name = "Vlad Ryzhkov"
|
|
27
|
+
|
|
28
|
+
[project.urls]
|
|
29
|
+
Homepage = "https://apron.dev"
|
|
30
|
+
Source = "https://github.com/mondegreens/apron"
|
|
31
|
+
|
|
32
|
+
[build-system]
|
|
33
|
+
requires = ["uv_build>=0.12.13,<0.13"]
|
|
34
|
+
build-backend = "uv_build"
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "apron"
|
|
3
|
+
version = "0.0.0"
|
|
4
|
+
description = "Apron, by Mondegreens — name reserved; implementation has not started"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.11"
|
|
7
|
+
license = "Apache-2.0"
|
|
8
|
+
authors = [{ name = "Vlad Ryzhkov" }]
|
|
9
|
+
keywords = ["inference", "deployment", "vllm", "evaluation", "evidence"]
|
|
10
|
+
classifiers = [
|
|
11
|
+
"Development Status :: 1 - Planning",
|
|
12
|
+
"Intended Audience :: Developers",
|
|
13
|
+
"Programming Language :: Python :: 3",
|
|
14
|
+
"Programming Language :: Python :: 3.11",
|
|
15
|
+
"Programming Language :: Python :: 3.14",
|
|
16
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
17
|
+
"Topic :: System :: Systems Administration",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[project.urls]
|
|
21
|
+
Homepage = "https://apron.dev"
|
|
22
|
+
Source = "https://github.com/mondegreens/apron"
|
|
23
|
+
|
|
24
|
+
[build-system]
|
|
25
|
+
requires = ["uv_build>=0.12.13,<0.13"]
|
|
26
|
+
build-backend = "uv_build"
|