(texts: List[str])
| 571 | |
| 572 | |
| 573 | def embed_batch(texts: List[str]) -> List[List[float]]: |
| 574 | return get_embedding_service().embed_batch(texts) |
| 575 | |
| 576 | |
| 577 | def cosine_similarity(vector1: List[float], vector2: List[float]) -> float: |
no test coverage detected