Fix QdrantStore.all_records missing with_vectors=True

Qdrant's scroll() defaults to returning only payloads, not vectors.
Without with_vectors=True, all 1963 records had empty embeddings,
causing community detection to fail (0 communities) and topology
to show insufficient_data. Now 1959/1963 records have 1024-dim
embeddings and 1844 communities are detected.
This commit is contained in:
Apunkt 2026-06-12 17:54:44 +02:00
parent 344e5edaa8
commit 1b7c89de3b
No known key found for this signature in database

View file

@ -644,6 +644,7 @@ class QdrantStore:
offset=offset,
scroll_filter=table_filter,
with_payload=True,
with_vectors=True,
)
all_points.extend(points)
if next_offset is None: