Spaces:
Sleeping
Sleeping
File size: 352 Bytes
ce45eb0 | 1 2 3 4 5 6 7 8 9 10 11 12 | """Local Ollama embeddings client. [v1 — stub]"""
from __future__ import annotations
import numpy as np
class OllamaEmbedder: # pragma: no cover - [v1]
def __init__(self, *args, **kwargs):
raise NotImplementedError("OllamaEmbedder is a v1 component.")
def encode(self, text: str) -> np.ndarray:
raise NotImplementedError
|