zep-crewai 1.1.0__py3-none-any.whl → 1.1.1__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.
- zep_crewai/graph_storage.py +1 -1
- zep_crewai/memory.py +2 -2
- zep_crewai/user_storage.py +1 -1
- {zep_crewai-1.1.0.dist-info → zep_crewai-1.1.1.dist-info}/METADATA +1 -1
- zep_crewai-1.1.1.dist-info/RECORD +10 -0
- zep_crewai-1.1.0.dist-info/RECORD +0 -10
- {zep_crewai-1.1.0.dist-info → zep_crewai-1.1.1.dist-info}/WHEEL +0 -0
zep_crewai/graph_storage.py
CHANGED
@@ -127,7 +127,7 @@ class ZepGraphStorage(Storage):
|
|
127
127
|
if context:
|
128
128
|
self._logger.info(f"Composed context for query: {query}")
|
129
129
|
return [
|
130
|
-
{"
|
130
|
+
{"context": context, "type": "graph_context", "source": "graph", "query": query}
|
131
131
|
]
|
132
132
|
|
133
133
|
self._logger.info(f"No results found for query: {query}")
|
zep_crewai/memory.py
CHANGED
@@ -156,10 +156,10 @@ class ZepStorage(Storage):
|
|
156
156
|
self._logger.debug(f"Failed to search user memories: {e}")
|
157
157
|
|
158
158
|
if thread_context and hasattr(thread_context, "context") and thread_context.context:
|
159
|
-
results.append({"
|
159
|
+
results.append({"context": thread_context.context})
|
160
160
|
|
161
161
|
for result in edges_search_results:
|
162
|
-
results.append({"
|
162
|
+
results.append({"context": result})
|
163
163
|
|
164
164
|
return results
|
165
165
|
|
zep_crewai/user_storage.py
CHANGED
@@ -0,0 +1,10 @@
|
|
1
|
+
zep_crewai/__init__.py,sha256=Cv-cAbPf7VDS4iQGXQsgN0LVrVotBlwfmVfJ4P-qUkk,1958
|
2
|
+
zep_crewai/exceptions.py,sha256=buRZJt5TDankN7PvLq_u0wDlQ0Sp6LKXroS1qTj6koY,403
|
3
|
+
zep_crewai/graph_storage.py,sha256=1XqG40E4WZzN-Mh8r1NXlIvfE5yYVlnzngM_0VCmrZA,4798
|
4
|
+
zep_crewai/memory.py,sha256=1Zn8qSJ3Nuxg26m9MszqwtIGV1J7qxI4XkNOCn1fQrU,6084
|
5
|
+
zep_crewai/tools.py,sha256=S0Pk5UZMkajX3QebU-kKfAz2bkyAjiUjBOijUC3Jlbk,10649
|
6
|
+
zep_crewai/user_storage.py,sha256=97qMVhM3TgMPD9UWvv06OX6Hq3epYm7lwpArC8921v0,6869
|
7
|
+
zep_crewai/utils.py,sha256=Xu0aRNMYbhHz1a8H93E4uhhDyWI51zEbPBobb7mc3BM,4550
|
8
|
+
zep_crewai-1.1.1.dist-info/METADATA,sha256=fGx_CF58iuebTbQX9J_ZvwzuyYzLMxiw5KY3yKX3OYE,10846
|
9
|
+
zep_crewai-1.1.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
10
|
+
zep_crewai-1.1.1.dist-info/RECORD,,
|
@@ -1,10 +0,0 @@
|
|
1
|
-
zep_crewai/__init__.py,sha256=Cv-cAbPf7VDS4iQGXQsgN0LVrVotBlwfmVfJ4P-qUkk,1958
|
2
|
-
zep_crewai/exceptions.py,sha256=buRZJt5TDankN7PvLq_u0wDlQ0Sp6LKXroS1qTj6koY,403
|
3
|
-
zep_crewai/graph_storage.py,sha256=HhrM7GyYbXeKMtbtFy-X-OIMNlXprB7t3uik9uqsdJ4,4797
|
4
|
-
zep_crewai/memory.py,sha256=lhoOsmJK6Yfe9OULt7OQ98Rk963pCY9_HGbHTnA22u8,6082
|
5
|
-
zep_crewai/tools.py,sha256=S0Pk5UZMkajX3QebU-kKfAz2bkyAjiUjBOijUC3Jlbk,10649
|
6
|
-
zep_crewai/user_storage.py,sha256=9hZflCRVjRptgdkaieSVXBEetDqUGC-v50-3YI8zzos,6868
|
7
|
-
zep_crewai/utils.py,sha256=Xu0aRNMYbhHz1a8H93E4uhhDyWI51zEbPBobb7mc3BM,4550
|
8
|
-
zep_crewai-1.1.0.dist-info/METADATA,sha256=VMtemgCu3OdMOj3FLaFBjKR08KNeBqhdwUsGBm9H2L4,10846
|
9
|
-
zep_crewai-1.1.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
10
|
-
zep_crewai-1.1.0.dist-info/RECORD,,
|
File without changes
|