Fix compatibility with the previous versions

This commit is contained in:
Kacper Łukawski
2025-03-05 23:42:19 +01:00
parent f252489c3d
commit 8afd73849c
5 changed files with 57 additions and 11 deletions

View File

@@ -14,3 +14,8 @@ class EmbeddingProvider(ABC):
async def embed_query(self, query: str) -> List[float]:
"""Embed a query into a vector."""
pass
@abstractmethod
def get_vector_name(self) -> str:
"""Get the name of the vector for the Qdrant collection."""
pass