infergate 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.
- infergate-0.1.0/PKG-INFO +24 -0
- infergate-0.1.0/README.md +10 -0
- infergate-0.1.0/infergate.egg-info/PKG-INFO +24 -0
- infergate-0.1.0/infergate.egg-info/SOURCES.txt +6 -0
- infergate-0.1.0/infergate.egg-info/dependency_links.txt +1 -0
- infergate-0.1.0/infergate.egg-info/top_level.txt +1 -0
- infergate-0.1.0/pyproject.toml +24 -0
- infergate-0.1.0/setup.cfg +4 -0
infergate-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: infergate
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Semantic routing layer for AI inference backends
|
|
5
|
+
Author-email: Jerzy <jerzyk.majchrzak@gmail.com>
|
|
6
|
+
Project-URL: Homepage, https://github.com/Jermalk/infergate
|
|
7
|
+
Keywords: ai,llm,routing,inference,gateway
|
|
8
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Requires-Python: >=3.10
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
# InferGate
|
|
16
|
+
|
|
17
|
+
Semantic routing layer for AI inference backends.
|
|
18
|
+
Routes requests intelligently between local models and cloud providers
|
|
19
|
+
based on
|
|
20
|
+
- task classification,
|
|
21
|
+
- context length,
|
|
22
|
+
- availability.
|
|
23
|
+
|
|
24
|
+
**Under active development since April 2026 — full release coming soon.**
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# InferGate
|
|
2
|
+
|
|
3
|
+
Semantic routing layer for AI inference backends.
|
|
4
|
+
Routes requests intelligently between local models and cloud providers
|
|
5
|
+
based on
|
|
6
|
+
- task classification,
|
|
7
|
+
- context length,
|
|
8
|
+
- availability.
|
|
9
|
+
|
|
10
|
+
**Under active development since April 2026 — full release coming soon.**
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: infergate
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Semantic routing layer for AI inference backends
|
|
5
|
+
Author-email: Jerzy <jerzyk.majchrzak@gmail.com>
|
|
6
|
+
Project-URL: Homepage, https://github.com/Jermalk/infergate
|
|
7
|
+
Keywords: ai,llm,routing,inference,gateway
|
|
8
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Requires-Python: >=3.10
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
# InferGate
|
|
16
|
+
|
|
17
|
+
Semantic routing layer for AI inference backends.
|
|
18
|
+
Routes requests intelligently between local models and cloud providers
|
|
19
|
+
based on
|
|
20
|
+
- task classification,
|
|
21
|
+
- context length,
|
|
22
|
+
- availability.
|
|
23
|
+
|
|
24
|
+
**Under active development since April 2026 — full release coming soon.**
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "infergate"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Semantic routing layer for AI inference backends"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = { file = "LICENSE" }
|
|
11
|
+
requires-python = ">=3.10"
|
|
12
|
+
authors = [
|
|
13
|
+
{ name = "Jerzy", email = "jerzyk.majchrzak@gmail.com" }
|
|
14
|
+
]
|
|
15
|
+
keywords = ["ai", "llm", "routing", "inference", "gateway"]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Development Status :: 2 - Pre-Alpha",
|
|
18
|
+
"Intended Audience :: Developers",
|
|
19
|
+
"Topic :: Software Development :: Libraries",
|
|
20
|
+
"Programming Language :: Python :: 3",
|
|
21
|
+
]
|
|
22
|
+
|
|
23
|
+
[project.urls]
|
|
24
|
+
Homepage = "https://github.com/Jermalk/infergate"
|