entropic-engine 2.2.2__tar.gz → 2.2.9__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.2.2/python/src/entropic_engine.egg-info → entropic_engine-2.2.9}/PKG-INFO +1 -1
  2. entropic_engine-2.2.9/VERSION +1 -0
  3. {entropic_engine-2.2.2 → entropic_engine-2.2.9}/python/src/entropic/_bindings.py +4 -0
  4. {entropic_engine-2.2.2 → entropic_engine-2.2.9}/python/src/entropic/_bindings_manifest.py +3 -0
  5. {entropic_engine-2.2.2 → entropic_engine-2.2.9/python/src/entropic_engine.egg-info}/PKG-INFO +1 -1
  6. entropic_engine-2.2.2/VERSION +0 -1
  7. {entropic_engine-2.2.2 → entropic_engine-2.2.9}/AUTHORS +0 -0
  8. {entropic_engine-2.2.2 → entropic_engine-2.2.9}/LICENSE +0 -0
  9. {entropic_engine-2.2.2 → entropic_engine-2.2.9}/NOTICE +0 -0
  10. {entropic_engine-2.2.2 → entropic_engine-2.2.9}/README.md +0 -0
  11. {entropic_engine-2.2.2 → entropic_engine-2.2.9}/pyproject.toml +0 -0
  12. {entropic_engine-2.2.2 → entropic_engine-2.2.9}/python/src/entropic/__init__.py +0 -0
  13. {entropic_engine-2.2.2 → entropic_engine-2.2.9}/python/src/entropic/__main__.py +0 -0
  14. {entropic_engine-2.2.2 → entropic_engine-2.2.9}/python/src/entropic/_loader.py +0 -0
  15. {entropic_engine-2.2.2 → entropic_engine-2.2.9}/python/src/entropic/cli.py +0 -0
  16. {entropic_engine-2.2.2 → entropic_engine-2.2.9}/python/src/entropic/helpers.py +0 -0
  17. {entropic_engine-2.2.2 → entropic_engine-2.2.9}/python/src/entropic/hooks.py +0 -0
  18. {entropic_engine-2.2.2 → entropic_engine-2.2.9}/python/src/entropic/install_engine.py +0 -0
  19. {entropic_engine-2.2.2 → entropic_engine-2.2.9}/python/src/entropic/mcp.py +0 -0
  20. {entropic_engine-2.2.2 → entropic_engine-2.2.9}/python/src/entropic/py.typed +0 -0
  21. {entropic_engine-2.2.2 → entropic_engine-2.2.9}/python/src/entropic/streams.py +0 -0
  22. {entropic_engine-2.2.2 → entropic_engine-2.2.9}/python/src/entropic_engine.egg-info/SOURCES.txt +0 -0
  23. {entropic_engine-2.2.2 → entropic_engine-2.2.9}/python/src/entropic_engine.egg-info/dependency_links.txt +0 -0
  24. {entropic_engine-2.2.2 → entropic_engine-2.2.9}/python/src/entropic_engine.egg-info/entry_points.txt +0 -0
  25. {entropic_engine-2.2.2 → entropic_engine-2.2.9}/python/src/entropic_engine.egg-info/requires.txt +0 -0
  26. {entropic_engine-2.2.2 → entropic_engine-2.2.9}/python/src/entropic_engine.egg-info/top_level.txt +0 -0
  27. {entropic_engine-2.2.2 → entropic_engine-2.2.9}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: entropic-engine
3
- Version: 2.2.2
3
+ Version: 2.2.9
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.2.9
@@ -101,6 +101,7 @@ class EntropicError(enum.IntEnum):
101
101
  NO_VISION_TIER = 50
102
102
  QUEUE_FULL = 51
103
103
  SPECULATIVE_INCOMPATIBLE_ARCH = 52
104
+ TIER_MODEL_TOO_LARGE = 53
104
105
 
105
106
  class AgentState(enum.IntEnum):
106
107
  """Mirrors ``entropic_agent_state_t`` from the C header."""
