inference-gate 0.1.0__py3-none-any.whl
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.
- inference_gate/__init__.py +14 -0
- inference_gate/cli.py +1227 -0
- inference_gate/cli_format.py +323 -0
- inference_gate/config.py +267 -0
- inference_gate/frontend/__init__.py +5 -0
- inference_gate/headers.py +274 -0
- inference_gate/inference_gate.py +229 -0
- inference_gate/inflow/__init__.py +9 -0
- inference_gate/inflow/admin.py +597 -0
- inference_gate/inflow/server.py +202 -0
- inference_gate/modes.py +23 -0
- inference_gate/outflow/__init__.py +10 -0
- inference_gate/outflow/client.py +164 -0
- inference_gate/outflow/model_router.py +277 -0
- inference_gate/pytest_context.py +118 -0
- inference_gate/pytest_plugin.py +537 -0
- inference_gate/recording/__init__.py +25 -0
- inference_gate/recording/atomic_io.py +46 -0
- inference_gate/recording/hashing.py +250 -0
- inference_gate/recording/models.py +256 -0
- inference_gate/recording/reassembly.py +348 -0
- inference_gate/recording/storage.py +1090 -0
- inference_gate/recording/tape_index.py +337 -0
- inference_gate/recording/tape_parser.py +286 -0
- inference_gate/recording/tape_writer.py +398 -0
- inference_gate/router/__init__.py +9 -0
- inference_gate/router/router.py +584 -0
- inference_gate/webui/__init__.py +12 -0
- inference_gate/webui/api.py +194 -0
- inference_gate/webui/server.py +197 -0
- inference_gate/webui/static/assets/index-3mjQG4Sn.js +11 -0
- inference_gate/webui/static/assets/index-DY74WqvV.css +1 -0
- inference_gate/webui/static/index.html +14 -0
- inference_gate/webui/static/vite.svg +1 -0
- inference_gate-0.1.0.dist-info/METADATA +355 -0
- inference_gate-0.1.0.dist-info/RECORD +40 -0
- inference_gate-0.1.0.dist-info/WHEEL +5 -0
- inference_gate-0.1.0.dist-info/entry_points.txt +5 -0
- inference_gate-0.1.0.dist-info/licenses/LICENSE +21 -0
- inference_gate-0.1.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"""
|
|
2
|
+
InferenceGate - AI inference replay for testing, debugging and development.
|
|
3
|
+
|
|
4
|
+
Provides tools to capture, store, and replay AI model inferences, enabling
|
|
5
|
+
developers to simulate scenarios and validate model behavior without repeated
|
|
6
|
+
live inferences.
|
|
7
|
+
"""
|
|
8
|
+
|
|
9
|
+
from inference_gate.inference_gate import InferenceGate
|
|
10
|
+
from inference_gate.modes import Mode
|
|
11
|
+
from inference_gate.recording.storage import CacheStorage
|
|
12
|
+
|
|
13
|
+
__version__ = "0.1.0"
|
|
14
|
+
__all__ = ["CacheStorage", "InferenceGate", "Mode", "__version__"]
|