Embed query text.
(self, text: str)
| 10 | |
| 11 | @abc.abstractmethod |
| 12 | def embed_query(self, text: str) -> List[float]: |
| 13 | """Embed query text.""" |
| 14 | |
| 15 | @abc.abstractmethod |
| 16 | def get_embedding_dim(self) -> int: |
nothing calls this directly
no outgoing calls
no test coverage detected