rotalabs-cascade 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.
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: rotalabs-cascade
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Domain-agnostic trust cascade routing - Routes decisions to the cheapest sufficient layer
|
|
5
|
+
Project-URL: Homepage, https://rotalabs.ai
|
|
6
|
+
Project-URL: Repository, https://github.com/rotalabs/rotalabs-cascade
|
|
7
|
+
Author-email: Rotalabs <research@rotalabs.ai>
|
|
8
|
+
License-Expression: MIT
|
|
9
|
+
Keywords: ai,cascade,machine-learning,routing,trust
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: Intended Audience :: Science/Research
|
|
13
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
16
|
+
Requires-Python: >=3.9
|
|
17
|
+
Description-Content-Type: text/markdown
|
|
18
|
+
|
|
19
|
+
# rotalabs-cascade
|
|
20
|
+
|
|
21
|
+
Domain-agnostic trust cascade routing from [Rotalabs](https://rotalabs.ai).
|
|
22
|
+
|
|
23
|
+
Routes decisions to the cheapest sufficient layer - rules when possible, AI when necessary.
|
|
24
|
+
|
|
25
|
+
**This is a placeholder package. Full implementation coming soon.**
|
|
26
|
+
|
|
27
|
+
## Features (Planned)
|
|
28
|
+
|
|
29
|
+
- 94% detection accuracy
|
|
30
|
+
- 86% cost reduction
|
|
31
|
+
- Domain-agnostic routing
|
|
32
|
+
|
|
33
|
+
## Links
|
|
34
|
+
|
|
35
|
+
- Website: https://rotalabs.ai
|
|
36
|
+
- GitHub: https://github.com/rotalabs/rotalabs-cascade
|
|
37
|
+
- Contact: research@rotalabs.ai
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# rotalabs-cascade
|
|
2
|
+
|
|
3
|
+
Domain-agnostic trust cascade routing from [Rotalabs](https://rotalabs.ai).
|
|
4
|
+
|
|
5
|
+
Routes decisions to the cheapest sufficient layer - rules when possible, AI when necessary.
|
|
6
|
+
|
|
7
|
+
**This is a placeholder package. Full implementation coming soon.**
|
|
8
|
+
|
|
9
|
+
## Features (Planned)
|
|
10
|
+
|
|
11
|
+
- 94% detection accuracy
|
|
12
|
+
- 86% cost reduction
|
|
13
|
+
- Domain-agnostic routing
|
|
14
|
+
|
|
15
|
+
## Links
|
|
16
|
+
|
|
17
|
+
- Website: https://rotalabs.ai
|
|
18
|
+
- GitHub: https://github.com/rotalabs/rotalabs-cascade
|
|
19
|
+
- Contact: research@rotalabs.ai
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "rotalabs-cascade"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Domain-agnostic trust cascade routing - Routes decisions to the cheapest sufficient layer"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "MIT"
|
|
11
|
+
requires-python = ">=3.9"
|
|
12
|
+
authors = [
|
|
13
|
+
{ name = "Rotalabs", email = "research@rotalabs.ai" }
|
|
14
|
+
]
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Development Status :: 1 - Planning",
|
|
17
|
+
"Intended Audience :: Developers",
|
|
18
|
+
"Intended Audience :: Science/Research",
|
|
19
|
+
"License :: OSI Approved :: MIT License",
|
|
20
|
+
"Programming Language :: Python :: 3",
|
|
21
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
22
|
+
]
|
|
23
|
+
keywords = ["ai", "trust", "cascade", "routing", "machine-learning"]
|
|
24
|
+
|
|
25
|
+
[project.urls]
|
|
26
|
+
Homepage = "https://rotalabs.ai"
|
|
27
|
+
Repository = "https://github.com/rotalabs/rotalabs-cascade"
|