(self, embedder: adal.Embedder)
| 65 | Adalflow Ollama Client does not support batch embedding, so we need to process each document individually. |
| 66 | """ |
| 67 | def __init__(self, embedder: adal.Embedder) -> None: |
| 68 | super().__init__() |
| 69 | self.embedder = embedder |
| 70 | |
| 71 | def __call__(self, documents: Sequence[Document]) -> Sequence[Document]: |
| 72 | output = deepcopy(documents) |
nothing calls this directly
no outgoing calls
no test coverage detected