Skip to content

Commit

Permalink
fix: init qdrant vector max recursion (#2909)
Browse files Browse the repository at this point in the history
  • Loading branch information
ethuwlwfu3288 authored Mar 20, 2024
1 parent d018e27 commit 180775a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/core/rag/datasource/vdb/vector_factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def _init_vector(self) -> BaseVector:
raise ValueError('Dataset Collection Bindings is not exist!')
else:
if self._dataset.index_struct_dict:
class_prefix: str = self.dataset.index_struct_dict['vector_store']['class_prefix']
class_prefix: str = self._dataset.index_struct_dict['vector_store']['class_prefix']
collection_name = class_prefix
else:
dataset_id = self._dataset.id
Expand Down

0 comments on commit 180775a

Please sign in to comment.