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:
parent
344e5edaa8
commit
1b7c89de3b
1 changed files with 1 additions and 0 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue