aider-ce 0.87.11.dev0__py3-none-any.whl → 0.87.13__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 +2 -2
- aider/coders/editblock_prompts.py +0 -2
- aider/coders/patch_prompts.py +0 -2
- aider/coders/udiff_prompts.py +0 -2
- aider/coders/wholefile_prompts.py +0 -5
- aider/main.py +27 -1
- aider/repomap.py +33 -6
- {aider_ce-0.87.11.dev0.dist-info → aider_ce-0.87.13.dist-info}/METADATA +30 -1
- {aider_ce-0.87.11.dev0.dist-info → aider_ce-0.87.13.dist-info}/RECORD +15 -15
- {aider_ce-0.87.11.dev0.dist-info → aider_ce-0.87.13.dist-info}/WHEEL +0 -0
- {aider_ce-0.87.11.dev0.dist-info → aider_ce-0.87.13.dist-info}/entry_points.txt +0 -0
- {aider_ce-0.87.11.dev0.dist-info → aider_ce-0.87.13.dist-info}/licenses/LICENSE.txt +0 -0
- {aider_ce-0.87.11.dev0.dist-info → aider_ce-0.87.13.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.13'
|
|
32
|
+
__version_tuple__ = version_tuple = (0, 87, 13)
|
|
33
33
|
|
|
34
34
|
__commit_id__ = commit_id = None
|
aider/args.py
CHANGED
|
@@ -780,13 +780,13 @@ def get_parser(default_config_files, git_root):
|
|
|
780
780
|
"--file",
|
|
781
781
|
action="append",
|
|
782
782
|
metavar="FILE",
|
|
783
|
-
help="specify a file to edit (can be used multiple times)",
|
|
783
|
+
help="specify a file to edit (can be used multiple times, glob patterns supported)",
|
|
784
784
|
).complete = shtab.FILE
|
|
785
785
|
group.add_argument(
|
|
786
786
|
"--read",
|
|
787
787
|
action="append",
|
|
788
788
|
metavar="FILE",
|
|
789
|
-
help="specify a read-only file (can be used multiple times)",
|
|
789
|
+
help="specify a read-only file (can be used multiple times, glob patterns supported)",
|
|
790
790
|
).complete = shtab.FILE
|
|
791
791
|
group.add_argument(
|
|
792
792
|
"--vim",
|
|
@@ -15,8 +15,6 @@ If the request is ambiguous, ask questions.
|
|
|
15
15
|
Consider potential edge cases.
|
|
16
16
|
Think about how to verify your changes are correct.
|
|
17
17
|
|
|
18
|
-
Always reply to the user in {language}.
|
|
19
|
-
|
|
20
18
|
Once you understand the request and have a plan, you MUST:
|
|
21
19
|
|
|
22
20
|
1. Decide if you need to propose *SEARCH/REPLACE* edits to any files that haven't been added to the chat. You can create new files without asking!
|
aider/coders/patch_prompts.py
CHANGED
|
@@ -15,8 +15,6 @@ Respect and use existing conventions, libraries, etc that are already present in
|
|
|
15
15
|
Take requests for changes to the supplied code.
|
|
16
16
|
If the request is ambiguous, ask questions.
|
|
17
17
|
|
|
18
|
-
Always reply to the user in {language}.
|
|
19
|
-
|
|
20
18
|
Once you understand the request you MUST:
|
|
21
19
|
|
|
22
20
|
1. Decide if you need to propose edits to any files that haven't been added to the chat. You can create new files without asking!
|
aider/coders/udiff_prompts.py
CHANGED
|
@@ -15,8 +15,6 @@ Think about how to verify your changes are correct.
|
|
|
15
15
|
Take requests for changes to the supplied code.
|
|
16
16
|
If the request is ambiguous, ask questions.
|
|
17
17
|
|
|
18
|
-
Always reply to the user in {language}.
|
|
19
|
-
|
|
20
18
|
Once you have a plan, for each file that needs to be changed, write out the changes similar to a unified diff like `diff -U0` would produce.
|
|
21
19
|
"""
|
|
22
20
|
|
|
@@ -8,11 +8,6 @@ class WholeFilePrompts(CoderPrompts):
|
|
|
8
8
|
Think step-by-step. Plan your changes carefully. Explain your plan first.
|
|
9
9
|
Take requests for changes to the supplied code.
|
|
10
10
|
If the request is ambiguous, ask questions.
|
|
11
|
-
Consider potential edge cases.
|
|
12
|
-
Think about how to verify your changes are correct.
|
|
13
|
-
|
|
14
|
-
Always reply to the user in {language}.
|
|
15
|
-
|
|
16
11
|
{final_reminders}
|
|
17
12
|
Once you understand the request and have a plan, you MUST:
|
|
18
13
|
1. Determine if any code changes are needed.
|
aider/main.py
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import glob
|
|
1
2
|
import json
|
|
2
3
|
import os
|
|
3
4
|
import re
|
|
@@ -449,6 +450,25 @@ def sanity_check_repo(repo, io):
|
|
|
449
450
|
return False
|
|
450
451
|
|
|
451
452
|
|
|
453
|
+
def expand_glob_patterns(patterns, root="."):
|
|
454
|
+
"""Expand glob patterns in a list of file paths."""
|
|
455
|
+
expanded_files = []
|
|
456
|
+
for pattern in patterns:
|
|
457
|
+
# Check if the pattern contains glob characters
|
|
458
|
+
if any(c in pattern for c in "*?[]"):
|
|
459
|
+
# Use glob to expand the pattern
|
|
460
|
+
matches = glob.glob(pattern, recursive=True)
|
|
461
|
+
if matches:
|
|
462
|
+
expanded_files.extend(matches)
|
|
463
|
+
else:
|
|
464
|
+
# If no matches, keep the original pattern
|
|
465
|
+
expanded_files.append(pattern)
|
|
466
|
+
else:
|
|
467
|
+
# Not a glob pattern, keep as is
|
|
468
|
+
expanded_files.append(pattern)
|
|
469
|
+
return expanded_files
|
|
470
|
+
|
|
471
|
+
|
|
452
472
|
def main(argv=None, input=None, output=None, force_git_root=None, return_coder=False):
|
|
453
473
|
report_uncaught_exceptions()
|
|
454
474
|
|
|
@@ -677,10 +697,16 @@ def main(argv=None, input=None, output=None, force_git_root=None, return_coder=F
|
|
|
677
697
|
for fname in loaded_dotenvs:
|
|
678
698
|
io.tool_output(f"Loaded {fname}")
|
|
679
699
|
|
|
700
|
+
# Expand glob patterns in files and file arguments
|
|
680
701
|
all_files = args.files + (args.file or [])
|
|
702
|
+
all_files = expand_glob_patterns(all_files)
|
|
681
703
|
fnames = [str(Path(fn).resolve()) for fn in all_files]
|
|
704
|
+
|
|
705
|
+
# Expand glob patterns in read arguments
|
|
706
|
+
read_patterns = args.read or []
|
|
707
|
+
read_expanded = expand_glob_patterns(read_patterns)
|
|
682
708
|
read_only_fnames = []
|
|
683
|
-
for fn in
|
|
709
|
+
for fn in read_expanded:
|
|
684
710
|
path = Path(fn).expanduser().resolve()
|
|
685
711
|
if path.is_dir():
|
|
686
712
|
read_only_fnames.extend(str(f) for f in path.rglob("*") if f.is_file())
|
aider/repomap.py
CHANGED
|
@@ -612,6 +612,7 @@ class RepoMap:
|
|
|
612
612
|
personalization[rel_fname] = current_pers # Assign the final calculated value
|
|
613
613
|
|
|
614
614
|
tags = list(self.get_tags(fname, rel_fname))
|
|
615
|
+
|
|
615
616
|
if tags is None:
|
|
616
617
|
continue
|
|
617
618
|
|
|
@@ -643,7 +644,7 @@ class RepoMap:
|
|
|
643
644
|
if ident in references:
|
|
644
645
|
continue
|
|
645
646
|
for definer in defines[ident]:
|
|
646
|
-
G.add_edge(definer, definer, weight=0.
|
|
647
|
+
G.add_edge(definer, definer, weight=0.01, ident=ident)
|
|
647
648
|
|
|
648
649
|
for ident in idents:
|
|
649
650
|
if progress:
|
|
@@ -658,12 +659,32 @@ class RepoMap:
|
|
|
658
659
|
is_camel = any(c.isupper() for c in ident) and any(c.islower() for c in ident)
|
|
659
660
|
if ident in mentioned_idents:
|
|
660
661
|
mul *= 10
|
|
661
|
-
|
|
662
|
+
|
|
663
|
+
# Prioritize function-like identifiers
|
|
664
|
+
if (
|
|
665
|
+
(is_snake or is_kebab or is_camel)
|
|
666
|
+
and len(ident) >= 8
|
|
667
|
+
and "test" not in ident.lower()
|
|
668
|
+
):
|
|
662
669
|
mul *= 10
|
|
663
|
-
|
|
664
|
-
|
|
670
|
+
|
|
671
|
+
# Downplay repetitive definitions in case of common boiler plate
|
|
672
|
+
# Scale down logarithmically given the increasing number of references in a codebase
|
|
673
|
+
# Ideally, this will help downweight boiler plate in frameworks, interfaces, and abstract classes
|
|
665
674
|
if len(defines[ident]) > 5:
|
|
666
|
-
mul *=
|
|
675
|
+
mul *= math.log((5 / (len(defines[ident]) ** 2)) + 1)
|
|
676
|
+
|
|
677
|
+
# Calculate multiplier: log(number of unique file references * total references ^ 2)
|
|
678
|
+
# Used to balance the number of times an identifier appears with its number of refs per file
|
|
679
|
+
# Penetration in code base is important
|
|
680
|
+
# So is the frequency
|
|
681
|
+
# And the logarithm keeps them from scaling out of bounds forever
|
|
682
|
+
# Combined with the above downweighting
|
|
683
|
+
# There should be a push/pull that balances repetitiveness of identifier defs
|
|
684
|
+
# With absolute number of references throughout a codebase
|
|
685
|
+
unique_file_refs = len(set(references[ident]))
|
|
686
|
+
total_refs = len(references[ident])
|
|
687
|
+
ext_mul = math.log(unique_file_refs * total_refs**2 + 1)
|
|
667
688
|
|
|
668
689
|
for referencer, num_refs in Counter(references[ident]).items():
|
|
669
690
|
for definer in definers:
|
|
@@ -671,7 +692,13 @@ class RepoMap:
|
|
|
671
692
|
# if referencer == definer:
|
|
672
693
|
# continue
|
|
673
694
|
|
|
674
|
-
|
|
695
|
+
# Only add edge if file extensions match
|
|
696
|
+
referencer_ext = Path(referencer).suffix
|
|
697
|
+
definer_ext = Path(definer).suffix
|
|
698
|
+
if referencer_ext != definer_ext:
|
|
699
|
+
continue
|
|
700
|
+
|
|
701
|
+
use_mul = mul * ext_mul
|
|
675
702
|
if referencer in chat_rel_fnames:
|
|
676
703
|
use_mul *= 50
|
|
677
704
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: aider-ce
|
|
3
|
-
Version: 0.87.
|
|
3
|
+
Version: 0.87.13
|
|
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
|
|
@@ -78,6 +78,34 @@ Provides-Extra: playwright
|
|
|
78
78
|
Requires-Dist: playwright; extra == "playwright"
|
|
79
79
|
Dynamic: license-file
|
|
80
80
|
|
|
81
|
+
## Project Roadmap/Goals
|
|
82
|
+
|
|
83
|
+
The current priorities are to improve core capabilities and user experience of the Aider project
|
|
84
|
+
|
|
85
|
+
1. **Base Asynchronicity (aider-ce coroutine-experiment branch)**
|
|
86
|
+
* [x] Refactor codebase to have the main loop run asynchronously
|
|
87
|
+
* [x] Update test harness to work with new asynchronous methods
|
|
88
|
+
|
|
89
|
+
2. **Repo Map Accuracy** - [Discussion](https://github.com/dwash96/aider-ce/issues/45)
|
|
90
|
+
* [x] [Bias page ranking toward active/editable files in repo map parsing](https://github.com/Aider-AI/aider/issues/2405)
|
|
91
|
+
* [ ] [Include AST information in repo map for richer context](https://github.com/Aider-AI/aider/issues/2688)
|
|
92
|
+
* [ ] [Handle non-unique symbols that break down in large codebases](https://github.com/Aider-AI/aider/issues/2341)
|
|
93
|
+
|
|
94
|
+
3. **Context Discovery** - [Discussion](https://github.com/dwash96/aider-ce/issues/46)
|
|
95
|
+
* [ ] Develop AST-based search capabilities
|
|
96
|
+
* [ ] Enhance file search with ripgrep integration
|
|
97
|
+
* [ ] Implement RAG (Retrieval-Augmented Generation) for better code retrieval
|
|
98
|
+
* [ ] Build an explicit workflow and local tooling for internal discovery mechanisms
|
|
99
|
+
|
|
100
|
+
4. **Context Delivery** - [Discussion](https://github.com/dwash96/aider-ce/issues/47)
|
|
101
|
+
* [ ] Use workflow for internal discovery to better target file snippets needed for specific tasks
|
|
102
|
+
* [ ] Add support for partial files and code snippets in model completion messages
|
|
103
|
+
|
|
104
|
+
5. **TUI Experience** - [Discussion](https://github.com/dwash96/aider-ce/issues/48)
|
|
105
|
+
* [ ] Add a full TUI (probably using textual) to have a visual interface competitive with the other coding agent terminal programs
|
|
106
|
+
* [ ] Re-integrate pretty output formatting
|
|
107
|
+
* [ ] Implement a response area, a prompt area with current auto completion capabilities, and a helper area for management utility commands
|
|
108
|
+
|
|
81
109
|
## Fork Additions
|
|
82
110
|
|
|
83
111
|
This project aims to be compatible with upstream Aider, but with priority commits merged in and with some opportunistic bug fixes and optimizations
|
|
@@ -112,6 +140,7 @@ This project aims to be compatible with upstream Aider, but with priority commit
|
|
|
112
140
|
* [Remove Confirm Responses from History](https://github.com/Aider-AI/aider/pull/3958)
|
|
113
141
|
* [Benchmark Results By Language](https://github.com/dwash96/aider-ce/pull/27)
|
|
114
142
|
* [Allow Benchmarks to Use Repo Map For Better Accuracy](https://github.com/dwash96/aider-ce/pull/25)
|
|
143
|
+
* [Read File Globbing](https://github.com/Aider-AI/aider/pull/3395)
|
|
115
144
|
|
|
116
145
|
### Other Notes
|
|
117
146
|
* [MCP Configuration](https://github.com/dwash96/aider-ce/blob/main/aider/website/docs/config/mcp.md)
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
aider/__init__.py,sha256=
|
|
1
|
+
aider/__init__.py,sha256=JImLym1wv6gAAMhoWAQIr3gMJop9sC7pLmAPzE-TGpc,497
|
|
2
2
|
aider/__main__.py,sha256=Vdhw8YA1K3wPMlbJQYL5WqvRzAKVeZ16mZQFO9VRmCo,62
|
|
3
|
-
aider/_version.py,sha256=
|
|
3
|
+
aider/_version.py,sha256=Auv4ljHrmM0qPOhxSVayLoeyohpSIr7sJFSt90kyCPI,708
|
|
4
4
|
aider/analytics.py,sha256=c5ujaCcMc3yG-9rz_0oSsqBwmVQRxJnui6iE_yDyY_M,7507
|
|
5
|
-
aider/args.py,sha256=
|
|
5
|
+
aider/args.py,sha256=iQQHrpraUzBVDuSTc0SKvBY3tZpRX5LzgsUWQ4eGJMc,32541
|
|
6
6
|
aider/args_formatter.py,sha256=CBRnzHyZk-fFCK0ekAzb6C4PPJOU-VTpWIIsJe3qUhk,6369
|
|
7
7
|
aider/change_tracker.py,sha256=djUlUuewhwRAlC0x6jIUZNpn6_PK1YyiNTMYvlvDeTE,4884
|
|
8
8
|
aider/commands.py,sha256=TfOJyqjNQ78eTghzQFHiIpuJ2fIfNw2vbmF1nkQmZ5k,80010
|
|
@@ -20,7 +20,7 @@ aider/history.py,sha256=r3OP3kVxl6-PZmXEI9oK1mVAM-hYCbUqacISz4e_khY,5957
|
|
|
20
20
|
aider/io.py,sha256=gecsU8k3TOywKynspE_6GvcHNnopbRvIMa5xWBSTpv4,47538
|
|
21
21
|
aider/linter.py,sha256=t5jwWZ1dvIzRtig1kTSjzl6u1LRfw0e19qwNIen2jAg,7998
|
|
22
22
|
aider/llm.py,sha256=fGCemP1X9MBwrDfsTKGJ_1sx-yKz3DyoOvxZYOkvGak,1103
|
|
23
|
-
aider/main.py,sha256=
|
|
23
|
+
aider/main.py,sha256=srOVl0ewp64P3t7FccGEvSzNXz7qA5IhOOIUEKCiT1s,45969
|
|
24
24
|
aider/mdstream.py,sha256=fS9iQUQmIJPEMo7o1psPGE2yYj31MI3m3msdN-jEzUw,7594
|
|
25
25
|
aider/models.py,sha256=mZnDnk6HLNyZULd1IZ93uTK_IUyQToYvzj9U8InD7kM,44819
|
|
26
26
|
aider/onboarding.py,sha256=XdCPsi6idsRvV0TsnaBOk0QoH-g3KgctafSMxoxvx6k,16105
|
|
@@ -28,7 +28,7 @@ aider/openrouter.py,sha256=FAdv7L8xgILXgmC_b1gnuYJStmpaPyiZMp-7nSdInlQ,4642
|
|
|
28
28
|
aider/prompts.py,sha256=Qv-JS8BzGjusEPmR3-qmjjvN3S9mb7W4KpWiGui-Jk0,1954
|
|
29
29
|
aider/reasoning_tags.py,sha256=VOg5wM7JSrMo47OyS1FFuLrr2cp2KyutEC4_zsUsCbY,2288
|
|
30
30
|
aider/repo.py,sha256=ZLq0E6gwm7KabzYASib-7bqv-E55JZOWCpXfC3IZJeE,22922
|
|
31
|
-
aider/repomap.py,sha256=
|
|
31
|
+
aider/repomap.py,sha256=KA-ucbHNiLqHQ-iaCyPX5otJdugqexRUY0bwyaLPBlE,35082
|
|
32
32
|
aider/report.py,sha256=WobVDEK6YxB0GpHrF5twTfUYH5dsNWFIHFsB9lds7E8,5899
|
|
33
33
|
aider/run_cmd.py,sha256=9-NpSL4hlqIndf_EN1jnmWfjX7vIPbDgKgGPGRAr2Rw,4223
|
|
34
34
|
aider/scrape.py,sha256=RyKlO3cN2QvfovaLQFJNx8j1Zaz6Qx2wqWhYO9H2Yug,8334
|
|
@@ -56,7 +56,7 @@ aider/coders/editblock_fenced_coder.py,sha256=ZaU43k4w4jH1oQAKq-LJ3OpLSyLvT2t9ap
|
|
|
56
56
|
aider/coders/editblock_fenced_prompts.py,sha256=2YyHKt9RaN1KpCiW9n8kGBp8oRxP1nU7KLdguM2cCbU,4415
|
|
57
57
|
aider/coders/editblock_func_coder.py,sha256=hVSjSz6Vz_vqmQqt2eheUAYtYMY7OV1S9BLiPTquUZs,5317
|
|
58
58
|
aider/coders/editblock_func_prompts.py,sha256=t5NLHkggCxZPLOAwo35fml0hYtIDn-nmIU7nRpBBlnQ,886
|
|
59
|
-
aider/coders/editblock_prompts.py,sha256=
|
|
59
|
+
aider/coders/editblock_prompts.py,sha256=9ItTxPlr4QsAMd0JB893x6VE4zR_4XB6fmCyNiPWH7c,5897
|
|
60
60
|
aider/coders/editor_diff_fenced_coder.py,sha256=xrv0bCCBXwdmy1CpWmqi1frlSYsnpA0TQv29M7hgT94,338
|
|
61
61
|
aider/coders/editor_diff_fenced_prompts.py,sha256=2ph1ftiriMEOVo1Z63oaIKofzwb0pC48GWKQ3zlzM6k,272
|
|
62
62
|
aider/coders/editor_editblock_coder.py,sha256=6CDjf4_S6FiGipPNXc9_D6Sz9aIZPlW2w4fgJPq_6Pg,307
|
|
@@ -69,19 +69,19 @@ aider/coders/navigator_coder.py,sha256=U7aWgZwzH4O852WSp-stdujvJNjPdEMKMZjEziXRD
|
|
|
69
69
|
aider/coders/navigator_legacy_prompts.py,sha256=ZxI-bc_JtnJXiu2JF65PrF60rckzDFntwTrhy8Rm0g8,17861
|
|
70
70
|
aider/coders/navigator_prompts.py,sha256=dsqW0HWy4LGKpgJdTtLIJz4QaD8XdJOr5R2jpLYC3xo,34863
|
|
71
71
|
aider/coders/patch_coder.py,sha256=f6-7VilMaMeYcZFQgIVWFycePo6IfZ6r9DQT5DpShBE,30288
|
|
72
|
-
aider/coders/patch_prompts.py,sha256=
|
|
72
|
+
aider/coders/patch_prompts.py,sha256=dSOs7FPnglFJIKIu7FlMB1gL21N4z-Zwv6sMucQCXUU,6012
|
|
73
73
|
aider/coders/search_replace.py,sha256=5Qzib7g4bt82sI2yyCf7hpl599wkobxZgVGnrCCgEkc,19813
|
|
74
74
|
aider/coders/shell.py,sha256=jSKol5ICraol7pAHmZu-58nhJjI13_vHieuxqNspFiY,1801
|
|
75
75
|
aider/coders/single_wholefile_func_coder.py,sha256=m3ufhuz8843P9HlSm7RoLONQ1AK8pRrv-W4oyG2U45s,2967
|
|
76
76
|
aider/coders/single_wholefile_func_prompts.py,sha256=ipzROzYhWZolmbHSxw5W-11Q2iNpyWnWAp41OsCdrIo,867
|
|
77
77
|
aider/coders/udiff_coder.py,sha256=xtOVArLjWNqgnz2nvQ1isk-UNo3icWa8Rjd05quCJZI,11041
|
|
78
|
-
aider/coders/udiff_prompts.py,sha256=
|
|
78
|
+
aider/coders/udiff_prompts.py,sha256=2IwzHuLkE0sPEbQub0fnzjgrdJ5hRrH_1qS1RHK8Jgs,3425
|
|
79
79
|
aider/coders/udiff_simple.py,sha256=UjovEM-j51gLRZOpEL_dFxVTPs0CMwTJJNfUIaMKiE8,452
|
|
80
80
|
aider/coders/udiff_simple_prompts.py,sha256=t6k8nFDQaKjdxXKwMiSNSe1BL6kAaUrgaTIPPOEr4_M,888
|
|
81
81
|
aider/coders/wholefile_coder.py,sha256=uPoNNeSia1wrl4oiPjwnYrtVej7hXa2OepGsJC9t1S8,5131
|
|
82
82
|
aider/coders/wholefile_func_coder.py,sha256=RKHzPNNdSuwogJ5rJEvCzmSoaxKx8zlPbCOtWvXv98I,4249
|
|
83
83
|
aider/coders/wholefile_func_prompts.py,sha256=M5-d6qRYUeRTelK5w2mQYkVfFV_caPc-qGfNHlmbmJs,868
|
|
84
|
-
aider/coders/wholefile_prompts.py,sha256=
|
|
84
|
+
aider/coders/wholefile_prompts.py,sha256=9un0j4lH0mKh39wZaRA1Md9gQBQ_kdAzexbeEmqf8wo,2015
|
|
85
85
|
aider/mcp/__init__.py,sha256=KCT2FvT5dMVd9UmfA5GPZa8u-s4vCmHLABIskeN8hlQ,3489
|
|
86
86
|
aider/mcp/server.py,sha256=_y9DgkKqF7SkF0q-m5Rf-yRtUkllWNXMvRbLMm8zDR8,4203
|
|
87
87
|
aider/queries/tree-sitter-language-pack/README.md,sha256=ivZSEuWqYfUVLZl2AZZGRlm0bQsaG-VTBKBwACyM07k,291
|
|
@@ -258,9 +258,9 @@ aider/website/docs/usage/tutorials.md,sha256=ZKBztbUtucHOiv9h8gvWiWTP6MTSsFyz4mA
|
|
|
258
258
|
aider/website/docs/usage/voice.md,sha256=BtX7pHRgHRWUmrNbS4JssC-SO8RrJ_OetBCtIYpO0pU,3452
|
|
259
259
|
aider/website/docs/usage/watch.md,sha256=OVF14lGtv1vhSXRE8PpxQ3YW-uXSifarUbmLBjmLRyA,7940
|
|
260
260
|
aider/website/share/index.md,sha256=P51aDw9AT8AVbsU7v6g1tWuMjly7y_plM_ZI1ScaT8Y,3172
|
|
261
|
-
aider_ce-0.87.
|
|
262
|
-
aider_ce-0.87.
|
|
263
|
-
aider_ce-0.87.
|
|
264
|
-
aider_ce-0.87.
|
|
265
|
-
aider_ce-0.87.
|
|
266
|
-
aider_ce-0.87.
|
|
261
|
+
aider_ce-0.87.13.dist-info/licenses/LICENSE.txt,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
|
262
|
+
aider_ce-0.87.13.dist-info/METADATA,sha256=G9pEOuSrPj87WEz4MLuhzRu0h03zCEG8iB9Kzc3dz78,20297
|
|
263
|
+
aider_ce-0.87.13.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
264
|
+
aider_ce-0.87.13.dist-info/entry_points.txt,sha256=OxI0JxfyJrc24nTmsdvpaWUx8Flz2huOij_-ifp-48w,69
|
|
265
|
+
aider_ce-0.87.13.dist-info/top_level.txt,sha256=uwOA6ycgSiRLrBsaRBcIeN_eBKAX78U01_KDEHR8mBk,6
|
|
266
|
+
aider_ce-0.87.13.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|