From 57bd71e076ad7c04b767f59f79548a5f279172f4 Mon Sep 17 00:00:00 2001 From: Carlos Polop Date: Tue, 7 Apr 2026 15:45:46 +0200 Subject: [PATCH] f --- scripts/translator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/translator.py b/scripts/translator.py index a7b94134c..c9489539c 100644 --- a/scripts/translator.py +++ b/scripts/translator.py @@ -404,7 +404,7 @@ if __name__ == "__main__": parser.add_argument('-l', '--language', required=True, help='Target language for translation.') parser.add_argument('-b', '--branch', required=True, help='Branch name to copy translated files.') parser.add_argument('-k', '--api-key', required=True, help='API key to use.') - parser.add_argument('-m', '--model', default="gpt-5-mini", help='The openai model to use. By default: gpt-5-mini') + parser.add_argument('-m', '--model', default="gpt-5.4-mini", help='The openai model to use. By default: gpt-5.4-mini') parser.add_argument('-o', '--org-id', help='The org ID to use (if not set the default one will be used).') parser.add_argument('-f', '--file-paths', help='If this is set, only the indicated files will be translated (" , " separated).') parser.add_argument('-n', '--dont-cd', action='store_false', help="If this is true, the script won't change the current directory.")