diff --git a/aider/args.py b/aider/args.py index b952f62ed..652b6dfe3 100644 --- a/aider/args.py +++ b/aider/args.py @@ -22,7 +22,7 @@ def default_env_file(git_root): def get_parser(default_config_files, git_root): parser = configargparse.ArgumentParser( - description="aider is GPT powered coding in your terminal", + description="aider is AI pair programming in your terminal", add_config_file_help=True, default_config_files=default_config_files, auto_env_var_prefix="AIDER_", diff --git a/aider/coders/base_coder.py b/aider/coders/base_coder.py index f974dd697..6fc621482 100755 --- a/aider/coders/base_coder.py +++ b/aider/coders/base_coder.py @@ -207,7 +207,7 @@ class Coder: if map_tokens > max_map_tokens: lines.append( f"Warning: map-tokens > {max_map_tokens} is not recommended as too much" - " irrelevant code can confuse GPT." + " irrelevant code can confuse LLMs." ) else: lines.append("Repo-map: disabled because map_tokens == 0") diff --git a/aider/commands.py b/aider/commands.py index 195afac56..8670cd649 100644 --- a/aider/commands.py +++ b/aider/commands.py @@ -554,7 +554,7 @@ class Commands: return res def cmd_add(self, args): - "Add files to the chat so GPT can edit them or review them in detail" + "Add files to the chat so aider can edit them or review them in detail" added_fnames = [] @@ -628,8 +628,7 @@ class Commands: if is_image_file(matched_file) and not self.coder.main_model.accepts_images: self.io.tool_error( f"Cannot add image file {matched_file} as the" - f" {self.coder.main_model.name} does not support image.\nYou can run `aider" - " --4-turbo-vision` to use GPT-4 Turbo with Vision." + f" {self.coder.main_model.name} does not support images." ) continue content = self.io.read_text(abs_file_path)