первый коммит

This commit is contained in:
2026-02-27 21:28:09 +03:00
parent 1e376aff24
commit e8805ffe29
171 changed files with 6400 additions and 556 deletions

View File

@@ -0,0 +1,9 @@
from app.modules.shared.gigachat.client import GigaChatClient
class GigaChatEmbedder:
def __init__(self, client: GigaChatClient) -> None:
self._client = client
def embed(self, texts: list[str]) -> list[list[float]]:
return self._client.embed(texts)