aider-ce 0.87.4.dev13__py3-none-any.whl → 0.87.5.dev15__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/coders/base_coder.py +9 -9
- aider/exceptions.py +5 -2
- aider/resources/model-settings.yml +1 -0
- {aider_ce-0.87.4.dev13.dist-info → aider_ce-0.87.5.dev15.dist-info}/METADATA +41 -2
- {aider_ce-0.87.4.dev13.dist-info → aider_ce-0.87.5.dev15.dist-info}/RECORD +11 -11
- {aider_ce-0.87.4.dev13.dist-info → aider_ce-0.87.5.dev15.dist-info}/WHEEL +0 -0
- {aider_ce-0.87.4.dev13.dist-info → aider_ce-0.87.5.dev15.dist-info}/entry_points.txt +0 -0
- {aider_ce-0.87.4.dev13.dist-info → aider_ce-0.87.5.dev15.dist-info}/licenses/LICENSE.txt +0 -0
- {aider_ce-0.87.4.dev13.dist-info → aider_ce-0.87.5.dev15.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.87.
|
|
32
|
-
__version_tuple__ = version_tuple = (0, 87,
|
|
31
|
+
__version__ = version = '0.87.5.dev15'
|
|
32
|
+
__version_tuple__ = version_tuple = (0, 87, 5, 'dev15')
|
|
33
33
|
|
|
34
34
|
__commit_id__ = commit_id = None
|
aider/coders/base_coder.py
CHANGED
|
@@ -1728,6 +1728,15 @@ class Coder:
|
|
|
1728
1728
|
|
|
1729
1729
|
edited = self.apply_updates()
|
|
1730
1730
|
|
|
1731
|
+
if edited:
|
|
1732
|
+
self.aider_edited_files.update(edited)
|
|
1733
|
+
saved_message = self.auto_commit(edited)
|
|
1734
|
+
|
|
1735
|
+
if not saved_message and hasattr(self.gpt_prompts, "files_content_gpt_edits_no_repo"):
|
|
1736
|
+
saved_message = self.gpt_prompts.files_content_gpt_edits_no_repo
|
|
1737
|
+
|
|
1738
|
+
self.move_back_cur_messages(saved_message)
|
|
1739
|
+
|
|
1731
1740
|
if not interrupted:
|
|
1732
1741
|
add_rel_files_message = self.check_for_file_mentions(content)
|
|
1733
1742
|
if add_rel_files_message:
|
|
@@ -1751,15 +1760,6 @@ class Coder:
|
|
|
1751
1760
|
except KeyboardInterrupt:
|
|
1752
1761
|
interrupted = True
|
|
1753
1762
|
|
|
1754
|
-
if edited:
|
|
1755
|
-
self.aider_edited_files.update(edited)
|
|
1756
|
-
saved_message = self.auto_commit(edited)
|
|
1757
|
-
|
|
1758
|
-
if not saved_message and hasattr(self.gpt_prompts, "files_content_gpt_edits_no_repo"):
|
|
1759
|
-
saved_message = self.gpt_prompts.files_content_gpt_edits_no_repo
|
|
1760
|
-
|
|
1761
|
-
self.move_back_cur_messages(saved_message)
|
|
1762
|
-
|
|
1763
1763
|
if self.reflected_message:
|
|
1764
1764
|
return
|
|
1765
1765
|
|
aider/exceptions.py
CHANGED
|
@@ -28,6 +28,7 @@ EXCEPTIONS = [
|
|
|
28
28
|
"The API provider has refused the request due to a safety policy about the content.",
|
|
29
29
|
),
|
|
30
30
|
ExInfo("ContextWindowExceededError", False, None), # special case handled in base_coder
|
|
31
|
+
ExInfo("ImageFetchError", True, "The API cannot fetch an image"),
|
|
31
32
|
ExInfo("InternalServerError", True, "The API provider's servers are down or overloaded."),
|
|
32
33
|
ExInfo("InvalidRequestError", True, None),
|
|
33
34
|
ExInfo("JSONSchemaValidationError", True, None),
|
|
@@ -66,8 +67,10 @@ class LiteLLMExceptions:
|
|
|
66
67
|
raise ValueError(f"{var} is in litellm but not in aider's exceptions list")
|
|
67
68
|
|
|
68
69
|
for var in self.exception_info:
|
|
69
|
-
ex = getattr(litellm, var)
|
|
70
|
-
|
|
70
|
+
ex = getattr(litellm, var, "default")
|
|
71
|
+
|
|
72
|
+
if ex != "default":
|
|
73
|
+
self.exceptions[ex] = self.exception_info[var]
|
|
71
74
|
|
|
72
75
|
def exceptions_tuple(self):
|
|
73
76
|
return tuple(self.exceptions)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: aider-ce
|
|
3
|
-
Version: 0.87.
|
|
3
|
+
Version: 0.87.5.dev15
|
|
4
4
|
Summary: Aider is AI pair programming in your terminal
|
|
5
5
|
Project-URL: Homepage, https://github.com/dwash96/aider-ce
|
|
6
6
|
Classifier: Development Status :: 4 - Beta
|
|
@@ -16,6 +16,44 @@ Classifier: Topic :: Software Development
|
|
|
16
16
|
Requires-Python: >=3.10
|
|
17
17
|
Description-Content-Type: text/markdown
|
|
18
18
|
License-File: LICENSE.txt
|
|
19
|
+
Requires-Dist: pydub>=0.25.1
|
|
20
|
+
Requires-Dist: configargparse>=1.7.1
|
|
21
|
+
Requires-Dist: GitPython>=3.1.45
|
|
22
|
+
Requires-Dist: jsonschema>=4.25.0
|
|
23
|
+
Requires-Dist: rich>=14.1.0
|
|
24
|
+
Requires-Dist: prompt_toolkit
|
|
25
|
+
Requires-Dist: backoff>=2.2.1
|
|
26
|
+
Requires-Dist: pathspec>=0.12.1
|
|
27
|
+
Requires-Dist: diskcache>=5.6.3
|
|
28
|
+
Requires-Dist: grep_ast
|
|
29
|
+
Requires-Dist: packaging>=25.0
|
|
30
|
+
Requires-Dist: sounddevice>=0.5.2
|
|
31
|
+
Requires-Dist: soundfile>=0.13.1
|
|
32
|
+
Requires-Dist: beautifulsoup4>=4.13.4
|
|
33
|
+
Requires-Dist: PyYAML>=6.0.2
|
|
34
|
+
Requires-Dist: diff-match-patch>=20241021
|
|
35
|
+
Requires-Dist: pypandoc>=1.15
|
|
36
|
+
Requires-Dist: litellm>=1.75.0
|
|
37
|
+
Requires-Dist: flake8>=7.3.0
|
|
38
|
+
Requires-Dist: importlib_resources
|
|
39
|
+
Requires-Dist: pyperclip>=1.9.0
|
|
40
|
+
Requires-Dist: posthog>=6.4.1
|
|
41
|
+
Requires-Dist: mixpanel>=4.10.1
|
|
42
|
+
Requires-Dist: pexpect>=4.9.0
|
|
43
|
+
Requires-Dist: json5>=0.12.0
|
|
44
|
+
Requires-Dist: psutil>=7.0.0
|
|
45
|
+
Requires-Dist: watchfiles>=1.1.0
|
|
46
|
+
Requires-Dist: socksio>=1.0.0
|
|
47
|
+
Requires-Dist: pillow>=11.3.0
|
|
48
|
+
Requires-Dist: shtab>=1.7.2
|
|
49
|
+
Requires-Dist: oslex>=0.1.3
|
|
50
|
+
Requires-Dist: google-generativeai>=0.8.5
|
|
51
|
+
Requires-Dist: mcp>=1.12.3
|
|
52
|
+
Requires-Dist: networkx>=3.4.2
|
|
53
|
+
Requires-Dist: scipy>=1.15.3
|
|
54
|
+
Requires-Dist: importlib-metadata>=7.2.1
|
|
55
|
+
Requires-Dist: tree-sitter==0.23.2; python_version < "3.10"
|
|
56
|
+
Requires-Dist: tree-sitter>=0.25.1; python_version >= "3.10"
|
|
19
57
|
Provides-Extra: dev
|
|
20
58
|
Requires-Dist: pytest; extra == "dev"
|
|
21
59
|
Requires-Dist: pytest-env; extra == "dev"
|
|
@@ -67,6 +105,7 @@ This project aims to be compatible with upstream Aider, but with priority commit
|
|
|
67
105
|
* [Manually install necessary ubuntu dependencies](https://github.com/dwash96/aider-ce/issues/14)
|
|
68
106
|
* [.gitignore updates](https://github.com/dwash96/aider-ce/commit/7c7e803fa63d1acd860eef1423e5a03220df6017)
|
|
69
107
|
* [Experimental Context Compaction For Longer Running Generation Tasks](https://github.com/Aider-AI/aider/issues/6)
|
|
108
|
+
* [Edit Before Adding Files and Reflecting](https://github.com/dwash96/aider-ce/pull/22)
|
|
70
109
|
* [Fix Deepseek model configurations](https://github.com/Aider-AI/aider/commit/c839a6dd8964d702172cae007375e299732d3823)
|
|
71
110
|
* [Relax Version Pinning For Easier Distribution](https://github.com/dwash96/aider-ce/issues/18)
|
|
72
111
|
|
|
@@ -83,7 +122,7 @@ pip install aider-ce
|
|
|
83
122
|
or
|
|
84
123
|
|
|
85
124
|
```
|
|
86
|
-
uv install aider-ce
|
|
125
|
+
uv pip install aider-ce
|
|
87
126
|
```
|
|
88
127
|
|
|
89
128
|
The package exports an `aider-ce` command that accepts all of Aider's configuration options
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
aider/__init__.py,sha256=
|
|
1
|
+
aider/__init__.py,sha256=LWj2sw4A4BDQQ6ijpD78hwJMJg_j530bpiLPpghY03M,496
|
|
2
2
|
aider/__main__.py,sha256=Vdhw8YA1K3wPMlbJQYL5WqvRzAKVeZ16mZQFO9VRmCo,62
|
|
3
|
-
aider/_version.py,sha256=
|
|
3
|
+
aider/_version.py,sha256=qQW5j1_8gMHF86LZit1yRddSbDKkM3RGYxR63CNueI0,721
|
|
4
4
|
aider/analytics.py,sha256=c5ujaCcMc3yG-9rz_0oSsqBwmVQRxJnui6iE_yDyY_M,7507
|
|
5
5
|
aider/args.py,sha256=yjfHJm-eKBEXJ7MlqoGQEjkFhBlCvGtwp44AajAtROs,32491
|
|
6
6
|
aider/args_formatter.py,sha256=CBRnzHyZk-fFCK0ekAzb6C4PPJOU-VTpWIIsJe3qUhk,6369
|
|
@@ -11,7 +11,7 @@ aider/deprecated.py,sha256=SNeAWR7ih87F5AyFpC4pxRoJAaw8measBW583w0EUT8,4277
|
|
|
11
11
|
aider/diffs.py,sha256=y6_rxIKe3FPCIsVy_RRkHdofguYOhYBr2Oytr5AqjHI,3028
|
|
12
12
|
aider/dump.py,sha256=-naWnGTc0-lAe_93WxBTpunPRfzNlUK7Q5zgXOprHfA,653
|
|
13
13
|
aider/editor.py,sha256=_WAipJYEOx-q69mPp_hHAQ2yfeoZklBYjS0rTLxCHEA,4364
|
|
14
|
-
aider/exceptions.py,sha256=
|
|
14
|
+
aider/exceptions.py,sha256=W9Qw83348Xl0KwSMc1jYNZ-o8Ok65rBAuB1Mz9P6fUk,3914
|
|
15
15
|
aider/format_settings.py,sha256=wHW4bLTKwqUKDGX4onxirC4cNgeJ-lHPuS1H04_R444,1041
|
|
16
16
|
aider/gui.py,sha256=JnHvli1JTCGHAgsOZ8HkAWOKAFxmngbyviZIJeYvjsw,17573
|
|
17
17
|
aider/help.py,sha256=Q8KS0G05Ick2YsVetpj9lAlNH3WjJTHg3t8sf5ZwlC0,4434
|
|
@@ -46,7 +46,7 @@ aider/coders/architect_coder.py,sha256=b7KqtivnllPdyMfxbnEUd9G0C1ZFaiappV25Rz0Dk
|
|
|
46
46
|
aider/coders/architect_prompts.py,sha256=R0_KxZjo-km_yNaeDAquDP9qfp3IdWgrdMirCWe0RIE,1658
|
|
47
47
|
aider/coders/ask_coder.py,sha256=Omk4Ih8-prefkMZ_jnRS3faoW5CQUakHOvZ-s7piM3U,210
|
|
48
48
|
aider/coders/ask_prompts.py,sha256=W6HwDUfzfOLt9q8sl6rw7fN7b5ND90FkxCZrtrWl5vY,1171
|
|
49
|
-
aider/coders/base_coder.py,sha256=
|
|
49
|
+
aider/coders/base_coder.py,sha256=nNX-pm-jTU_tdUvsK4ybZTGM1pYqECKzwZ7ObzRe2nQ,109882
|
|
50
50
|
aider/coders/base_prompts.py,sha256=O3bBjhf0hgvtKbQ9QyOMnRy8LrmfLyT9dVAcXxHS_3k,3659
|
|
51
51
|
aider/coders/chat_chunks.py,sha256=8HPet6cmQdgWvaA_tGpinO4ASMst53uTcSEtNVTYDXE,1981
|
|
52
52
|
aider/coders/context_coder.py,sha256=Y5LdIaYHywMB03lXsmHTYsDnyHIHJ6FNZLMWa9wjArs,1571
|
|
@@ -140,7 +140,7 @@ aider/queries/tree-sitter-languages/scala-tags.scm,sha256=UxQjz80JIrrJ7Pm56uUnQy
|
|
|
140
140
|
aider/queries/tree-sitter-languages/typescript-tags.scm,sha256=OMdCeedPiA24ky82DpgTMKXK_l2ySTuF2zrQ2fJAi9E,1253
|
|
141
141
|
aider/resources/__init__.py,sha256=09npmZFptj6XR6ZeEuekpcK2stecKEjI59zR0Vz2JU8,142
|
|
142
142
|
aider/resources/model-metadata.json,sha256=aEuPd8EATGOdDHdECxgdI3ep9v3SyDgrp1eMuQoWU5U,28645
|
|
143
|
-
aider/resources/model-settings.yml,sha256=
|
|
143
|
+
aider/resources/model-settings.yml,sha256=KD3kgc1kf-4z1MBriRZGFohb9jlZkAJylWj7RL9FSaI,57645
|
|
144
144
|
aider/tools/__init__.py,sha256=LVV7Cp4C74O5BCKWzES4L1I2K0RSf25WnKb683mOHi8,1198
|
|
145
145
|
aider/tools/command.py,sha256=TxUByCebyNVpob3Or9pLmSuR9Q0XLvsE4wb9aH1-sk4,2604
|
|
146
146
|
aider/tools/command_interactive.py,sha256=dgq_XagpIQ9VV79v0lMS87lWcoOwy1bFUT0-EudBz1w,2135
|
|
@@ -256,9 +256,9 @@ aider/website/docs/usage/tutorials.md,sha256=ZKBztbUtucHOiv9h8gvWiWTP6MTSsFyz4mA
|
|
|
256
256
|
aider/website/docs/usage/voice.md,sha256=BtX7pHRgHRWUmrNbS4JssC-SO8RrJ_OetBCtIYpO0pU,3452
|
|
257
257
|
aider/website/docs/usage/watch.md,sha256=OVF14lGtv1vhSXRE8PpxQ3YW-uXSifarUbmLBjmLRyA,7940
|
|
258
258
|
aider/website/share/index.md,sha256=P51aDw9AT8AVbsU7v6g1tWuMjly7y_plM_ZI1ScaT8Y,3172
|
|
259
|
-
aider_ce-0.87.
|
|
260
|
-
aider_ce-0.87.
|
|
261
|
-
aider_ce-0.87.
|
|
262
|
-
aider_ce-0.87.
|
|
263
|
-
aider_ce-0.87.
|
|
264
|
-
aider_ce-0.87.
|
|
259
|
+
aider_ce-0.87.5.dev15.dist-info/licenses/LICENSE.txt,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
|
260
|
+
aider_ce-0.87.5.dev15.dist-info/METADATA,sha256=M0L6DI9sQXHO85F70rUEsOMOi17thp8uN9yLgXgXBIU,18053
|
|
261
|
+
aider_ce-0.87.5.dev15.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
262
|
+
aider_ce-0.87.5.dev15.dist-info/entry_points.txt,sha256=OxI0JxfyJrc24nTmsdvpaWUx8Flz2huOij_-ifp-48w,69
|
|
263
|
+
aider_ce-0.87.5.dev15.dist-info/top_level.txt,sha256=uwOA6ycgSiRLrBsaRBcIeN_eBKAX78U01_KDEHR8mBk,6
|
|
264
|
+
aider_ce-0.87.5.dev15.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|