555e282cc4
pi-agent-plugin checks / lint (push) Has been cancelled
pi-agent-plugin checks / test (20) (push) Has been cancelled
pi-agent-plugin checks / test (22) (push) Has been cancelled
pi-agent-plugin checks / build (push) Has been cancelled
TypeScript SDK CI / check_changes (push) Has been cancelled
TypeScript SDK CI / changelog_check (push) Has been cancelled
ci / changelog_check (push) Has been cancelled
ci / check_changes (push) Has been cancelled
ci / build_mem0 (3.10) (push) Has been cancelled
ci / build_mem0 (3.11) (push) Has been cancelled
ci / build_mem0 (3.12) (push) Has been cancelled
CLI Node CI / lint (push) Has been cancelled
CLI Node CI / test (20) (push) Has been cancelled
CLI Node CI / test (22) (push) Has been cancelled
CLI Node CI / build (push) Has been cancelled
CLI Python CI / lint (push) Has been cancelled
CLI Python CI / test (3.10) (push) Has been cancelled
CLI Python CI / test (3.11) (push) Has been cancelled
CLI Python CI / test (3.12) (push) Has been cancelled
CLI Python CI / build (push) Has been cancelled
openclaw checks / lint (push) Has been cancelled
openclaw checks / test (20) (push) Has been cancelled
openclaw checks / test (22) (push) Has been cancelled
openclaw checks / build (push) Has been cancelled
opencode-plugin checks / build (push) Has been cancelled
TypeScript SDK CI / build_ts_sdk (20) (push) Has been cancelled
TypeScript SDK CI / build_ts_sdk (22) (push) Has been cancelled
TypeScript SDK CI / integration_ts_sdk (20) (push) Has been cancelled
TypeScript SDK CI / integration_ts_sdk (22) (push) Has been cancelled
599 lines
24 KiB
Python
599 lines
24 KiB
Python
import logging
|
|
import re
|
|
from typing import Optional
|
|
|
|
from qdrant_client import QdrantClient, models
|
|
from qdrant_client.models import (
|
|
DatetimeRange,
|
|
Distance,
|
|
FieldCondition,
|
|
Filter,
|
|
MatchAny,
|
|
MatchExcept,
|
|
MatchText,
|
|
MatchValue,
|
|
PointIdsList,
|
|
PointStruct,
|
|
PointVectors,
|
|
Range,
|
|
SparseVector,
|
|
SparseVectorParams,
|
|
VectorParams,
|
|
)
|
|
|
|
from mem0.vector_stores.base import VectorStoreBase
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class Qdrant(VectorStoreBase):
|
|
def __init__(
|
|
self,
|
|
collection_name: str,
|
|
embedding_model_dims: int,
|
|
client: QdrantClient = None,
|
|
host: str = None,
|
|
port: int = None,
|
|
path: str = None,
|
|
url: str = None,
|
|
api_key: str = None,
|
|
https: bool | None = None,
|
|
on_disk: bool = False,
|
|
):
|
|
"""
|
|
Initialize the Qdrant vector store.
|
|
|
|
Args:
|
|
collection_name (str): Name of the collection.
|
|
embedding_model_dims (int): Dimensions of the embedding model.
|
|
client (QdrantClient, optional): Existing Qdrant client instance. Defaults to None.
|
|
host (str, optional): Host address for Qdrant server. Defaults to None.
|
|
port (int, optional): Port for Qdrant server. Defaults to None.
|
|
path (str, optional): Path for local Qdrant database. Defaults to None.
|
|
url (str, optional): Full URL for Qdrant server. Defaults to None.
|
|
api_key (str, optional): API key for Qdrant server. Defaults to None.
|
|
https (bool, optional): Whether to force HTTPS on or off. Explicit schemes in url take precedence.
|
|
Defaults to None.
|
|
on_disk (bool, optional): Enables persistent storage. Vectors are stored on disk (True) or in memory (False).
|
|
Does not delete the local database path. Defaults to False.
|
|
"""
|
|
if client:
|
|
self.client = client
|
|
self.is_local = False
|
|
else:
|
|
params = {}
|
|
if api_key:
|
|
params["api_key"] = api_key
|
|
if url:
|
|
params["url"] = url
|
|
if host and port:
|
|
params["host"] = host
|
|
params["port"] = port
|
|
if https is not None:
|
|
params["https"] = https
|
|
|
|
if not params:
|
|
params["path"] = path
|
|
self.is_local = True
|
|
else:
|
|
self.is_local = False
|
|
|
|
self.client = QdrantClient(**params)
|
|
|
|
self.collection_name = collection_name
|
|
self.embedding_model_dims = embedding_model_dims
|
|
self.on_disk = on_disk
|
|
self._bm25_encoder = None
|
|
# Whether this collection has the `bm25` named sparse vector slot.
|
|
# Pre-v3 collections lack it; writing a `bm25` sparse vector into such a
|
|
# collection is rejected by Qdrant ("Not existing vector name error: bm25").
|
|
self._has_bm25_slot = False
|
|
self.create_col(embedding_model_dims, on_disk)
|
|
|
|
def _get_bm25_encoder(self):
|
|
"""Lazy-load the BM25 sparse text encoder (fastembed)."""
|
|
if self._bm25_encoder is None:
|
|
try:
|
|
from fastembed import SparseTextEmbedding
|
|
self._bm25_encoder = SparseTextEmbedding(model_name="Qdrant/bm25")
|
|
logger.info("BM25 encoder loaded (fastembed Qdrant/bm25)")
|
|
except ImportError:
|
|
logger.warning(
|
|
"fastembed not installed - BM25 keyword search disabled. "
|
|
'Install it with: pip install "mem0ai[extras]"'
|
|
)
|
|
self._bm25_encoder = False # sentinel: tried and failed
|
|
except Exception as e:
|
|
logger.warning(f"Failed to load BM25 encoder: {e}")
|
|
self._bm25_encoder = False
|
|
return self._bm25_encoder if self._bm25_encoder is not False else None
|
|
|
|
def _encode_bm25(self, text: str) -> SparseVector | None:
|
|
"""Encode text into a BM25 sparse vector."""
|
|
encoder = self._get_bm25_encoder()
|
|
if encoder is None:
|
|
return None
|
|
try:
|
|
results = list(encoder.embed([text]))
|
|
if results:
|
|
sparse = results[0]
|
|
return SparseVector(
|
|
indices=sparse.indices.tolist(),
|
|
values=sparse.values.tolist(),
|
|
)
|
|
except Exception as e:
|
|
logger.debug(f"BM25 encoding failed: {e}")
|
|
return None
|
|
|
|
def create_col(self, vector_size: int, on_disk: bool, distance: Distance = Distance.COSINE):
|
|
"""
|
|
Create a new collection with dense vectors and BM25 sparse vectors.
|
|
|
|
Args:
|
|
vector_size (int): Size of the vectors to be stored.
|
|
on_disk (bool): Enables persistent storage.
|
|
distance (Distance, optional): Distance metric for vector similarity. Defaults to Distance.COSINE.
|
|
"""
|
|
# Skip creating collection if already exists
|
|
response = self.list_cols()
|
|
for collection in response.collections:
|
|
if collection.name == self.collection_name:
|
|
logger.debug(f"Collection {self.collection_name} already exists. Skipping creation.")
|
|
info = self.client.get_collection(self.collection_name)
|
|
sparse_cfg = info.config.params.sparse_vectors
|
|
self._has_bm25_slot = bool(sparse_cfg and "bm25" in sparse_cfg)
|
|
if not self._has_bm25_slot:
|
|
logger.warning(
|
|
f"Collection '{self.collection_name}' predates v3 hybrid search (no 'bm25' sparse slot). "
|
|
"BM25 keyword scoring will be disabled for this collection; semantic search works normally. "
|
|
"To enable hybrid search, use a fresh collection."
|
|
)
|
|
self._create_filter_indexes()
|
|
return
|
|
|
|
self.client.create_collection(
|
|
collection_name=self.collection_name,
|
|
vectors_config=VectorParams(size=vector_size, distance=distance, on_disk=on_disk),
|
|
sparse_vectors_config={
|
|
"bm25": SparseVectorParams(
|
|
modifier=models.Modifier.IDF,
|
|
),
|
|
},
|
|
)
|
|
self._has_bm25_slot = True
|
|
self._create_filter_indexes()
|
|
|
|
def _create_filter_indexes(self):
|
|
"""Create indexes for commonly used filter fields to enable filtering."""
|
|
# Only create payload indexes for remote Qdrant servers
|
|
if self.is_local:
|
|
logger.debug("Skipping payload index creation for local Qdrant (not supported)")
|
|
return
|
|
|
|
common_fields = ["user_id", "agent_id", "run_id", "actor_id"]
|
|
|
|
for field in common_fields:
|
|
try:
|
|
self.client.create_payload_index(
|
|
collection_name=self.collection_name,
|
|
field_name=field,
|
|
field_schema="keyword"
|
|
)
|
|
logger.info(f"Created index for {field} in collection {self.collection_name}")
|
|
except Exception as e:
|
|
logger.debug(f"Index for {field} might already exist: {e}")
|
|
|
|
def insert(self, vectors: list, payloads: list = None, ids: list = None):
|
|
"""
|
|
Insert vectors into a collection, including BM25 sparse vectors
|
|
computed from the text_lemmatized payload field.
|
|
|
|
Args:
|
|
vectors (list): List of vectors to insert.
|
|
payloads (list, optional): List of payloads corresponding to vectors. Defaults to None.
|
|
ids (list, optional): List of IDs corresponding to vectors. Defaults to None.
|
|
"""
|
|
logger.info(f"Inserting {len(vectors)} vectors into collection {self.collection_name}")
|
|
|
|
# Pre-compute BM25 sparse vectors in a single batch call. fastembed's
|
|
# embed() accepts a list of texts, so batching avoids per-row encoder
|
|
# overhead (model dispatch, tokenizer setup, etc.).
|
|
bm25_sparse_vectors: list[Optional[SparseVector]] = [None] * len(vectors)
|
|
if self._has_bm25_slot and payloads:
|
|
texts_for_bm25: list[str] = []
|
|
indices_for_bm25: list[int] = []
|
|
for idx, payload in enumerate(payloads):
|
|
text = payload.get("text_lemmatized") or payload.get("data", "")
|
|
if text:
|
|
texts_for_bm25.append(text)
|
|
indices_for_bm25.append(idx)
|
|
|
|
if texts_for_bm25:
|
|
encoder = self._get_bm25_encoder()
|
|
if encoder is not None:
|
|
try:
|
|
sparse_results = list(encoder.embed(texts_for_bm25))
|
|
if len(sparse_results) != len(texts_for_bm25):
|
|
logger.warning(
|
|
f"BM25 batch returned {len(sparse_results)} results for "
|
|
f"{len(texts_for_bm25)} texts; falling back to per-row encoding"
|
|
)
|
|
raise ValueError("count mismatch")
|
|
for i, sparse in enumerate(sparse_results):
|
|
bm25_sparse_vectors[indices_for_bm25[i]] = SparseVector(
|
|
indices=sparse.indices.tolist(),
|
|
values=sparse.values.tolist(),
|
|
)
|
|
except Exception as e:
|
|
# Fall back to per-row encoding so a single bad input
|
|
# doesn't drop BM25 for the whole batch.
|
|
logger.debug(f"Batch BM25 encoding failed, falling back to per-row: {e}")
|
|
for i, text in enumerate(texts_for_bm25):
|
|
bm25_sparse_vectors[indices_for_bm25[i]] = self._encode_bm25(text)
|
|
|
|
points = []
|
|
for idx, vector in enumerate(vectors):
|
|
payload = payloads[idx] if payloads else {}
|
|
point_id = idx if ids is None else ids[idx]
|
|
|
|
# Build named vectors: dense + optional BM25 sparse (only if collection has the slot).
|
|
named_vectors = {"": vector}
|
|
if self._has_bm25_slot and bm25_sparse_vectors[idx] is not None:
|
|
named_vectors["bm25"] = bm25_sparse_vectors[idx]
|
|
|
|
points.append(PointStruct(id=point_id, vector=named_vectors, payload=payload))
|
|
|
|
self.client.upsert(collection_name=self.collection_name, points=points)
|
|
|
|
# ISO 8601 datetime pattern for detecting datetime strings in range filters
|
|
_ISO_DATETIME_RE = re.compile(
|
|
r"^\d{4}-\d{2}-\d{2}" # date part
|
|
r"([T ]\d{2}:\d{2}(:\d{2})?" # optional time part
|
|
r"(\.\d+)?" # optional fractional seconds
|
|
r"(Z|[+-]\d{2}:?\d{2})?" # optional timezone
|
|
r")?$"
|
|
)
|
|
|
|
@staticmethod
|
|
def _is_datetime_range(range_kwargs: dict) -> bool:
|
|
"""Check if all values in range kwargs are ISO datetime strings."""
|
|
return all(
|
|
isinstance(v, str) and Qdrant._ISO_DATETIME_RE.match(v)
|
|
for v in range_kwargs.values()
|
|
)
|
|
|
|
def _build_field_condition(self, key: str, value) -> Optional[FieldCondition]:
|
|
"""
|
|
Build a single FieldCondition from a key-value filter pair.
|
|
|
|
Supports the enhanced filter syntax documented at
|
|
https://docs.mem0.ai/open-source/features/metadata-filtering
|
|
|
|
Args:
|
|
key (str): The payload field name.
|
|
value: A scalar for simple equality, or a dict with one operator key.
|
|
|
|
Returns:
|
|
Optional[FieldCondition]: The Qdrant field condition, or None if the
|
|
value is the wildcard '*' (match any / field exists — skip filter).
|
|
"""
|
|
if not isinstance(value, dict):
|
|
if value == "*":
|
|
# Wildcard: match any value. Qdrant has no direct "field exists"
|
|
# condition via FieldCondition, so we skip this filter (match all).
|
|
return None
|
|
if isinstance(value, list):
|
|
# List shorthand: {"field": ["a", "b"]} treated as in-operator.
|
|
return FieldCondition(key=key, match=MatchAny(any=value))
|
|
# Simple equality: {"field": "value"}
|
|
return FieldCondition(key=key, match=MatchValue(value=value))
|
|
|
|
ops = set(value.keys())
|
|
range_ops = {"gt", "gte", "lt", "lte"}
|
|
non_range_ops = ops - range_ops
|
|
|
|
if ops & range_ops:
|
|
if non_range_ops:
|
|
raise ValueError(
|
|
f"Cannot mix range operators ({ops & range_ops}) with "
|
|
f"non-range operators ({non_range_ops}) for field '{key}'. "
|
|
f"Use AND to combine them as separate conditions."
|
|
)
|
|
range_kwargs = {op: value[op] for op in range_ops if op in value}
|
|
if self._is_datetime_range(range_kwargs):
|
|
try:
|
|
return FieldCondition(key=key, range=DatetimeRange(**range_kwargs))
|
|
except (ValueError, TypeError) as e:
|
|
raise ValueError(
|
|
f"Invalid datetime value in range filter for field '{key}': {e}"
|
|
) from e
|
|
return FieldCondition(key=key, range=Range(**range_kwargs))
|
|
elif "eq" in value:
|
|
return FieldCondition(key=key, match=MatchValue(value=value["eq"]))
|
|
elif "ne" in value:
|
|
return FieldCondition(key=key, match=MatchExcept(**{"except": [value["ne"]]}))
|
|
elif "in" in value:
|
|
return FieldCondition(key=key, match=MatchAny(any=value["in"]))
|
|
elif "nin" in value:
|
|
return FieldCondition(key=key, match=MatchExcept(**{"except": value["nin"]}))
|
|
elif "contains" in value or "icontains" in value:
|
|
# MatchText: with a full-text index, tokenized matching (all words must appear).
|
|
# Without a full-text index, exact substring match.
|
|
op = "icontains" if "icontains" in value else "contains"
|
|
text = value[op]
|
|
if op == "icontains":
|
|
logger.debug(
|
|
"icontains on field '%s': Qdrant MatchText case sensitivity depends on "
|
|
"full-text index configuration. Without a full-text index this behaves "
|
|
"as a case-sensitive substring match (same as 'contains').",
|
|
key,
|
|
)
|
|
return FieldCondition(key=key, match=MatchText(text=text))
|
|
else:
|
|
supported = {"eq", "ne", "gt", "gte", "lt", "lte", "in", "nin", "contains", "icontains"}
|
|
raise ValueError(
|
|
f"Unsupported filter operator(s) for field '{key}': {ops}. "
|
|
f"Supported operators: {supported}"
|
|
)
|
|
|
|
def _create_filter(self, filters: dict) -> Optional[Filter]:
|
|
"""
|
|
Create a Filter object from the provided filters.
|
|
|
|
Supports the enhanced filter syntax with comparison operators (eq, ne,
|
|
gt, gte, lt, lte), list operators (in, nin), string operators (contains,
|
|
icontains), and logical operators (AND, OR, NOT).
|
|
|
|
Args:
|
|
filters (dict): Filters to apply.
|
|
|
|
Returns:
|
|
Filter: The created Filter object, or None if filters is empty.
|
|
"""
|
|
if not filters:
|
|
return None
|
|
|
|
# Normalize $or/$not/$and → OR/NOT/AND and deduplicate.
|
|
# Memory._process_metadata_filters() renames OR→$or and NOT→$not,
|
|
# but effective_filters retains the original OR/NOT keys from
|
|
# deepcopy(input_filters). Without dedup the same sub-conditions
|
|
# would be evaluated twice.
|
|
key_map = {"$or": "OR", "$not": "NOT", "$and": "AND"}
|
|
normalized = {}
|
|
for key, value in filters.items():
|
|
norm_key = key_map.get(key, key)
|
|
if norm_key not in normalized:
|
|
normalized[norm_key] = value
|
|
|
|
must = []
|
|
should = []
|
|
must_not = []
|
|
|
|
for key, value in normalized.items():
|
|
if key in ("AND", "OR", "NOT"):
|
|
if not isinstance(value, list):
|
|
raise ValueError(
|
|
f"{key} filter value must be a list of filter dicts, "
|
|
f"got {type(value).__name__}"
|
|
)
|
|
for i, item in enumerate(value):
|
|
if not isinstance(item, dict):
|
|
raise ValueError(
|
|
f"{key} filter list item at index {i} must be a dict, "
|
|
f"got {type(item).__name__}: {item!r}"
|
|
)
|
|
|
|
if key == "AND":
|
|
for sub in value:
|
|
built = self._create_filter(sub)
|
|
if built:
|
|
must.append(built)
|
|
elif key == "OR":
|
|
for sub in value:
|
|
built = self._create_filter(sub)
|
|
if built:
|
|
should.append(built)
|
|
elif key == "NOT":
|
|
for sub in value:
|
|
built = self._create_filter(sub)
|
|
if built:
|
|
must_not.append(built)
|
|
else:
|
|
condition = self._build_field_condition(key, value)
|
|
if condition is not None:
|
|
must.append(condition)
|
|
|
|
if not any([must, should, must_not]):
|
|
return None
|
|
|
|
return Filter(
|
|
must=must or None,
|
|
should=should or None,
|
|
must_not=must_not or None,
|
|
)
|
|
|
|
def search(self, query: str, vectors: list, top_k: int = 5, filters: dict = None) -> list:
|
|
"""
|
|
Search for similar vectors.
|
|
|
|
Args:
|
|
query (str): Query.
|
|
vectors (list): Query vector.
|
|
top_k (int, optional): Number of results to return. Defaults to 5.
|
|
filters (dict, optional): Filters to apply to the search. Defaults to None.
|
|
|
|
Returns:
|
|
list: Search results.
|
|
"""
|
|
query_filter = self._create_filter(filters) if filters else None
|
|
hits = self.client.query_points(
|
|
collection_name=self.collection_name,
|
|
query=vectors,
|
|
query_filter=query_filter,
|
|
limit=top_k,
|
|
)
|
|
return hits.points
|
|
|
|
def search_batch(self, queries: list, vectors_list: list, top_k: int = 1, filters: dict = None):
|
|
"""Batch search using Qdrant's query_batch_points for efficiency."""
|
|
query_filter = self._create_filter(filters) if filters else None
|
|
requests = [
|
|
models.QueryRequest(query=vec, filter=query_filter, limit=top_k, with_payload=True)
|
|
for vec in vectors_list
|
|
]
|
|
try:
|
|
results = self.client.query_batch_points(
|
|
collection_name=self.collection_name,
|
|
requests=requests,
|
|
)
|
|
return [r.points for r in results]
|
|
except Exception as e:
|
|
logger.warning(f"Batch search failed, falling back to sequential: {e}")
|
|
return [self.search(q, v, top_k=top_k, filters=filters) for q, v in zip(queries, vectors_list)]
|
|
|
|
def keyword_search(self, query, top_k=5, filters=None):
|
|
"""
|
|
Search using BM25 sparse vectors for keyword-based retrieval.
|
|
|
|
Args:
|
|
query (str): The search query text.
|
|
top_k (int, optional): Number of results to return. Defaults to 5.
|
|
filters (dict, optional): Filters to apply to the search. Defaults to None.
|
|
|
|
Returns:
|
|
list: Search results, or None if BM25 is not available.
|
|
"""
|
|
if not self._has_bm25_slot:
|
|
return None
|
|
sparse_query = self._encode_bm25(query)
|
|
if sparse_query is None:
|
|
return None
|
|
|
|
try:
|
|
query_filter = self._create_filter(filters) if filters else None
|
|
hits = self.client.query_points(
|
|
collection_name=self.collection_name,
|
|
query=sparse_query,
|
|
using="bm25",
|
|
query_filter=query_filter,
|
|
limit=top_k,
|
|
)
|
|
return hits.points
|
|
except Exception as e:
|
|
logger.debug(f"BM25 keyword search failed: {e}")
|
|
return None
|
|
|
|
def delete(self, vector_id: int):
|
|
"""
|
|
Delete a vector by ID.
|
|
|
|
Args:
|
|
vector_id (int): ID of the vector to delete.
|
|
"""
|
|
self.client.delete(
|
|
collection_name=self.collection_name,
|
|
points_selector=PointIdsList(
|
|
points=[vector_id],
|
|
),
|
|
)
|
|
|
|
def update(self, vector_id: int, vector: list = None, payload: dict = None):
|
|
"""
|
|
Update a vector and its payload.
|
|
|
|
Args:
|
|
vector_id (int): ID of the vector to update.
|
|
vector (list, optional): Updated vector. Defaults to None.
|
|
payload (dict, optional): Updated payload. Defaults to None.
|
|
"""
|
|
if vector is not None and payload is not None:
|
|
# Full update: attach BM25 sparse vector alongside dense vector (only if slot exists).
|
|
named_vectors = {"": vector}
|
|
if self._has_bm25_slot:
|
|
text_for_bm25 = payload.get("text_lemmatized") or payload.get("data", "")
|
|
if text_for_bm25:
|
|
# Single-item update: per-row encoding is correct here; see insert() for the batch path.
|
|
sparse = self._encode_bm25(text_for_bm25)
|
|
if sparse is not None:
|
|
named_vectors["bm25"] = sparse
|
|
point = PointStruct(id=vector_id, vector=named_vectors, payload=payload)
|
|
self.client.upsert(collection_name=self.collection_name, points=[point])
|
|
else:
|
|
# Partial update: use Qdrant's dedicated endpoints.
|
|
# Note: BM25 sparse vector cannot be refreshed via set_payload alone;
|
|
# payload-only updates will leave any existing BM25 vector stale. In
|
|
# practice v3 re-embeds on memory text change, so this is acceptable.
|
|
if payload is not None:
|
|
self.client.set_payload(
|
|
collection_name=self.collection_name,
|
|
payload=payload,
|
|
points=[vector_id],
|
|
)
|
|
if vector is not None:
|
|
self.client.update_vectors(
|
|
collection_name=self.collection_name,
|
|
points=[PointVectors(id=vector_id, vector=vector)],
|
|
)
|
|
|
|
def get(self, vector_id: int) -> dict:
|
|
"""
|
|
Retrieve a vector by ID.
|
|
|
|
Args:
|
|
vector_id (int): ID of the vector to retrieve.
|
|
|
|
Returns:
|
|
dict: Retrieved vector.
|
|
"""
|
|
result = self.client.retrieve(collection_name=self.collection_name, ids=[vector_id], with_payload=True)
|
|
return result[0] if result else None
|
|
|
|
def list_cols(self) -> list:
|
|
"""
|
|
List all collections.
|
|
|
|
Returns:
|
|
list: List of collection names.
|
|
"""
|
|
return self.client.get_collections()
|
|
|
|
def delete_col(self):
|
|
"""Delete a collection."""
|
|
self.client.delete_collection(collection_name=self.collection_name)
|
|
|
|
def col_info(self) -> dict:
|
|
"""
|
|
Get information about a collection.
|
|
|
|
Returns:
|
|
dict: Collection information.
|
|
"""
|
|
return self.client.get_collection(collection_name=self.collection_name)
|
|
|
|
def list(self, filters: dict = None, top_k: int = 100) -> list:
|
|
"""
|
|
List all vectors in a collection.
|
|
|
|
Args:
|
|
filters (dict, optional): Filters to apply to the list. Defaults to None.
|
|
top_k (int, optional): Number of vectors to return. Defaults to 100.
|
|
|
|
Returns:
|
|
list: List of vectors.
|
|
"""
|
|
query_filter = self._create_filter(filters) if filters else None
|
|
result = self.client.scroll(
|
|
collection_name=self.collection_name,
|
|
scroll_filter=query_filter,
|
|
limit=top_k,
|
|
with_payload=True,
|
|
with_vectors=False,
|
|
)
|
|
return result
|
|
|
|
def reset(self):
|
|
"""Reset the index by deleting and recreating it."""
|
|
logger.warning(f"Resetting index {self.collection_name}...")
|
|
self.delete_col()
|
|
self.create_col(self.embedding_model_dims, self.on_disk)
|