Skip to content

Commit 2862169

Browse files
committed
Merge branch 'develop'
2 parents 85e8610 + 9e2b243 commit 2862169

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/code_explainer/utils/storage_qdrant.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class QdrantStorage(RAGStorage):
1414
def __init__(self, type, allow_reset=True, embedder_config=None, crew=None):
1515
super().__init__(type, allow_reset, embedder_config, crew)
1616

17-
def search(
17+
def query_points(
1818
self,
1919
query: str,
2020
limit: int = 3,
@@ -27,7 +27,7 @@ def search(
2727
query_filter=filter,
2828
limit=limit,
2929
score_threshold=score_threshold,
30-
)
30+
).points
3131
results = [
3232
{
3333
"id": point.id,

0 commit comments

Comments
 (0)