Files
qdrant/lib/edge/python/examples/fusion-query.py
Roman Titov 8764454837 Implement __repr__ for Qdrant Edge types (Part 2) (#7742)
* Implement `__repr__` for `PyJsonPath`

* Implement `__repr__` for `PyFilter`

* Implement `__repr__` for `PyQuery`

* Implement `__repr__` for `PyQueryRequest`

* Implement `__repr__` for `PySearchRequest`

* Implement `__repr__` for `PyFilter` using `pyclass_repr` attribute

* Implement `__repr__` for `PyQuery` using `pyclass_repr` attribute

* Implement `__repr__` for `PyQueryRequest` using `pyclass_repr` attribute

* Implement `__repr__` for `PySearchRequest` using `pyclass_repr` attribute
2025-12-16 03:27:57 +01:00

48 lines
963 B
Python

from qdrant_edge import *
from common import *
shard = load_new_shard()
fill_dummy_data(shard)
search_filter = Filter(
must=[
FieldCondition(
key="color",
match=MatchValue(value="red"),
)
]
)
result = shard.query(QueryRequest(
prefetches = [
Prefetch(
prefetches=[],
query=Query.Nearest([6.0, 9.0, 4.0, 2.0]),
limit=5,
params=None,
filter=None,
score_threshold=None,
),
Prefetch(
prefetches=[],
query=Query.Nearest([1.0, -3.0, 2.0, 8.0]),
limit=5,
params=None,
filter=search_filter,
score_threshold=None,
)
],
query = Fusion.Rrfk(2),
filter = None,
score_threshold = None,
limit = 10,
offset = 0,
params = None,
with_vector = True,
with_payload = True,
))
for point in result:
print(point)