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.
Files changed (40) hide show
  1. inference_gate/__init__.py +14 -0
  2. inference_gate/cli.py +1227 -0
  3. inference_gate/cli_format.py +323 -0
  4. inference_gate/config.py +267 -0
  5. inference_gate/frontend/__init__.py +5 -0
  6. inference_gate/headers.py +274 -0
  7. inference_gate/inference_gate.py +229 -0
  8. inference_gate/inflow/__init__.py +9 -0
  9. inference_gate/inflow/admin.py +597 -0
  10. inference_gate/inflow/server.py +202 -0
  11. inference_gate/modes.py +23 -0
  12. inference_gate/outflow/__init__.py +10 -0
  13. inference_gate/outflow/client.py +164 -0
  14. inference_gate/outflow/model_router.py +277 -0
  15. inference_gate/pytest_context.py +118 -0
  16. inference_gate/pytest_plugin.py +537 -0
  17. inference_gate/recording/__init__.py +25 -0
  18. inference_gate/recording/atomic_io.py +46 -0
  19. inference_gate/recording/hashing.py +250 -0
  20. inference_gate/recording/models.py +256 -0
  21. inference_gate/recording/reassembly.py +348 -0
  22. inference_gate/recording/storage.py +1090 -0
  23. inference_gate/recording/tape_index.py +337 -0
  24. inference_gate/recording/tape_parser.py +286 -0
  25. inference_gate/recording/tape_writer.py +398 -0
  26. inference_gate/router/__init__.py +9 -0
  27. inference_gate/router/router.py +584 -0
  28. inference_gate/webui/__init__.py +12 -0
  29. inference_gate/webui/api.py +194 -0
  30. inference_gate/webui/server.py +197 -0
  31. inference_gate/webui/static/assets/index-3mjQG4Sn.js +11 -0
  32. inference_gate/webui/static/assets/index-DY74WqvV.css +1 -0
  33. inference_gate/webui/static/index.html +14 -0
  34. inference_gate/webui/static/vite.svg +1 -0
  35. inference_gate-0.1.0.dist-info/METADATA +355 -0
  36. inference_gate-0.1.0.dist-info/RECORD +40 -0
  37. inference_gate-0.1.0.dist-info/WHEEL +5 -0
  38. inference_gate-0.1.0.dist-info/entry_points.txt +5 -0
  39. inference_gate-0.1.0.dist-info/licenses/LICENSE +21 -0
  40. 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__"]