@@ -227,6 +228,7 @@ class EntropicLogprobResult(ctypes.Structure):
227
228
  # ── Callback typedefs (named) ─────────────────
228
229
 
229
230
  HOOK_CB = ctypes.CFUNCTYPE(ctypes.c_int, ctypes.c_int, ctypes.c_char_p, ctypes.POINTER(ctypes.c_char_p), ctypes.c_void_p)
231
+ RESIDENCY_OBSERVER_CB = ctypes.CFUNCTYPE(None, ctypes.c_int, ctypes.c_char_p, ctypes.c_char_p, ctypes.c_size_t, ctypes.c_void_p)
230
232
  DELEGATION_START_CB = ctypes.CFUNCTYPE(ctypes.c_int, ctypes.POINTER(EntDelegationRequest), ctypes.c_void_p)
231
233
  DELEGATION_COMPLETE_CB = ctypes.CFUNCTYPE(ctypes.c_int, ctypes.POINTER(EntDelegationResult), ctypes.c_void_p)
232
234
  ATTEMPT_BOUNDARY_CB = ctypes.CFUNCTYPE(None, ctypes.c_int, ctypes.c_void_p)
@@ -269,6 +271,8 @@ entropic_user_message_queue_depth = _bind("entropic_user_message_queue_depth", c
269
271
  entropic_clear_user_message_queue = _bind("entropic_clear_user_message_queue", ctypes.c_int, entropic_handle_t)
270
272
  entropic_set_queue_observer = _bind("entropic_set_queue_observer", ctypes.c_int, entropic_handle_t, QUEUE_OBSERVER_CB, ctypes.c_void_p)
271
273
  entropic_speculative_compat = _bind("entropic_speculative_compat", ctypes.c_int, entropic_handle_t, ctypes.POINTER(ctypes.c_int), ctypes.POINTER(ctypes.c_char_p))
274
+ entropic_set_residency_observer = _bind("entropic_set_residency_observer", ctypes.c_int, entropic_handle_t, RESIDENCY_OBSERVER_CB, ctypes.c_void_p)
275
+ entropic_residency_snapshot = _bind("entropic_residency_snapshot", ctypes.c_int, entropic_handle_t, ctypes.POINTER(ctypes.c_char_p))
272
276
  entropic_context_clear = _bind("entropic_context_clear", ctypes.c_int, entropic_handle_t)
273
277
  entropic_context_get = _bind("entropic_context_get", ctypes.c_int, entropic_handle_t, ctypes.POINTER(ctypes.c_char_p))
274
278
  entropic_context_count = _bind("entropic_context_count", ctypes.c_int, entropic_handle_t, ctypes.POINTER(ctypes.c_size_t))
@@ -30,6 +30,7 @@ EXPORTS = frozenset(
30
30
  "HOOK_CALLBACK_CB",
31
31
  "HOOK_CB",
32
32
  "QUEUE_OBSERVER_CB",
33
+ "RESIDENCY_OBSERVER_CB",
33
34
  "STATE_OBSERVER_CB",
34
35
  "STREAM_OBSERVER_CB",
35
36
  "TOKEN_CB",
@@ -96,6 +97,7 @@ EXPORTS = frozenset(
96
97
  "entropic_register_compactor",
97
98
  "entropic_register_hook",
98
99
  "entropic_register_mcp_server",
100
+ "entropic_residency_snapshot",
99
101
  "entropic_revoke_mcp_key",
100
102
  "entropic_run",
101
103
  "entropic_run_messages",
@@ -106,6 +108,7 @@ EXPORTS = frozenset(
106
108
  "entropic_set_critique_callbacks",
107
109
  "entropic_set_delegation_callbacks",
108
110
  "entropic_set_queue_observer",
111
+ "entropic_set_residency_observer",
109
112
  "entropic_set_state_observer",
110
113
  "entropic_set_stream_observer",
111
114
  "entropic_speculative_compat",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: entropic-engine
3
- Version: 2.2.2
3
+ Version: 2.2.9
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.2.2
File without changes
File without changes
File without changes