diff --git a/site/llm_client.py b/site/llm_client.py index 7d299af..9db5a7a 100644 --- a/site/llm_client.py +++ b/site/llm_client.py @@ -15,10 +15,10 @@ import requests # ── Конфигурация ──────────────────────────────────────────────── DEFAULT_URL = "https://api.aillm.ru/v1/chat/completions" -DEFAULT_MODEL = "deepseek-chat" # DeepSeek V3 на aillm.ru (120B эквивалент) +DEFAULT_MODEL = "gpt-oss-120b" # 120B модель через LiteLLM-прокси -def ask(prompt: str, model: str = None, max_tokens: int = 4000) -> dict: +def ask(prompt: str, model: str = None, max_tokens: int = 8000) -> dict: """ Отправить промпт к LLM API.