lllin000_PaperForge/paperforge/embedding/providers/base.py
2026-05-18 17:13:40 +08:00

13 lines
285 B
Python

from __future__ import annotations
from abc import ABC, abstractmethod
class EmbeddingProvider(ABC):
@abstractmethod
def encode(self, texts: list[str]) -> list[list[float]]:
...
@abstractmethod
def encode_single(self, text: str) -> list[float]:
...