From 2bcc9a54a922f603c3baa27e3710f08512d6b33f Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Thu, 5 Sep 2024 12:47:53 -0700 Subject: [PATCH] feat: add --chat-language argument for specifying chat language --- aider/args.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/aider/args.py b/aider/args.py index 588f1dac1..b67aeb43a 100644 --- a/aider/args.py +++ b/aider/args.py @@ -491,6 +491,12 @@ def get_parser(default_config_files, git_root): default="en", help="Specify the language for voice using ISO 639-1 code (default: auto)", ) + group.add_argument( + "--chat-language", + metavar="CHAT_LANGUAGE", + default=None, + help="Specify the language to use in the chat (default: None, uses system settings)", + ) group.add_argument( "--version", action="version",