Spaces:
Running
Running
File size: 582 Bytes
81598c5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | from abc import ABC, abstractmethod
class EmbeddingProvider(ABC):
"""Abstract base — swap local pplx-embed or Azure without changing any other code."""
@abstractmethod
def embed_documents(self, texts: list[str]) -> list[list[float]]:
"""Embed a list of document strings."""
...
@abstractmethod
def embed_query(self, text: str) -> list[float]:
"""Embed a single query string."""
...
@property
@abstractmethod
def dimension(self) -> int:
"""Output embedding dimension."""
...
|