vanna 2.0.0__py3-none-any.whl → 2.0.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.
- vanna/integrations/chromadb/agent_memory.py +4 -0
- vanna/integrations/faiss/agent_memory.py +4 -0
- vanna/integrations/qdrant/agent_memory.py +5 -0
- {vanna-2.0.0.dist-info → vanna-2.0.1.dist-info}/METADATA +1 -1
- {vanna-2.0.0.dist-info → vanna-2.0.1.dist-info}/RECORD +8 -8
- {vanna-2.0.0.dist-info → vanna-2.0.1.dist-info}/WHEEL +0 -0
- {vanna-2.0.0.dist-info → vanna-2.0.1.dist-info}/entry_points.txt +0 -0
- {vanna-2.0.0.dist-info → vanna-2.0.1.dist-info}/licenses/LICENSE +0 -0
|
@@ -215,6 +215,10 @@ class ChromaAgentMemory(AgentMemory):
|
|
|
215
215
|
for i, (doc_id, metadata) in enumerate(
|
|
216
216
|
zip(results["ids"], results["metadatas"])
|
|
217
217
|
):
|
|
218
|
+
# Skip text memories - they have is_text_memory flag
|
|
219
|
+
if metadata.get("is_text_memory"):
|
|
220
|
+
continue
|
|
221
|
+
|
|
218
222
|
args = json.loads(metadata.get("args_json", "{}"))
|
|
219
223
|
metadata_dict = json.loads(metadata.get("metadata_json", "{}"))
|
|
220
224
|
|
|
@@ -218,6 +218,10 @@ class FAISSAgentMemory(AgentMemory):
|
|
|
218
218
|
|
|
219
219
|
memories = []
|
|
220
220
|
for entry in sorted_entries[:limit]:
|
|
221
|
+
# Skip text memories - they have is_text_memory flag
|
|
222
|
+
if entry.get("is_text_memory"):
|
|
223
|
+
continue
|
|
224
|
+
|
|
221
225
|
memory = ToolMemory(
|
|
222
226
|
memory_id=entry["memory_id"],
|
|
223
227
|
question=entry["question"],
|
|
@@ -215,6 +215,11 @@ class QdrantAgentMemory(AgentMemory):
|
|
|
215
215
|
memories = []
|
|
216
216
|
for point in sorted_points[:limit]:
|
|
217
217
|
payload = point.payload
|
|
218
|
+
|
|
219
|
+
# Skip text memories - they have is_text_memory flag
|
|
220
|
+
if payload.get("is_text_memory"):
|
|
221
|
+
continue
|
|
222
|
+
|
|
218
223
|
memory = ToolMemory(
|
|
219
224
|
memory_id=str(point.id),
|
|
220
225
|
question=payload["question"],
|
|
@@ -128,13 +128,13 @@ vanna/integrations/azuresearch/agent_memory.py,sha256=zzGQmPOgrkLy5PA63joDa5Eprr
|
|
|
128
128
|
vanna/integrations/bigquery/__init__.py,sha256=Sw-krShPv3nOLQIfVQSflCQWXqIQ-gF_eCuE6GHatNY,108
|
|
129
129
|
vanna/integrations/bigquery/sql_runner.py,sha256=65CcGdX6kxOS5wUGSQ558w4_0oH412tV0f5jVwDczx0,2691
|
|
130
130
|
vanna/integrations/chromadb/__init__.py,sha256=sPumYrf9hMVgEHh6rzXdWu9OrVkOucA5_HkQ4LXfIUY,3642
|
|
131
|
-
vanna/integrations/chromadb/agent_memory.py,sha256=
|
|
131
|
+
vanna/integrations/chromadb/agent_memory.py,sha256=3s06jDc4v1m6MHSMLM3PKza9Em0Pm2hE6NMbGqD8HmU,14833
|
|
132
132
|
vanna/integrations/clickhouse/__init__.py,sha256=Ke7P4HrHtgJZTfCnKv2P8flAS6IY-luZLtJCZmDlCig,114
|
|
133
133
|
vanna/integrations/clickhouse/sql_runner.py,sha256=195z-Uij69AwyPOW3nO6ipjgGfA0oJ1TgxLcsGa7VtE,2350
|
|
134
134
|
vanna/integrations/duckdb/__init__.py,sha256=kQiTv0Z5ozcIpL8FaZpZeYfxgbE6eteqIwjlbaqV4Ig,102
|
|
135
135
|
vanna/integrations/duckdb/sql_runner.py,sha256=YOSp8YjoLBiyQ9RU_SKx8p1K4pIfg7d-ET3JT0siXUc,2088
|
|
136
136
|
vanna/integrations/faiss/__init__.py,sha256=NYCQIJFd-vGocpC9tV6pSvNa7_-1aBiYXBJfimKPgdc,120
|
|
137
|
-
vanna/integrations/faiss/agent_memory.py,sha256=
|
|
137
|
+
vanna/integrations/faiss/agent_memory.py,sha256=e8fVMRXLutViI8SRst4OccQmDYEpeGF8VCsOPVkxdmo,14370
|
|
138
138
|
vanna/integrations/google/__init__.py,sha256=NaQhnwHA9u7gY4Ohw7jxldMOueoFT3eiRFQaS6kukmY,159
|
|
139
139
|
vanna/integrations/google/gemini.py,sha256=mOI_9vpyZLRpuxy6aCXbuLgxAtpPkgneBGf8ovJJdxg,13091
|
|
140
140
|
vanna/integrations/hive/__init__.py,sha256=SXCrTNqxCZ-RtJkENp9etw6l_XuPIPULGRUiX6tZgrM,96
|
|
@@ -176,7 +176,7 @@ vanna/integrations/premium/agent_memory/premium.py,sha256=CbHm1leR4h8cgotErbTMZF
|
|
|
176
176
|
vanna/integrations/presto/__init__.py,sha256=OAwhistqxKtAtC7o3S9t8ko2q7zd-wo3hcNTsNvNGEg,102
|
|
177
177
|
vanna/integrations/presto/sql_runner.py,sha256=fE-VP8cWI1x0PILxb0YodlBGvl2FWDLy7o_z6O0IaeU,3556
|
|
178
178
|
vanna/integrations/qdrant/__init__.py,sha256=1y-5knDI3LHrnDr-SCfBVYIXNXQKTgumaQDZkQ0Hp28,123
|
|
179
|
-
vanna/integrations/qdrant/agent_memory.py,sha256=
|
|
179
|
+
vanna/integrations/qdrant/agent_memory.py,sha256=uqTmq0u1RFmh9_TG2TtcbwRCosZW5E3u6v92yAzylBQ,15752
|
|
180
180
|
vanna/integrations/snowflake/__init__.py,sha256=7OPjDlyB-v61NYeAos-xAUwj1F-q6evwT9DUw3LUZw0,111
|
|
181
181
|
vanna/integrations/snowflake/sql_runner.py,sha256=qFMWkuMfKt0pCuSut2VVcNvFLxp07RhVT2QTGsp_L7c,5303
|
|
182
182
|
vanna/integrations/sqlite/__init__.py,sha256=1iM-djlwwGBpLiIAV-s5jQ5QZNybrFaW--pEPkp3H4Y,146
|
|
@@ -282,8 +282,8 @@ vanna/tools/run_sql.py,sha256=RGptT_cRfD6FP-3MnTS_pgYahWJbDSb3gv3yZ-5sR3g,6951
|
|
|
282
282
|
vanna/tools/visualize_data.py,sha256=qgPMTxEAmbtJjb2j-qtAG1ZwtzvBvd8gdkzGMki_YGE,7551
|
|
283
283
|
vanna/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
284
284
|
vanna/web_components/__init__.py,sha256=QLzEJU3ersllv4pgZpaKdws3S3u5vDyTyUivawMc4A0,1040
|
|
285
|
-
vanna-2.0.
|
|
286
|
-
vanna-2.0.
|
|
287
|
-
vanna-2.0.
|
|
288
|
-
vanna-2.0.
|
|
289
|
-
vanna-2.0.
|
|
285
|
+
vanna-2.0.1.dist-info/entry_points.txt,sha256=lWU4rLAVNmrWnY6E66z_2TQW3QHU2Kzhwu2qvC6EBrs,62
|
|
286
|
+
vanna-2.0.1.dist-info/licenses/LICENSE,sha256=VYiPMMDqj9BcxUkAYqrAzJpn5tCFXCrnglfRqS5l9Rk,1065
|
|
287
|
+
vanna-2.0.1.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
|
|
288
|
+
vanna-2.0.1.dist-info/METADATA,sha256=6eTDvS_ohU3WNtJwlBvGg1doY2hqDZmt7xnPjuV5Hrs,16519
|
|
289
|
+
vanna-2.0.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|