aider-ce 0.87.13.dev3__py3-none-any.whl → 0.88.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of aider-ce might be problematic. Click here for more details.
- aider/__init__.py +1 -1
- aider/_version.py +2 -2
- aider/args.py +6 -0
- aider/coders/architect_coder.py +3 -3
- aider/coders/base_coder.py +511 -190
- aider/coders/context_coder.py +1 -1
- aider/coders/editblock_func_coder.py +2 -2
- aider/coders/navigator_coder.py +451 -649
- aider/coders/navigator_legacy_prompts.py +49 -284
- aider/coders/navigator_prompts.py +46 -473
- aider/coders/search_replace.py +0 -0
- aider/coders/wholefile_func_coder.py +2 -2
- aider/commands.py +56 -44
- aider/exceptions.py +1 -0
- aider/history.py +14 -12
- aider/io.py +354 -117
- aider/llm.py +12 -4
- aider/main.py +32 -29
- aider/mcp/__init__.py +65 -2
- aider/mcp/server.py +37 -11
- aider/models.py +45 -20
- aider/onboarding.py +5 -5
- aider/repo.py +7 -7
- aider/resources/model-metadata.json +8 -8
- aider/scrape.py +2 -2
- aider/sendchat.py +185 -15
- aider/tools/__init__.py +44 -23
- aider/tools/command.py +18 -0
- aider/tools/command_interactive.py +18 -0
- aider/tools/delete_block.py +23 -0
- aider/tools/delete_line.py +19 -1
- aider/tools/delete_lines.py +20 -1
- aider/tools/extract_lines.py +25 -2
- aider/tools/git.py +142 -0
- aider/tools/grep.py +47 -2
- aider/tools/indent_lines.py +25 -0
- aider/tools/insert_block.py +26 -0
- aider/tools/list_changes.py +15 -0
- aider/tools/ls.py +24 -1
- aider/tools/make_editable.py +18 -0
- aider/tools/make_readonly.py +19 -0
- aider/tools/remove.py +22 -0
- aider/tools/replace_all.py +21 -0
- aider/tools/replace_line.py +20 -1
- aider/tools/replace_lines.py +21 -1
- aider/tools/replace_text.py +22 -0
- aider/tools/show_numbered_context.py +18 -0
- aider/tools/undo_change.py +15 -0
- aider/tools/update_todo_list.py +131 -0
- aider/tools/view.py +23 -0
- aider/tools/view_files_at_glob.py +32 -27
- aider/tools/view_files_matching.py +51 -37
- aider/tools/view_files_with_symbol.py +41 -54
- aider/tools/view_todo_list.py +57 -0
- aider/waiting.py +20 -203
- {aider_ce-0.87.13.dev3.dist-info → aider_ce-0.88.1.dist-info}/METADATA +21 -5
- {aider_ce-0.87.13.dev3.dist-info → aider_ce-0.88.1.dist-info}/RECORD +60 -57
- {aider_ce-0.87.13.dev3.dist-info → aider_ce-0.88.1.dist-info}/WHEEL +0 -0
- {aider_ce-0.87.13.dev3.dist-info → aider_ce-0.88.1.dist-info}/entry_points.txt +0 -0
- {aider_ce-0.87.13.dev3.dist-info → aider_ce-0.88.1.dist-info}/licenses/LICENSE.txt +0 -0
- {aider_ce-0.87.13.dev3.dist-info → aider_ce-0.88.1.dist-info}/top_level.txt +0 -0
aider/__init__.py
CHANGED
aider/_version.py
CHANGED
|
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
|
|
|
28
28
|
commit_id: COMMIT_ID
|
|
29
29
|
__commit_id__: COMMIT_ID
|
|
30
30
|
|
|
31
|
-
__version__ = version = '0.
|
|
32
|
-
__version_tuple__ = version_tuple = (0,
|
|
31
|
+
__version__ = version = '0.88.1'
|
|
32
|
+
__version_tuple__ = version_tuple = (0, 88, 1)
|
|
33
33
|
|
|
34
34
|
__commit_id__ = commit_id = None
|
aider/args.py
CHANGED
|
@@ -770,6 +770,12 @@ def get_parser(default_config_files, git_root):
|
|
|
770
770
|
|
|
771
771
|
######
|
|
772
772
|
group = parser.add_argument_group("Other settings")
|
|
773
|
+
group.add_argument(
|
|
774
|
+
"--preserve-todo-list",
|
|
775
|
+
action="store_true",
|
|
776
|
+
help="Preserve the existing .aider.todo.txt file on startup (default: False)",
|
|
777
|
+
default=False,
|
|
778
|
+
)
|
|
773
779
|
group.add_argument(
|
|
774
780
|
"--disable-playwright",
|
|
775
781
|
action="store_true",
|
aider/coders/architect_coder.py
CHANGED
|
@@ -8,7 +8,7 @@ class ArchitectCoder(AskCoder):
|
|
|
8
8
|
gpt_prompts = ArchitectPrompts()
|
|
9
9
|
auto_accept_architect = False
|
|
10
10
|
|
|
11
|
-
def reply_completed(self):
|
|
11
|
+
async def reply_completed(self):
|
|
12
12
|
content = self.partial_response_content
|
|
13
13
|
|
|
14
14
|
if not content or not content.strip():
|
|
@@ -34,14 +34,14 @@ class ArchitectCoder(AskCoder):
|
|
|
34
34
|
new_kwargs = dict(io=self.io, from_coder=self)
|
|
35
35
|
new_kwargs.update(kwargs)
|
|
36
36
|
|
|
37
|
-
editor_coder = Coder.create(**new_kwargs)
|
|
37
|
+
editor_coder = await Coder.create(**new_kwargs)
|
|
38
38
|
editor_coder.cur_messages = []
|
|
39
39
|
editor_coder.done_messages = []
|
|
40
40
|
|
|
41
41
|
if self.verbose:
|
|
42
42
|
editor_coder.show_announcements()
|
|
43
43
|
|
|
44
|
-
editor_coder.run(with_message=content, preproc=False)
|
|
44
|
+
await editor_coder.run(with_message=content, preproc=False)
|
|
45
45
|
|
|
46
46
|
self.move_back_cur_messages("I made those changes to the files.")
|
|
47
47
|
self.total_cost = editor_coder.total_cost
|