entropic-engine 2.7.6__tar.gz → 2.8.2__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.
Files changed (27) hide show
  1. {entropic_engine-2.7.6/python/src/entropic_engine.egg-info → entropic_engine-2.8.2}/PKG-INFO +1 -1
  2. entropic_engine-2.8.2/VERSION +1 -0
  3. {entropic_engine-2.7.6 → entropic_engine-2.8.2}/python/src/entropic/_bindings.py +2 -0
  4. {entropic_engine-2.7.6 → entropic_engine-2.8.2}/python/src/entropic/_bindings_manifest.py +2 -0
  5. {entropic_engine-2.7.6 → entropic_engine-2.8.2/python/src/entropic_engine.egg-info}/PKG-INFO +1 -1
  6. entropic_engine-2.7.6/VERSION +0 -1
  7. {entropic_engine-2.7.6 → entropic_engine-2.8.2}/AUTHORS +0 -0
  8. {entropic_engine-2.7.6 → entropic_engine-2.8.2}/LICENSE +0 -0
  9. {entropic_engine-2.7.6 → entropic_engine-2.8.2}/NOTICE +0 -0
  10. {entropic_engine-2.7.6 → entropic_engine-2.8.2}/README.md +0 -0
  11. {entropic_engine-2.7.6 → entropic_engine-2.8.2}/pyproject.toml +0 -0
  12. {entropic_engine-2.7.6 → entropic_engine-2.8.2}/python/src/entropic/__init__.py +0 -0
  13. {entropic_engine-2.7.6 → entropic_engine-2.8.2}/python/src/entropic/__main__.py +0 -0
  14. {entropic_engine-2.7.6 → entropic_engine-2.8.2}/python/src/entropic/_loader.py +0 -0
  15. {entropic_engine-2.7.6 → entropic_engine-2.8.2}/python/src/entropic/cli.py +0 -0
  16. {entropic_engine-2.7.6 → entropic_engine-2.8.2}/python/src/entropic/helpers.py +0 -0
  17. {entropic_engine-2.7.6 → entropic_engine-2.8.2}/python/src/entropic/hooks.py +0 -0
  18. {entropic_engine-2.7.6 → entropic_engine-2.8.2}/python/src/entropic/install_engine.py +0 -0
  19. {entropic_engine-2.7.6 → entropic_engine-2.8.2}/python/src/entropic/mcp.py +0 -0
  20. {entropic_engine-2.7.6 → entropic_engine-2.8.2}/python/src/entropic/py.typed +0 -0
  21. {entropic_engine-2.7.6 → entropic_engine-2.8.2}/python/src/entropic/streams.py +0 -0
  22. {entropic_engine-2.7.6 → entropic_engine-2.8.2}/python/src/entropic_engine.egg-info/SOURCES.txt +0 -0
  23. {entropic_engine-2.7.6 → entropic_engine-2.8.2}/python/src/entropic_engine.egg-info/dependency_links.txt +0 -0
  24. {entropic_engine-2.7.6 → entropic_engine-2.8.2}/python/src/entropic_engine.egg-info/entry_points.txt +0 -0
  25. {entropic_engine-2.7.6 → entropic_engine-2.8.2}/python/src/entropic_engine.egg-info/requires.txt +0 -0
  26. {entropic_engine-2.7.6 → entropic_engine-2.8.2}/python/src/entropic_engine.egg-info/top_level.txt +0 -0
  27. {entropic_engine-2.7.6 → entropic_engine-2.8.2}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: entropic-engine
3
- Version: 2.7.6
3
+ Version: 2.8.2
4
4
  Summary: Local-first agentic inference engine — Python wrapper over librentropic.so
5
5
  Author: Tristan VanFossen
6
6
  License-Expression: Apache-2.0
@@ -0,0 +1 @@
1
+ 2.8.2
@@ -260,6 +260,8 @@ entropic_seconds_since_last_activity = _bind("entropic_seconds_since_last_activi
260
260
  entropic_alloc = _bind("entropic_alloc", ctypes.c_void_p, ctypes.c_size_t)
261
261
  entropic_free = _bind("entropic_free", None, ctypes.c_void_p)
262
262
  entropic_run = _bind("entropic_run", ctypes.c_int, entropic_handle_t, ctypes.c_char_p, ctypes.POINTER(ctypes.c_char_p))
263
+ entropic_run_as = _bind("entropic_run_as", ctypes.c_int, entropic_handle_t, ctypes.c_char_p, ctypes.c_char_p, ctypes.POINTER(ctypes.c_char_p))
264
+ entropic_run_batch = _bind("entropic_run_batch", ctypes.c_int, entropic_handle_t, ctypes.POINTER(ctypes.c_char_p), ctypes.POINTER(ctypes.c_char_p), ctypes.c_size_t, ctypes.POINTER(ctypes.c_char_p))
263
265
  entropic_run_streaming = _bind("entropic_run_streaming", ctypes.c_int, entropic_handle_t, ctypes.c_char_p, TOKEN_CB, ctypes.c_void_p, ctypes.POINTER(ctypes.c_int))
264
266
  entropic_run_messages = _bind("entropic_run_messages", ctypes.c_int, entropic_handle_t, ctypes.c_char_p, ctypes.POINTER(ctypes.c_char_p))
265
267
  entropic_run_messages_streaming = _bind("entropic_run_messages_streaming", ctypes.c_int, entropic_handle_t, ctypes.c_char_p, TOKEN_CB, ctypes.c_void_p, ctypes.POINTER(ctypes.c_int))
@@ -100,6 +100,8 @@ EXPORTS = frozenset(
100
100
  "entropic_residency_snapshot",
101
101
  "entropic_revoke_mcp_key",
102
102
  "entropic_run",
103
+ "entropic_run_as",
104
+ "entropic_run_batch",
103
105
  "entropic_run_messages",
104
106
  "entropic_run_messages_streaming",
105
107
  "entropic_run_streaming",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: entropic-engine
3
- Version: 2.7.6
3
+ Version: 2.8.2
4
4
  Summary: Local-first agentic inference engine — Python wrapper over librentropic.so
5
5
  Author: Tristan VanFossen
6
6
  License-Expression: Apache-2.0
@@ -1 +0,0 @@
1
- 2.7.6
File without changes
File without changes
File without changes