dasein-core 0.2.12__py3-none-any.whl → 0.2.13__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.
- dasein/api.py +10 -1
- {dasein_core-0.2.12.dist-info → dasein_core-0.2.13.dist-info}/METADATA +1 -1
- {dasein_core-0.2.12.dist-info → dasein_core-0.2.13.dist-info}/RECORD +6 -6
- {dasein_core-0.2.12.dist-info → dasein_core-0.2.13.dist-info}/WHEEL +0 -0
- {dasein_core-0.2.12.dist-info → dasein_core-0.2.13.dist-info}/licenses/LICENSE +0 -0
- {dasein_core-0.2.12.dist-info → dasein_core-0.2.13.dist-info}/top_level.txt +0 -0
dasein/api.py
CHANGED
@@ -887,6 +887,11 @@ class CognateProxy:
|
|
887
887
|
# Wrap the agent's LLM with our trace capture wrapper
|
888
888
|
self._wrap_agent_llm()
|
889
889
|
|
890
|
+
# CRITICAL: Update langgraph_params to use wrapped LLM for recreation
|
891
|
+
if self._is_langgraph and self._langgraph_params and self._wrapped_llm:
|
892
|
+
print(f" [DASEIN][WRAPPER] Updating langgraph_params to use wrapped LLM")
|
893
|
+
self._langgraph_params['model'] = self._wrapped_llm
|
894
|
+
|
890
895
|
# Inject universal dead-letter tool
|
891
896
|
self._inject_deadletter_tool()
|
892
897
|
|
@@ -3841,7 +3846,11 @@ Follow these rules when planning your actions."""
|
|
3841
3846
|
print(f"[DASEIN] 🔧 Pre-loading embedding model for pipecleaner (found filter search rules)...")
|
3842
3847
|
from .pipecleaner import _get_embedding_model
|
3843
3848
|
try:
|
3844
|
-
|
3849
|
+
# Suppress protobuf warnings from sentence-transformers
|
3850
|
+
import warnings
|
3851
|
+
with warnings.catch_warnings():
|
3852
|
+
warnings.filterwarnings('ignore', category=Warning)
|
3853
|
+
_get_embedding_model() # Warm up the model
|
3845
3854
|
print(f"[DASEIN] ✅ Embedding model pre-loaded successfully")
|
3846
3855
|
except Exception as e:
|
3847
3856
|
print(f"[DASEIN] ⚠️ Failed to pre-load embedding model: {e}")
|
@@ -1,6 +1,6 @@
|
|
1
1
|
dasein/__init__.py,sha256=RY0lhaaWB6yJ_5YMRmaHDvQ0eFbc0BGbYNe5OVyxzYE,2316
|
2
2
|
dasein/advice_format.py,sha256=5-h4J24L_B2Y9dlmyDuIYtmPCWOGAYoinBEXqpcNg2s,5386
|
3
|
-
dasein/api.py,sha256=
|
3
|
+
dasein/api.py,sha256=qJVnKdeuCGsaDuwcPP6kiaEJKbO15DsPoMHtuNvSvuM,257060
|
4
4
|
dasein/capture.py,sha256=D4DvknI2wbmVup5WqvNcgw-zW5riEstYG81Rl98uz6o,110942
|
5
5
|
dasein/config.py,sha256=lXO8JG4RXbodn3gT5yEnuB0VRwWdrRVwhX3Rm06IZmU,1957
|
6
6
|
dasein/events.py,sha256=mG-lnOvQoZUhXbrPSjrG4RME6ywUcbSZ04PscoJ15GI,12896
|
@@ -45,7 +45,7 @@ dasein/services/post_run_client.py,sha256=UjK3eqf7oWGSuWkKe0vQmeMS0yUUOhYFD4-SZ7
|
|
45
45
|
dasein/services/pre_run_client.py,sha256=tXmz_PQaSfq0xwypiWUAqNkXOmREZ6EwXLC4OM89J-A,4317
|
46
46
|
dasein/services/service_adapter.py,sha256=YHk41lR3PXh8WTmxOzzwKf6hwPYGqIdApI92vQKlkAY,7350
|
47
47
|
dasein/services/service_config.py,sha256=8_4tpV4mZvfaOc5_yyHbOyL4rYsPHzkLTEY1rtYgLs8,1629
|
48
|
-
dasein_core-0.2.
|
48
|
+
dasein_core-0.2.13.dist-info/licenses/LICENSE,sha256=7FHjIFEKl_3hSc3tGUVEWmufC_3oi8rh_2zVuL7jMKs,1091
|
49
49
|
dasein/models/en_core_web_sm/en_core_web_sm-3.7.1.dist-info/LICENSE,sha256=OTPBdpebaLxtC8yQLH1sEw8dEn9Hbxe6XNuo2Zz9ABI,1056
|
50
50
|
dasein/models/en_core_web_sm/en_core_web_sm-3.7.1.dist-info/LICENSES_SOURCES,sha256=INnfrNIVESJR8VNB7dGkex-Yvzk6IS8Q8ZT_3H7pipA,2347
|
51
51
|
dasein/models/en_core_web_sm/en_core_web_sm-3.7.1.dist-info/METADATA,sha256=-vGqRxa_M2RwKtLjBhc4JlBQdJ3k7CwOnseT_ReYcic,2958
|
@@ -53,7 +53,7 @@ dasein/models/en_core_web_sm/en_core_web_sm-3.7.1.dist-info/RECORD,sha256=dDb6U7
|
|
53
53
|
dasein/models/en_core_web_sm/en_core_web_sm-3.7.1.dist-info/WHEEL,sha256=Xo9-1PvkuimrydujYJAjF7pCkriuXBpUPEjma1nZyJ0,92
|
54
54
|
dasein/models/en_core_web_sm/en_core_web_sm-3.7.1.dist-info/entry_points.txt,sha256=OkWs-KxPJtDdpvIFCVXzDC9ECtejhPxv7pP3Tgk2cNg,47
|
55
55
|
dasein/models/en_core_web_sm/en_core_web_sm-3.7.1.dist-info/top_level.txt,sha256=56OIuRbEuhr12HsM9XpCMnTtHRMgNC5Hje4Xeo8wF2c,15
|
56
|
-
dasein_core-0.2.
|
57
|
-
dasein_core-0.2.
|
58
|
-
dasein_core-0.2.
|
59
|
-
dasein_core-0.2.
|
56
|
+
dasein_core-0.2.13.dist-info/METADATA,sha256=dnUU3veXoiKLGCw4QWJ7Zjc3aKgiXS6ZYPbnizjrERQ,10297
|
57
|
+
dasein_core-0.2.13.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
58
|
+
dasein_core-0.2.13.dist-info/top_level.txt,sha256=6yYY9kltjvvPsg9K6KyMKRtzEr5qM7sHXN7VzmrDtp0,7
|
59
|
+
dasein_core-0.2.13.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|