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

This commit is contained in:
2026-02-25 14:47:19 +03:00
commit 1e376aff24
170 changed files with 4893 additions and 0 deletions

View File

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)