From 2f4ba0bdd1f29c4aae3b308fb3aec8a9a5640f61 Mon Sep 17 00:00:00 2001 From: Yurii Motov <109919500+YuriiMotov@users.noreply.github.com> Date: Thu, 18 Jun 2026 10:59:31 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A8=20Use=20`gpt-5.5`=20model=20in=20`?= =?UTF-8?q?translate.py`,=20specify=20`-chat`=20to=20avoid=20warnings=20(#?= =?UTF-8?q?15792)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/translate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/translate.py b/scripts/translate.py index 9bc35c018e..5fec92fb9a 100644 --- a/scripts/translate.py +++ b/scripts/translate.py @@ -132,7 +132,7 @@ def translate_page( print(f"Found existing translation: {out_path}") old_translation = out_path.read_text(encoding="utf-8") print(f"Translating {en_path} to {language} ({language_name})") - agent = Agent("openai:gpt-5") + agent = Agent("openai-chat:gpt-5.5") MAX_ATTEMPTS = 3 additional_instructions = ""