entropic-engine 2.3.8__tar.gz → 2.4.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.
Files changed (27) hide show
  1. {entropic_engine-2.3.8/python/src/entropic_engine.egg-info → entropic_engine-2.4.0}/PKG-INFO +1 -1
  2. entropic_engine-2.4.0/VERSION +1 -0
  3. {entropic_engine-2.3.8 → entropic_engine-2.4.0}/python/src/entropic/_bindings.py +2 -0
  4. {entropic_engine-2.3.8 → entropic_engine-2.4.0}/python/src/entropic/_bindings_manifest.py +2 -0
  5. {entropic_engine-2.3.8 → entropic_engine-2.4.0/python/src/entropic_engine.egg-info}/PKG-INFO +1 -1
  6. entropic_engine-2.3.8/VERSION +0 -1
  7. {entropic_engine-2.3.8 → entropic_engine-2.4.0}/AUTHORS +0 -0
  8. {entropic_engine-2.3.8 → entropic_engine-2.4.0}/LICENSE +0 -0
  9. {entropic_engine-2.3.8 → entropic_engine-2.4.0}/NOTICE +0 -0
  10. {entropic_engine-2.3.8 → entropic_engine-2.4.0}/README.md +0 -0
  11. {entropic_engine-2.3.8 → entropic_engine-2.4.0}/pyproject.toml +0 -0
  12. {entropic_engine-2.3.8 → entropic_engine-2.4.0}/python/src/entropic/__init__.py +0 -0
  13. {entropic_engine-2.3.8 → entropic_engine-2.4.0}/python/src/entropic/__main__.py +0 -0
  14. {entropic_engine-2.3.8 → entropic_engine-2.4.0}/python/src/entropic/_loader.py +0 -0
  15. {entropic_engine-2.3.8 → entropic_engine-2.4.0}/python/src/entropic/cli.py +0 -0
  16. {entropic_engine-2.3.8 → entropic_engine-2.4.0}/python/src/entropic/helpers.py +0 -0
  17. {entropic_engine-2.3.8 → entropic_engine-2.4.0}/python/src/entropic/hooks.py +0 -0
  18. {entropic_engine-2.3.8 → entropic_engine-2.4.0}/python/src/entropic/install_engine.py +0 -0
  19. {entropic_engine-2.3.8 → entropic_engine-2.4.0}/python/src/entropic/mcp.py +0 -0
  20. {entropic_engine-2.3.8 → entropic_engine-2.4.0}/python/src/entropic/py.typed +0 -0
  21. {entropic_engine-2.3.8 → entropic_engine-2.4.0}/python/src/entropic/streams.py +0 -0
  22. {entropic_engine-2.3.8 → entropic_engine-2.4.0}/python/src/entropic_engine.egg-info/SOURCES.txt +0 -0
  23. {entropic_engine-2.3.8 → entropic_engine-2.4.0}/python/src/entropic_engine.egg-info/dependency_links.txt +0 -0
  24. {entropic_engine-2.3.8 → entropic_engine-2.4.0}/python/src/entropic_engine.egg-info/entry_points.txt +0 -0
  25. {entropic_engine-2.3.8 → entropic_engine-2.4.0}/python/src/entropic_engine.egg-info/requires.txt +0 -0
  26. {entropic_engine-2.3.8 → entropic_engine-2.4.0}/python/src/entropic_engine.egg-info/top_level.txt +0 -0
  27. {entropic_engine-2.3.8 → entropic_engine-2.4.0}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: entropic-engine
3
- Version: 2.3.8
3
+ Version: 2.4.0
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.4.0
@@ -278,6 +278,8 @@ entropic_context_clear = _bind("entropic_context_clear", ctypes.c_int, entropic_
278
278
  entropic_context_get = _bind("entropic_context_get", ctypes.c_int, entropic_handle_t, ctypes.POINTER(ctypes.c_char_p))
279
279
  entropic_context_count = _bind("entropic_context_count", ctypes.c_int, entropic_handle_t, ctypes.POINTER(ctypes.c_size_t))
280
280
  entropic_context_usage = _bind("entropic_context_usage", ctypes.c_int, entropic_handle_t, ctypes.POINTER(ctypes.c_size_t), ctypes.POINTER(ctypes.c_size_t))
281
+ entropic_state_save = _bind("entropic_state_save", ctypes.c_int, entropic_handle_t, ctypes.c_char_p, ctypes.c_char_p)
282
+ entropic_state_load = _bind("entropic_state_load", ctypes.c_int, entropic_handle_t, ctypes.c_char_p, ctypes.c_char_p)
281
283
  entropic_metrics_json = _bind("entropic_metrics_json", ctypes.c_int, entropic_handle_t, ctypes.POINTER(ctypes.c_char_p))
282
284
  entropic_set_delegation_callbacks = _bind("entropic_set_delegation_callbacks", ctypes.c_int, entropic_handle_t, DELEGATION_START_CB, DELEGATION_COMPLETE_CB, ctypes.c_void_p)
283
285
  entropic_validation_set_auto_retry = _bind("entropic_validation_set_auto_retry", ctypes.c_int, entropic_handle_t, ctypes.c_int)
@@ -113,6 +113,8 @@ EXPORTS = frozenset(
113
113
  "entropic_set_state_observer",
114
114
  "entropic_set_stream_observer",
115
115
  "entropic_speculative_compat",
116
+ "entropic_state_load",
117
+ "entropic_state_save",
116
118
  "entropic_storage_close",
117
119
  "entropic_storage_open",
118
120
  "entropic_throughput_reset",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: entropic-engine
3
- Version: 2.3.8
3
+ Version: 2.4.0
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.3.8
File without changes
File without changes
File without changes