aider-ce 0.88.20__py3-none-any.whl → 0.88.38__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.
- aider/__init__.py +1 -1
- aider/_version.py +2 -2
- aider/args.py +63 -43
- aider/coders/agent_coder.py +331 -79
- aider/coders/agent_prompts.py +3 -15
- aider/coders/architect_coder.py +21 -5
- aider/coders/base_coder.py +661 -413
- aider/coders/base_prompts.py +6 -3
- aider/coders/chat_chunks.py +39 -17
- aider/commands.py +79 -15
- aider/diffs.py +10 -9
- aider/exceptions.py +1 -1
- aider/helpers/coroutines.py +8 -0
- aider/helpers/requests.py +45 -0
- aider/history.py +5 -0
- aider/io.py +179 -25
- aider/main.py +86 -35
- aider/models.py +16 -8
- aider/queries/tree-sitter-language-pack/c-tags.scm +3 -0
- aider/queries/tree-sitter-language-pack/clojure-tags.scm +5 -0
- aider/queries/tree-sitter-language-pack/commonlisp-tags.scm +5 -0
- aider/queries/tree-sitter-language-pack/cpp-tags.scm +3 -0
- aider/queries/tree-sitter-language-pack/csharp-tags.scm +6 -0
- aider/queries/tree-sitter-language-pack/dart-tags.scm +5 -0
- aider/queries/tree-sitter-language-pack/elixir-tags.scm +5 -0
- aider/queries/tree-sitter-language-pack/elm-tags.scm +3 -0
- aider/queries/tree-sitter-language-pack/go-tags.scm +7 -0
- aider/queries/tree-sitter-language-pack/java-tags.scm +6 -0
- aider/queries/tree-sitter-language-pack/javascript-tags.scm +8 -0
- aider/queries/tree-sitter-language-pack/lua-tags.scm +5 -0
- aider/queries/tree-sitter-language-pack/ocaml_interface-tags.scm +3 -0
- aider/queries/tree-sitter-language-pack/python-tags.scm +10 -0
- aider/queries/tree-sitter-language-pack/r-tags.scm +6 -0
- aider/queries/tree-sitter-language-pack/ruby-tags.scm +5 -0
- aider/queries/tree-sitter-language-pack/rust-tags.scm +3 -0
- aider/queries/tree-sitter-language-pack/solidity-tags.scm +1 -1
- aider/queries/tree-sitter-language-pack/swift-tags.scm +4 -1
- aider/queries/tree-sitter-languages/c-tags.scm +3 -0
- aider/queries/tree-sitter-languages/c_sharp-tags.scm +6 -0
- aider/queries/tree-sitter-languages/cpp-tags.scm +3 -0
- aider/queries/tree-sitter-languages/dart-tags.scm +2 -1
- aider/queries/tree-sitter-languages/elixir-tags.scm +5 -0
- aider/queries/tree-sitter-languages/elm-tags.scm +3 -0
- aider/queries/tree-sitter-languages/fortran-tags.scm +3 -0
- aider/queries/tree-sitter-languages/go-tags.scm +6 -0
- aider/queries/tree-sitter-languages/haskell-tags.scm +2 -0
- aider/queries/tree-sitter-languages/java-tags.scm +6 -0
- aider/queries/tree-sitter-languages/javascript-tags.scm +8 -0
- aider/queries/tree-sitter-languages/julia-tags.scm +2 -2
- aider/queries/tree-sitter-languages/kotlin-tags.scm +3 -0
- aider/queries/tree-sitter-languages/ocaml_interface-tags.scm +6 -0
- aider/queries/tree-sitter-languages/php-tags.scm +6 -0
- aider/queries/tree-sitter-languages/python-tags.scm +10 -0
- aider/queries/tree-sitter-languages/ruby-tags.scm +5 -0
- aider/queries/tree-sitter-languages/rust-tags.scm +3 -0
- aider/queries/tree-sitter-languages/scala-tags.scm +2 -3
- aider/queries/tree-sitter-languages/typescript-tags.scm +3 -0
- aider/queries/tree-sitter-languages/zig-tags.scm +20 -3
- aider/repomap.py +71 -11
- aider/resources/model-metadata.json +27335 -635
- aider/resources/model-settings.yml +190 -0
- aider/scrape.py +2 -0
- aider/tools/__init__.py +2 -0
- aider/tools/command.py +84 -94
- aider/tools/command_interactive.py +95 -110
- aider/tools/delete_block.py +131 -159
- aider/tools/delete_line.py +97 -132
- aider/tools/delete_lines.py +120 -160
- aider/tools/extract_lines.py +288 -312
- aider/tools/finished.py +30 -43
- aider/tools/git_branch.py +107 -109
- aider/tools/git_diff.py +44 -56
- aider/tools/git_log.py +39 -53
- aider/tools/git_remote.py +37 -51
- aider/tools/git_show.py +33 -47
- aider/tools/git_status.py +30 -44
- aider/tools/grep.py +214 -242
- aider/tools/indent_lines.py +175 -201
- aider/tools/insert_block.py +220 -253
- aider/tools/list_changes.py +65 -80
- aider/tools/ls.py +64 -80
- aider/tools/make_editable.py +57 -73
- aider/tools/make_readonly.py +50 -66
- aider/tools/remove.py +64 -80
- aider/tools/replace_all.py +96 -109
- aider/tools/replace_line.py +118 -156
- aider/tools/replace_lines.py +160 -197
- aider/tools/replace_text.py +159 -160
- aider/tools/show_numbered_context.py +115 -141
- aider/tools/thinking.py +52 -0
- aider/tools/undo_change.py +78 -91
- aider/tools/update_todo_list.py +130 -138
- aider/tools/utils/base_tool.py +64 -0
- aider/tools/utils/output.py +118 -0
- aider/tools/view.py +38 -54
- aider/tools/view_files_matching.py +131 -134
- aider/tools/view_files_with_symbol.py +108 -120
- aider/urls.py +1 -1
- aider/versioncheck.py +4 -3
- aider/website/docs/config/adv-model-settings.md +237 -0
- aider/website/docs/config/agent-mode.md +36 -3
- aider/website/docs/config/model-aliases.md +2 -1
- aider/website/docs/faq.md +6 -11
- aider/website/docs/languages.md +2 -2
- aider/website/docs/more/infinite-output.md +27 -0
- {aider_ce-0.88.20.dist-info → aider_ce-0.88.38.dist-info}/METADATA +112 -70
- {aider_ce-0.88.20.dist-info → aider_ce-0.88.38.dist-info}/RECORD +112 -107
- aider_ce-0.88.38.dist-info/entry_points.txt +6 -0
- aider_ce-0.88.20.dist-info/entry_points.txt +0 -2
- /aider/tools/{tool_utils.py → utils/helpers.py} +0 -0
- {aider_ce-0.88.20.dist-info → aider_ce-0.88.38.dist-info}/WHEEL +0 -0
- {aider_ce-0.88.20.dist-info → aider_ce-0.88.38.dist-info}/licenses/LICENSE.txt +0 -0
- {aider_ce-0.88.20.dist-info → aider_ce-0.88.38.dist-info}/top_level.txt +0 -0
|
@@ -1,57 +1,57 @@
|
|
|
1
|
-
aider/__init__.py,sha256=
|
|
1
|
+
aider/__init__.py,sha256=FvY_ANMquu6rnivd0onp54wnIRWmuxgY4l6Si4KOcEM,497
|
|
2
2
|
aider/__main__.py,sha256=Vdhw8YA1K3wPMlbJQYL5WqvRzAKVeZ16mZQFO9VRmCo,62
|
|
3
|
-
aider/_version.py,sha256=
|
|
3
|
+
aider/_version.py,sha256=emGjx-CrwF49U_mb1qptE3DgEzz_YgG9dRm27TLxtVU,708
|
|
4
4
|
aider/analytics.py,sha256=c5ujaCcMc3yG-9rz_0oSsqBwmVQRxJnui6iE_yDyY_M,7507
|
|
5
|
-
aider/args.py,sha256=
|
|
5
|
+
aider/args.py,sha256=BPrDY5XDKYhur3pblKJ2Jy-p-z3O03qy9nl7dhc-kks,34533
|
|
6
6
|
aider/args_formatter.py,sha256=CBRnzHyZk-fFCK0ekAzb6C4PPJOU-VTpWIIsJe3qUhk,6369
|
|
7
7
|
aider/change_tracker.py,sha256=djUlUuewhwRAlC0x6jIUZNpn6_PK1YyiNTMYvlvDeTE,4884
|
|
8
|
-
aider/commands.py,sha256=
|
|
8
|
+
aider/commands.py,sha256=6FQXSxP5qH4xhA7uGihceRpd9fglihP5ZiHksmtYQc0,86233
|
|
9
9
|
aider/copypaste.py,sha256=J99QrXILUED_GPdEqxt7WjGZ5if8sfy0VQTzsV2jBrE,2095
|
|
10
10
|
aider/deprecated.py,sha256=SNeAWR7ih87F5AyFpC4pxRoJAaw8measBW583w0EUT8,4277
|
|
11
|
-
aider/diffs.py,sha256=
|
|
11
|
+
aider/diffs.py,sha256=otBSSFfRI4aqs57INLUFAvX00Gn0pCEdlDv5kSJtfV8,3061
|
|
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=WFiFixGOVNVsx-EKwa3eMgrMiFqtAU_uR_hIwmVlfYA,4084
|
|
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=4U17FgToMSsWtPIOi-JTmO5gQZa2Ni0uypUyCSGQwSI,4444
|
|
18
18
|
aider/help_pats.py,sha256=syn7pSVJdcf8uMKTxnZUZBQu-r8JMAi-rrC-k2er1Fk,376
|
|
19
|
-
aider/history.py,sha256=
|
|
20
|
-
aider/io.py,sha256=
|
|
19
|
+
aider/history.py,sha256=pFLvmY-FECQSURWqnKYjYSNBjE2NDkhBEI9cP-2h3cU,6221
|
|
20
|
+
aider/io.py,sha256=i6B8ZpMeKTFiTbLdGghLRS1z0m11-s5ptg3JxwRBkhY,63161
|
|
21
21
|
aider/linter.py,sha256=t5jwWZ1dvIzRtig1kTSjzl6u1LRfw0e19qwNIen2jAg,7998
|
|
22
22
|
aider/llm.py,sha256=dtT0mavXP1SyR0Zu_ysZXKdbs3y53q2PevvDKBUrs6s,1505
|
|
23
|
-
aider/main.py,sha256=
|
|
23
|
+
aider/main.py,sha256=9uugUnQrZylLrp_U08lJ9H9t54wn8jYPWvIwMSuxkxo,51716
|
|
24
24
|
aider/mdstream.py,sha256=fS9iQUQmIJPEMo7o1psPGE2yYj31MI3m3msdN-jEzUw,7594
|
|
25
|
-
aider/models.py,sha256=
|
|
25
|
+
aider/models.py,sha256=Inj05exJZjhUxyZxcGTU0RgnKkWq9NxxRHU21l-V8iA,45770
|
|
26
26
|
aider/onboarding.py,sha256=rWKJeWa2klS_Quizme-gwq-jcpODnXFn2zCfQRKMqlw,16161
|
|
27
27
|
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=T_wj32oue1k5vQu0zv4O3XQnuXvEG2KUU_PUVXX-LZc,22939
|
|
31
|
-
aider/repomap.py,sha256=
|
|
31
|
+
aider/repomap.py,sha256=Kgxy7afHPBltvpd0K6jf3PkYxfKDG7ZPhTL2_KjkMnM,42324
|
|
32
32
|
aider/report.py,sha256=e5PcUGiwVHbWW_5IH2_S2HpgPWW7h9Xol6pRnkl72hw,7617
|
|
33
33
|
aider/run_cmd.py,sha256=20O3RpHcGcUvbPSf_LCFgeZ8v5hKsCG97r6OOsaZtiQ,4297
|
|
34
|
-
aider/scrape.py,sha256=
|
|
34
|
+
aider/scrape.py,sha256=WOECwRc5YmlqctQT3nb55B2VBxj26pPuegKsRVSXXbY,8921
|
|
35
35
|
aider/sendchat.py,sha256=kXvBljLKadYKL22GFYb3UQOyYzkfBL6d1W4Z5bMLaGg,8128
|
|
36
36
|
aider/sessions.py,sha256=jPBtV7EReOUshFwVZYJd5A74QDqPqk2Ujmaw0mcW0MI,10261
|
|
37
37
|
aider/special.py,sha256=OhsBWWM-DWwjWbi6kE7EqR4CiUfyJ6qJuCgcmywZSAc,4415
|
|
38
|
-
aider/urls.py,sha256=
|
|
38
|
+
aider/urls.py,sha256=g63yWE7-Gt1AM0DkHHYuqADXhbMqIMnB6AhXZd0RzXg,1130
|
|
39
39
|
aider/utils.py,sha256=GuPxbgY2ikSd3WUe140z4q07ErAiYP4VYx9ySgou0l8,12257
|
|
40
|
-
aider/versioncheck.py,sha256=
|
|
40
|
+
aider/versioncheck.py,sha256=ls7bZr5vdE73fzg7BMbIuqFdCVodDG1VxMWh-iWRzro,3047
|
|
41
41
|
aider/voice.py,sha256=hNQCMCWhljcROJhzsvnkwgzzgQQbFORkpROhKeqICig,6797
|
|
42
42
|
aider/waiting.py,sha256=QbDnh1U6oJPqkUrRM3DC8iA5-djbKRW5iJh6Q3VOnrI,944
|
|
43
43
|
aider/watch.py,sha256=znCZhHCBlcMm-4SRJP-B0mWfsl5q26DAd-zlk2zykQ8,10641
|
|
44
44
|
aider/watch_prompts.py,sha256=JHmXPZUKm1b1og22QolboU-Xie6bJWhmlbKBi2StkdI,556
|
|
45
45
|
aider/coders/__init__.py,sha256=O5WEW4Ys-3GV6XU-_1l8F79dZFfBKw7b5jgxki5eXf0,1090
|
|
46
|
-
aider/coders/agent_coder.py,sha256=
|
|
47
|
-
aider/coders/agent_prompts.py,sha256=
|
|
48
|
-
aider/coders/architect_coder.py,sha256=
|
|
46
|
+
aider/coders/agent_coder.py,sha256=05kA1N8vtueUh0eq1Omo3n4grRL1ycAiHc4bdzJ98Qg,104484
|
|
47
|
+
aider/coders/agent_prompts.py,sha256=Hl8MpxnQOYxgSQo-dTCYcE9VqySwDz6wnLiycsbBnfI,5313
|
|
48
|
+
aider/coders/architect_coder.py,sha256=u5KIo9vrTqUuzpHvuNzj4rN54pvd9kzLXal14Dskr-0,2172
|
|
49
49
|
aider/coders/architect_prompts.py,sha256=R0_KxZjo-km_yNaeDAquDP9qfp3IdWgrdMirCWe0RIE,1658
|
|
50
50
|
aider/coders/ask_coder.py,sha256=Omk4Ih8-prefkMZ_jnRS3faoW5CQUakHOvZ-s7piM3U,210
|
|
51
51
|
aider/coders/ask_prompts.py,sha256=W6HwDUfzfOLt9q8sl6rw7fN7b5ND90FkxCZrtrWl5vY,1171
|
|
52
|
-
aider/coders/base_coder.py,sha256=
|
|
53
|
-
aider/coders/base_prompts.py,sha256=
|
|
54
|
-
aider/coders/chat_chunks.py,sha256=
|
|
52
|
+
aider/coders/base_coder.py,sha256=9HLmbSe9nRRlWX8a4ojAo4R7fy9JkYQJDLFsQ9ew4KQ,146554
|
|
53
|
+
aider/coders/base_prompts.py,sha256=Uri5JSlRyWvwVOdqUIAB5CalRi0E5-PITMxENBMl6xo,3916
|
|
54
|
+
aider/coders/chat_chunks.py,sha256=Xh4Qs1_nfzRAeok1LuNO2F2qH6-jrthVBAF9LdObB5s,2857
|
|
55
55
|
aider/coders/context_coder.py,sha256=_RSzu6ptHo2lkTN7-e9TpcZKzqbQF2eNX5MkyswGm3s,1577
|
|
56
56
|
aider/coders/context_prompts.py,sha256=lnHZal1daOWsyImJO8qk9Kqii4iFNxTRd_CuHV-llJ0,3082
|
|
57
57
|
aider/coders/editblock_coder.py,sha256=JE3wj1zNGZKLzawZAa5ZGnp4bRKm9w0xQAuq77WhNqM,19616
|
|
@@ -83,103 +83,108 @@ aider/coders/wholefile_func_coder.py,sha256=pyQHy-VP1gFb4-4EHmYLxRkCP0Ss4nlA4-aQ
|
|
|
83
83
|
aider/coders/wholefile_func_prompts.py,sha256=M5-d6qRYUeRTelK5w2mQYkVfFV_caPc-qGfNHlmbmJs,868
|
|
84
84
|
aider/coders/wholefile_prompts.py,sha256=9un0j4lH0mKh39wZaRA1Md9gQBQ_kdAzexbeEmqf8wo,2015
|
|
85
85
|
aider/helpers/__init__.py,sha256=8LyGlZH91mMKoeR93U5lwvypcoaJ4rWArkiB6dO_3g4,210
|
|
86
|
+
aider/helpers/coroutines.py,sha256=DhMDxb5hQ1xZqgvKAyot4zBEOPPLC6jqsmR1xdg-Gjs,162
|
|
87
|
+
aider/helpers/requests.py,sha256=GQM0OjiOaHTOboc6o_Evalc7R7_Hdkl7K95nUchmZhQ,1785
|
|
86
88
|
aider/helpers/similarity.py,sha256=fvyL4P2e7f1RO5YQwvutw_3rXffaEtXRBWk1eGSsrQ8,2923
|
|
87
89
|
aider/mcp/__init__.py,sha256=vYNfOKLMhDHXQyayTCFkZI1g53pBHDcTNOUziyKc_Jo,6747
|
|
88
90
|
aider/mcp/server.py,sha256=2r6rk9YxpSR-Gmn8hKtbspoTtoYvYTKpmdXs2wO3RHM,5457
|
|
89
91
|
aider/queries/tree-sitter-language-pack/README.md,sha256=ivZSEuWqYfUVLZl2AZZGRlm0bQsaG-VTBKBwACyM07k,291
|
|
90
92
|
aider/queries/tree-sitter-language-pack/arduino-tags.scm,sha256=HbgdothT9Jjk56COXTtUkVAdZ14rZNnqzLbWVLeRs5U,177
|
|
91
|
-
aider/queries/tree-sitter-language-pack/c-tags.scm,sha256=
|
|
93
|
+
aider/queries/tree-sitter-language-pack/c-tags.scm,sha256=JUS8PoZPoKaZSVAM4YBkdHJTf9ohJBzQ_0uZE-L88mQ,532
|
|
92
94
|
aider/queries/tree-sitter-language-pack/chatito-tags.scm,sha256=ISkmrp5gIVxoYIPnoqxxqBlZj5G9tzhwJMx6b0dEKnQ,338
|
|
93
|
-
aider/queries/tree-sitter-language-pack/clojure-tags.scm,sha256=
|
|
94
|
-
aider/queries/tree-sitter-language-pack/commonlisp-tags.scm,sha256=
|
|
95
|
-
aider/queries/tree-sitter-language-pack/cpp-tags.scm,sha256=
|
|
96
|
-
aider/queries/tree-sitter-language-pack/csharp-tags.scm,sha256=
|
|
95
|
+
aider/queries/tree-sitter-language-pack/clojure-tags.scm,sha256=Ws_dylZiKEO2OC3eEQX2YKD29QA58acbDBdWcSQURfI,361
|
|
96
|
+
aider/queries/tree-sitter-language-pack/commonlisp-tags.scm,sha256=yl8QeKeUm-32bNhK74CgvmDAsQSkKcV_LCxvIrcRnH8,4851
|
|
97
|
+
aider/queries/tree-sitter-language-pack/cpp-tags.scm,sha256=hd8ntQtP8QPF8HVyKKnHQOh1IDFexAH_4FHuOUfZ9dg,880
|
|
98
|
+
aider/queries/tree-sitter-language-pack/csharp-tags.scm,sha256=SOH2QM8hI7OMvhsoeSlWi09AA9y0qTpyPKcwo_1elcw,1315
|
|
97
99
|
aider/queries/tree-sitter-language-pack/d-tags.scm,sha256=LDP3orqZ98TTFSkV_PODEs8LspTcCqUMvKcLdZwtgkc,1420
|
|
98
|
-
aider/queries/tree-sitter-language-pack/dart-tags.scm,sha256=
|
|
100
|
+
aider/queries/tree-sitter-language-pack/dart-tags.scm,sha256=p-h4d3ozQYUx9tpF7Ho-hjWSh3CBn5niginm6sKNyVw,2428
|
|
99
101
|
aider/queries/tree-sitter-language-pack/elisp-tags.scm,sha256=1r8iOMM_DEpXEvlA1rE7KlhGEzcqa2W6eH4F2d1iu7Y,246
|
|
100
|
-
aider/queries/tree-sitter-language-pack/elixir-tags.scm,sha256=
|
|
101
|
-
aider/queries/tree-sitter-language-pack/elm-tags.scm,sha256=
|
|
102
|
+
aider/queries/tree-sitter-language-pack/elixir-tags.scm,sha256=Sk38wapiOVNpxU6WlBbXN_DicCouCNvT9U2KcUgh7Qo,1847
|
|
103
|
+
aider/queries/tree-sitter-language-pack/elm-tags.scm,sha256=knf-BGDZLi0vlvBuz_6pCJIgrkwataVnjLrh82oFNSA,1029
|
|
102
104
|
aider/queries/tree-sitter-language-pack/gleam-tags.scm,sha256=wdFVAkepPAZ10-5sBIVQSl45v95wZP9Foi_iYvM4YII,1416
|
|
103
|
-
aider/queries/tree-sitter-language-pack/go-tags.scm,sha256=
|
|
104
|
-
aider/queries/tree-sitter-language-pack/java-tags.scm,sha256=
|
|
105
|
-
aider/queries/tree-sitter-language-pack/javascript-tags.scm,sha256=
|
|
106
|
-
aider/queries/tree-sitter-language-pack/lua-tags.scm,sha256=
|
|
105
|
+
aider/queries/tree-sitter-language-pack/go-tags.scm,sha256=p_n0EJjGN8PKoY4K1Os7VkwmIv-IGUaxhd0qfw1gi-w,1468
|
|
106
|
+
aider/queries/tree-sitter-language-pack/java-tags.scm,sha256=XB5pgluk-LVY9kQevLNctroJDdrMZzO4gc1VZZ_Rt1E,787
|
|
107
|
+
aider/queries/tree-sitter-language-pack/javascript-tags.scm,sha256=iT8DZVEGzruTLzyqBuazmsZFiHrOpCCVgB51aA7lNcc,2585
|
|
108
|
+
aider/queries/tree-sitter-language-pack/lua-tags.scm,sha256=saeMSx-8lTxMgBdBjdjlfHExLKJRZXUnM0fvAIJlObw,1119
|
|
107
109
|
aider/queries/tree-sitter-language-pack/matlab-tags.scm,sha256=GqF7QBytU-xGkcUWkGlMi7iJ7XnmmoMFB_mtMKXaJgw,309
|
|
108
110
|
aider/queries/tree-sitter-language-pack/ocaml-tags.scm,sha256=NAcyzmQuQPUjkchrQvcfhsvKqdcqbAt5eFb1chfEhMA,2695
|
|
109
|
-
aider/queries/tree-sitter-language-pack/ocaml_interface-tags.scm,sha256=
|
|
111
|
+
aider/queries/tree-sitter-language-pack/ocaml_interface-tags.scm,sha256=Lw2gaKFfQY_zWGk040B2NVs2bF4ZqkpOvnYPpOBDln4,2080
|
|
110
112
|
aider/queries/tree-sitter-language-pack/pony-tags.scm,sha256=gGNWmiHzv8Ge0HZo81tev-xIqHIQqjRxPR52G048-zs,2191
|
|
111
113
|
aider/queries/tree-sitter-language-pack/properties-tags.scm,sha256=AbcjxhGpG6F6lpCHs83HRXD223b-wrHQYv-i9j09wtc,135
|
|
112
|
-
aider/queries/tree-sitter-language-pack/python-tags.scm,sha256=
|
|
113
|
-
aider/queries/tree-sitter-language-pack/r-tags.scm,sha256=
|
|
114
|
+
aider/queries/tree-sitter-language-pack/python-tags.scm,sha256=Qa1PCybIZHyNChBcriAQlnbwegWhuUJMgxi4dgvUMTo,724
|
|
115
|
+
aider/queries/tree-sitter-language-pack/r-tags.scm,sha256=BFDjo-RF_3qw1hZGRs0iwgqZWnCz0HYgdhV_6ZDKE0k,639
|
|
114
116
|
aider/queries/tree-sitter-language-pack/racket-tags.scm,sha256=iri2aFEabiim-geb-t3ClDVp1Zi8T_rX1H9L0tlpqK8,224
|
|
115
|
-
aider/queries/tree-sitter-language-pack/ruby-tags.scm,sha256=
|
|
116
|
-
aider/queries/tree-sitter-language-pack/rust-tags.scm,sha256=
|
|
117
|
-
aider/queries/tree-sitter-language-pack/solidity-tags.scm,sha256=
|
|
118
|
-
aider/queries/tree-sitter-language-pack/swift-tags.scm,sha256=
|
|
117
|
+
aider/queries/tree-sitter-language-pack/ruby-tags.scm,sha256=LR9cP06BvSwcaufnFAD3sUb1UR5dYPgrfMOCXZDZHmw,1494
|
|
118
|
+
aider/queries/tree-sitter-language-pack/rust-tags.scm,sha256=ojyWjn6mur4_HAzP7yg886AdaxnKICruKJ0OWBO9iU0,1528
|
|
119
|
+
aider/queries/tree-sitter-language-pack/solidity-tags.scm,sha256=kS-SNjpcZKOnd46aRKCgzcW3gt00t9bn1c1QS-_gc9E,1394
|
|
120
|
+
aider/queries/tree-sitter-language-pack/swift-tags.scm,sha256=2sYoxHkUXFK0LYXuGKNIQOPV4kej3cWwiMxi2dUMjTE,1512
|
|
119
121
|
aider/queries/tree-sitter-language-pack/udev-tags.scm,sha256=avj3u4prIR7o8hymHezOsqrOqjPSLGYo7C_lOL4Dxlg,417
|
|
120
122
|
aider/queries/tree-sitter-languages/README.md,sha256=CvHuhoq0bYOuIfrOQtB-CiE6qhPhEgHMS_jx76CcQZo,2610
|
|
121
|
-
aider/queries/tree-sitter-languages/c-tags.scm,sha256=
|
|
122
|
-
aider/queries/tree-sitter-languages/c_sharp-tags.scm,sha256=
|
|
123
|
-
aider/queries/tree-sitter-languages/cpp-tags.scm,sha256=
|
|
124
|
-
aider/queries/tree-sitter-languages/dart-tags.scm,sha256=
|
|
123
|
+
aider/queries/tree-sitter-languages/c-tags.scm,sha256=JUS8PoZPoKaZSVAM4YBkdHJTf9ohJBzQ_0uZE-L88mQ,532
|
|
124
|
+
aider/queries/tree-sitter-languages/c_sharp-tags.scm,sha256=TxtoMDPtjE75aHeT0AcTT3mEzWibp7PLx7zJfrvfSWE,1178
|
|
125
|
+
aider/queries/tree-sitter-languages/cpp-tags.scm,sha256=uArO_7YafierpkxY8eL_EjUBt1UQySqmWlPdbqJWVVc,874
|
|
126
|
+
aider/queries/tree-sitter-languages/dart-tags.scm,sha256=aT3J4Y5BeCbVtNUfTLwBwRVkxke4JE3Y4kUISs-KEV8,2329
|
|
125
127
|
aider/queries/tree-sitter-languages/elisp-tags.scm,sha256=wjm1YYD1vgjBbh0E2CzUnmagl82Uq6-LcEojmvhiJkY,332
|
|
126
|
-
aider/queries/tree-sitter-languages/elixir-tags.scm,sha256=
|
|
127
|
-
aider/queries/tree-sitter-languages/elm-tags.scm,sha256=
|
|
128
|
-
aider/queries/tree-sitter-languages/fortran-tags.scm,sha256=
|
|
129
|
-
aider/queries/tree-sitter-languages/go-tags.scm,sha256=
|
|
130
|
-
aider/queries/tree-sitter-languages/haskell-tags.scm,sha256=
|
|
128
|
+
aider/queries/tree-sitter-languages/elixir-tags.scm,sha256=yJRJoTnqFS1Zv-k2_78t-izCvtM-l38JMj-um98b5ds,1767
|
|
129
|
+
aider/queries/tree-sitter-languages/elm-tags.scm,sha256=NPe9Ffgfr0EFZ7hHdCD-OX-taAlyWWRwF-Q9450DNyc,1027
|
|
130
|
+
aider/queries/tree-sitter-languages/fortran-tags.scm,sha256=LQi2xXJTICdLXcWl7aZxpUr49_oOPCRigoUmrYODrH0,486
|
|
131
|
+
aider/queries/tree-sitter-languages/go-tags.scm,sha256=pOBs4yZR6JzwXRkNioNL2GW6fLiY_k8uTwbNHEx1Hyc,975
|
|
132
|
+
aider/queries/tree-sitter-languages/haskell-tags.scm,sha256=ih_ZKAllIobLn8xA2SBszzWb67vCw91Dh85xgW4qa5E,193
|
|
131
133
|
aider/queries/tree-sitter-languages/hcl-tags.scm,sha256=yOVCBeF4C3ZrFG-gg0adWg2QkxylPcI2dbVeEgD7EPE,2137
|
|
132
|
-
aider/queries/tree-sitter-languages/java-tags.scm,sha256=
|
|
133
|
-
aider/queries/tree-sitter-languages/javascript-tags.scm,sha256=
|
|
134
|
-
aider/queries/tree-sitter-languages/julia-tags.scm,sha256=
|
|
135
|
-
aider/queries/tree-sitter-languages/kotlin-tags.scm,sha256=
|
|
134
|
+
aider/queries/tree-sitter-languages/java-tags.scm,sha256=vM-uIpujHpfIwJABKrvTbcdyJnc8AgUhNW5XvIdTp28,789
|
|
135
|
+
aider/queries/tree-sitter-languages/javascript-tags.scm,sha256=L7g67sMObMYcRIB5vdxnizKs-iGa8SFbIjudPs402cg,2530
|
|
136
|
+
aider/queries/tree-sitter-languages/julia-tags.scm,sha256=ht6DYO1OCdOouGhRY0Qvf6EL2jSuAs9ocOLaLdCIRe0,1718
|
|
137
|
+
aider/queries/tree-sitter-languages/kotlin-tags.scm,sha256=fGHFNwu6RoTOmWGqlTq-F8rT38jQ1LqjdIHiieJysMg,704
|
|
136
138
|
aider/queries/tree-sitter-languages/matlab-tags.scm,sha256=GqF7QBytU-xGkcUWkGlMi7iJ7XnmmoMFB_mtMKXaJgw,309
|
|
137
139
|
aider/queries/tree-sitter-languages/ocaml-tags.scm,sha256=NAcyzmQuQPUjkchrQvcfhsvKqdcqbAt5eFb1chfEhMA,2695
|
|
138
|
-
aider/queries/tree-sitter-languages/ocaml_interface-tags.scm,sha256=
|
|
139
|
-
aider/queries/tree-sitter-languages/php-tags.scm,sha256=
|
|
140
|
-
aider/queries/tree-sitter-languages/python-tags.scm,sha256=
|
|
140
|
+
aider/queries/tree-sitter-languages/ocaml_interface-tags.scm,sha256=tQ9sioyqyWj8i4yqFzSlNBYxxlSuCX2x7ZX26jyKit0,2161
|
|
141
|
+
aider/queries/tree-sitter-languages/php-tags.scm,sha256=VzYHNQc3eyH5zAlJnFMMBi_YVLoH-UDrTULYbH9Zo3Y,968
|
|
142
|
+
aider/queries/tree-sitter-languages/python-tags.scm,sha256=KNDKm0iHjyF70kXE74DpfS3MhPSMrhhrfOuD6TTB4kA,612
|
|
141
143
|
aider/queries/tree-sitter-languages/ql-tags.scm,sha256=9qVpBGSgFC9fSK4E_5sO2gYe4_jPvN-D18SD6S5lNR8,707
|
|
142
|
-
aider/queries/tree-sitter-languages/ruby-tags.scm,sha256=
|
|
143
|
-
aider/queries/tree-sitter-languages/rust-tags.scm,sha256=
|
|
144
|
-
aider/queries/tree-sitter-languages/scala-tags.scm,sha256=
|
|
145
|
-
aider/queries/tree-sitter-languages/typescript-tags.scm,sha256=
|
|
146
|
-
aider/queries/tree-sitter-languages/zig-tags.scm,sha256=
|
|
144
|
+
aider/queries/tree-sitter-languages/ruby-tags.scm,sha256=LR9cP06BvSwcaufnFAD3sUb1UR5dYPgrfMOCXZDZHmw,1494
|
|
145
|
+
aider/queries/tree-sitter-languages/rust-tags.scm,sha256=EP3YECY_cPdImYkpFYpeadJ64tqoUbIox7jJhxwT8Yo,1528
|
|
146
|
+
aider/queries/tree-sitter-languages/scala-tags.scm,sha256=HBRHennSRDoZP6hCJxdm9kV_18jIuAz6h4eIwQztIwo,1742
|
|
147
|
+
aider/queries/tree-sitter-languages/typescript-tags.scm,sha256=6NvC0AztL6Yv_1BbBri0bB0bEjg6QQrrQOI0rVCufaM,1350
|
|
148
|
+
aider/queries/tree-sitter-languages/zig-tags.scm,sha256=F5ni7ruEDRrDiO7rfey11T9_vSXgo9PU8exNDFWFx8s,449
|
|
147
149
|
aider/resources/__init__.py,sha256=09npmZFptj6XR6ZeEuekpcK2stecKEjI59zR0Vz2JU8,142
|
|
148
|
-
aider/resources/model-metadata.json,sha256=
|
|
149
|
-
aider/resources/model-settings.yml,sha256=
|
|
150
|
-
aider/tools/__init__.py,sha256=
|
|
151
|
-
aider/tools/command.py,sha256=
|
|
152
|
-
aider/tools/command_interactive.py,sha256=
|
|
153
|
-
aider/tools/delete_block.py,sha256=
|
|
154
|
-
aider/tools/delete_line.py,sha256=
|
|
155
|
-
aider/tools/delete_lines.py,sha256=
|
|
156
|
-
aider/tools/extract_lines.py,sha256
|
|
157
|
-
aider/tools/finished.py,sha256=
|
|
158
|
-
aider/tools/git_branch.py,sha256=
|
|
159
|
-
aider/tools/git_diff.py,sha256=
|
|
160
|
-
aider/tools/git_log.py,sha256=
|
|
161
|
-
aider/tools/git_remote.py,sha256=
|
|
162
|
-
aider/tools/git_show.py,sha256=
|
|
163
|
-
aider/tools/git_status.py,sha256
|
|
164
|
-
aider/tools/grep.py,sha256=
|
|
165
|
-
aider/tools/indent_lines.py,sha256=
|
|
166
|
-
aider/tools/insert_block.py,sha256=
|
|
167
|
-
aider/tools/list_changes.py,sha256=
|
|
168
|
-
aider/tools/ls.py,sha256=
|
|
169
|
-
aider/tools/make_editable.py,sha256=
|
|
170
|
-
aider/tools/make_readonly.py,sha256=
|
|
171
|
-
aider/tools/remove.py,sha256=
|
|
172
|
-
aider/tools/replace_all.py,sha256=
|
|
173
|
-
aider/tools/replace_line.py,sha256=
|
|
174
|
-
aider/tools/replace_lines.py,sha256=
|
|
175
|
-
aider/tools/replace_text.py,sha256=
|
|
176
|
-
aider/tools/show_numbered_context.py,sha256=
|
|
177
|
-
aider/tools/
|
|
178
|
-
aider/tools/undo_change.py,sha256=
|
|
179
|
-
aider/tools/update_todo_list.py,sha256
|
|
180
|
-
aider/tools/view.py,sha256=
|
|
181
|
-
aider/tools/view_files_matching.py,sha256=
|
|
182
|
-
aider/tools/view_files_with_symbol.py,sha256=
|
|
150
|
+
aider/resources/model-metadata.json,sha256=Ue7r6AwxuZqTA2fRExa64ZAfm3_X76B8uUIdofAc774,980330
|
|
151
|
+
aider/resources/model-settings.yml,sha256=78fTu10va553uepl_RKoYXhETctS_bN79R2aw-wDeuE,63400
|
|
152
|
+
aider/tools/__init__.py,sha256=lf2LtmDoy2MoxI5RsG4f_9fM8MMUw4klWuXFucyfv0U,1298
|
|
153
|
+
aider/tools/command.py,sha256=5Se2PyY8wi073a1rUu6Zfs5Zwt4Y5n6TlDdXQXMSfBg,3957
|
|
154
|
+
aider/tools/command_interactive.py,sha256=lD5Wg5k9eI5km6Hx4Ir9TDyfzsCaJyWGrZB_IQMbPis,4313
|
|
155
|
+
aider/tools/delete_block.py,sha256=3gaqxmQ21nUdjVCP2OJ4TonffwEJW46DfAEBMofBvU0,5792
|
|
156
|
+
aider/tools/delete_line.py,sha256=86PE46qwEd0nA4zIY6iPQAWIX9CFkPBDfIUE32wk0s8,4308
|
|
157
|
+
aider/tools/delete_lines.py,sha256=hSDvtDtShZ6rrONkvt3Gt23JH4JIZvu9_Fuyz2e1B1o,5373
|
|
158
|
+
aider/tools/extract_lines.py,sha256=_KFOpZTt41VdBOgWc8QPzjxQAdgSwfIvWSocfr25LFY,14802
|
|
159
|
+
aider/tools/finished.py,sha256=YjLKXFPuY3vapnV_KKiPu5jVawH-eeyaFBta1gahuRw,1008
|
|
160
|
+
aider/tools/git_branch.py,sha256=SpDJM7cNBHUAoXU93DDdiUb_5kVO6t_c42rFb4RUnT8,4470
|
|
161
|
+
aider/tools/git_diff.py,sha256=6aPiYQD-Ki6Tu7zYfZzJ7S1P33UJ2yAy4AVGeRYaP6o,1491
|
|
162
|
+
aider/tools/git_log.py,sha256=kMCoC-BuKkAPO6kYQryAyAVN0R9ts2RkY0xb_7E7EhY,1340
|
|
163
|
+
aider/tools/git_remote.py,sha256=WgTJoUE1CAyyGlNdCzgsLU-L0oD3yhqqPrAkVZJ2nKs,1078
|
|
164
|
+
aider/tools/git_show.py,sha256=U76udzTblw19dqVYvzCl0im2VDRdPV4gWC3ROrRiVEw,1128
|
|
165
|
+
aider/tools/git_status.py,sha256=hRwxFvH-UsxJ_zYbH2Dso_xKUr1a2hNySNXxcSXpFnU,853
|
|
166
|
+
aider/tools/grep.py,sha256=HSR41PQchjTnkCkzTkJLrdIkjNNHid5LwLpXLY8Eavg,9895
|
|
167
|
+
aider/tools/indent_lines.py,sha256=YjuWJY_xyP3q9hQx5tZKjb5WPcK0JT9DZv6JqlqLa-M,7791
|
|
168
|
+
aider/tools/insert_block.py,sha256=lvb7AysXqWCN0La07Ec_kcAm32banDAxyTz_h36zbpM,10357
|
|
169
|
+
aider/tools/list_changes.py,sha256=kUEAQ2-7PK1CKqwL5f2BuN6vowg2mKRD96En2c_fj-0,2341
|
|
170
|
+
aider/tools/ls.py,sha256=y8stGS69IJGkUmxwvwSTkac5JzDrvGfRTz9a8eJsqQw,2828
|
|
171
|
+
aider/tools/make_editable.py,sha256=lj-t_H5CUnN0zHgfhMfz9uvhLV2C7CtaDBlckR1jNjE,2667
|
|
172
|
+
aider/tools/make_readonly.py,sha256=Xhm6-OvlGSx1ZG7I86z8W2B0YVZAfuMrD9CVQ4eTN5c,1891
|
|
173
|
+
aider/tools/remove.py,sha256=umWDEZ6TNhtRiWmfgJu_BkN-igujc4Lyxz0MfdbS99c,2993
|
|
174
|
+
aider/tools/replace_all.py,sha256=dGl2bFL4_um-HR_BQNOkOkalHtX5WCCedHYcb2akpvI,4240
|
|
175
|
+
aider/tools/replace_line.py,sha256=otTnMp1BGGdGOqMkHrHfvm9sttY_UAZh8CdJCeanzA4,5436
|
|
176
|
+
aider/tools/replace_lines.py,sha256=vI3-a5h9H3uQhSp-BEemwU4-ET3uJhyV57RbeovRo0Q,6679
|
|
177
|
+
aider/tools/replace_text.py,sha256=LilsjF0hV8NRlX5CELvgjIvk7BEusghVsiCtka4JzzE,6943
|
|
178
|
+
aider/tools/show_numbered_context.py,sha256=RGjsWsn51jXUqdGW2gQN_C9VrHoHrQ9BGKUzXOygwMI,5195
|
|
179
|
+
aider/tools/thinking.py,sha256=hc0SVqAOJsaIM6nVOSgYJX2O4kPzUoSUKVcg6zzMU_k,1751
|
|
180
|
+
aider/tools/undo_change.py,sha256=Z4-KO2rvG1PtbY8tiCz0zIVXwYcRxGpt9rLGQ5EeBuo,3381
|
|
181
|
+
aider/tools/update_todo_list.py,sha256=d1I7J0C5KvPGSs2gdyt-Fy7z1UkogGdNapZdz97DDBM,5536
|
|
182
|
+
aider/tools/view.py,sha256=fcMFv9_TUMSZUl-MzrIVGQkOFGdWDy9AoTA1hySh0sg,1366
|
|
183
|
+
aider/tools/view_files_matching.py,sha256=fFUozee-EAlM6ugW008ISkNxuC4EBqYp2JluTgjl8-Q,5728
|
|
184
|
+
aider/tools/view_files_with_symbol.py,sha256=Dj5uzFydWy_u6aaoyOoAcDbZaV25vZwCWYGJJWP7s8g,5073
|
|
185
|
+
aider/tools/utils/base_tool.py,sha256=f9zt2HOHbg0t-1dYzceGmjtvJpRvT00yOZjd5xsx44o,2165
|
|
186
|
+
aider/tools/utils/helpers.py,sha256=iPDqRVG8UFksMeEiZZo_zd4-3NWKLdndBwEc-2uDkM0,11653
|
|
187
|
+
aider/tools/utils/output.py,sha256=Y9dQrfOc7XM3GZeVYJOirkJiHQlLSC1dcK761dVzGU4,3805
|
|
183
188
|
aider/website/Gemfile,sha256=TERjHg_DN8PeMwdyY8xqy55IR-Pqc47ffRHoneo64QU,196
|
|
184
189
|
aider/website/_includes/blame.md,sha256=rfN9EpmSW4cytdifOd2B-G7gcfY-SgtXntkyvay8pXY,5377
|
|
185
190
|
aider/website/_includes/get-started.md,sha256=IxIQCMownQNDouRbDkHHzsl6q7wfh2e-zKLEK3RpKfw,435
|
|
@@ -196,11 +201,11 @@ aider/website/_includes/replit-pipx.md,sha256=9K06E2U7AT4fRkG00CMvoOI1DoNPRoKfbp
|
|
|
196
201
|
aider/website/_includes/works-best.md,sha256=bZU0inFkhHNRZcRz6DQVbuurq2-kRh-ZYSzAXjF3jYc,191
|
|
197
202
|
aider/website/_sass/custom/custom.scss,sha256=G_CNr2QNFpiycf_74pr6Qz8cxWtwTd0xspkToXw3-7A,1957
|
|
198
203
|
aider/website/docs/config.md,sha256=GAkiU8AfYWCnRdhw3KGOieC30pU_TZQ3a-Lmzae3IT8,749
|
|
199
|
-
aider/website/docs/faq.md,sha256
|
|
204
|
+
aider/website/docs/faq.md,sha256=6csJWig5Qi8CR6nVjWSpyc25VBkRKlfd-Sef_QBsb4A,13625
|
|
200
205
|
aider/website/docs/git.md,sha256=FGnjUbh5eAhStVCzsdcC0my6NuKnc4s2E-JXdEG7z4w,3758
|
|
201
206
|
aider/website/docs/index.md,sha256=J0qH0e9Q98HtnZos0irBb8OlZTXPty6eTF8JMPWMpGM,1819
|
|
202
207
|
aider/website/docs/install.md,sha256=6C8JHzDDpuYlehgu6UyVGFw-rGxnu8Ic7_ovhSSCdzg,2882
|
|
203
|
-
aider/website/docs/languages.md,sha256=
|
|
208
|
+
aider/website/docs/languages.md,sha256=wK75YB8WniQQeSvOW53H2uVDXEec4BbqY6ASPRuUjRM,16610
|
|
204
209
|
aider/website/docs/llms.md,sha256=fq0VL5uzXFBCbXRbltIcuH-AO5gB36Cw3k26nX5hcIA,1562
|
|
205
210
|
aider/website/docs/more-info.md,sha256=rNeoFIwC7bYcW78YaUFMnoWA8nowuNTGPo3RInPnU48,124
|
|
206
211
|
aider/website/docs/repomap.md,sha256=rEHIhD1mwEu1lRFVAVEY73AvEHQXvmLygMuJVbrx7sg,3900
|
|
@@ -208,14 +213,14 @@ aider/website/docs/scripting.md,sha256=Fj0J3BLUTUAoUFBMpk1Kayj1paU1c_fXyg-5ZlVFK
|
|
|
208
213
|
aider/website/docs/sessions.md,sha256=B1JfssHpOe5u47PfFjjjZTitMJ50CHh_EmCpSRE21Xw,4967
|
|
209
214
|
aider/website/docs/troubleshooting.md,sha256=UYFgCP8zhJxGJqo4PI0-J-EB-zZ9HtRsIKfCP-qa9lg,218
|
|
210
215
|
aider/website/docs/usage.md,sha256=LMQpEDZ7rUYgmXN2HYbKg2W2h5sTASlkj89MRHw99rY,3592
|
|
211
|
-
aider/website/docs/config/adv-model-settings.md,sha256=
|
|
212
|
-
aider/website/docs/config/agent-mode.md,sha256=
|
|
216
|
+
aider/website/docs/config/adv-model-settings.md,sha256=tJLpfiXAtFU9oTOVZj4uE8C4_3Pupj41gTtJts1WQyc,66077
|
|
217
|
+
aider/website/docs/config/agent-mode.md,sha256=AOOmZMWwWB4ql_4WF3hRL-pyMChijftBYSgwwGO-xHA,8416
|
|
213
218
|
aider/website/docs/config/aider_conf.md,sha256=n-FMGab3dKUMnBg0KVEWtvWJEUh5M4z9pvt0FssPw58,15591
|
|
214
219
|
aider/website/docs/config/api-keys.md,sha256=uOUd9oERvYN6VzKtcsjun_7tth15AYEfRMJXT5Ne0KU,2046
|
|
215
220
|
aider/website/docs/config/dotenv.md,sha256=za-5qU6jq8_0dETghtF4Ja8sa1vc13JPzk8L_VfrcvU,14845
|
|
216
221
|
aider/website/docs/config/editor.md,sha256=ShJHfRhe1En59omZKcjFprELf85F7t8SdPh9l9y1rNk,2611
|
|
217
222
|
aider/website/docs/config/mcp.md,sha256=JfeqhXoqv37-PUfg6jkJmDywAH7g7hb13_Xouix-eA8,2544
|
|
218
|
-
aider/website/docs/config/model-aliases.md,sha256
|
|
223
|
+
aider/website/docs/config/model-aliases.md,sha256=DD1jHiJC9wgJtRysDr8CwvlAMgP0cgNmGft-HgtIoRQ,3645
|
|
219
224
|
aider/website/docs/config/options.md,sha256=H2Xa8ZySGKf9Aa-jWY0aRV0jX7uIBHqBS0Uwf6lW7N8,28562
|
|
220
225
|
aider/website/docs/config/reasoning.md,sha256=oFvjPXBsTqpjt1QFvJB_A-AWU4_P3SYAt_ED18M_A9A,7131
|
|
221
226
|
aider/website/docs/install/codespaces.md,sha256=a6OUtvUHkHuM0yb5WVhOMCWC-XYLkao86e6be1Hs6FM,783
|
|
@@ -243,7 +248,7 @@ aider/website/docs/llms/warnings.md,sha256=FVhgQ8Taa3f-hyu-FVNuW2p2hWii4hRNplW3B
|
|
|
243
248
|
aider/website/docs/llms/xai.md,sha256=0VJ02dZQiKgVPFIcbR8fAB9W_DPKvxYTwF2R04mslrc,961
|
|
244
249
|
aider/website/docs/more/analytics.md,sha256=BzpBusCZ6i8J4p3U05_THfMasqL6UHMCP4SGzVR8Jpg,3933
|
|
245
250
|
aider/website/docs/more/edit-formats.md,sha256=DTxQgd7wVHh5gTQ59H5x3Jm0W7UmQRvyPpz2FWcGV_o,3067
|
|
246
|
-
aider/website/docs/more/infinite-output.md,sha256=
|
|
251
|
+
aider/website/docs/more/infinite-output.md,sha256=U4F2F42qmvaXcdgawIpfb8lVcK-zRDfonPTbIT1XTvU,6609
|
|
247
252
|
aider/website/docs/recordings/auto-accept-architect.md,sha256=TZf-RbX_bfPIPlZ5HRO9IDJpBfYLTsQ2Xm6hMrU2OjY,1131
|
|
248
253
|
aider/website/docs/recordings/dont-drop-original-read-files.md,sha256=5OKuv_nB2euf-Mxq7JX_oCSRxU_od0X1NKtRUMHcy5M,1196
|
|
249
254
|
aider/website/docs/recordings/index.md,sha256=Ie3lQAGA0KyGxld7CqxpWrjtfpHYYquVA-N4QpbNEUk,639
|
|
@@ -271,9 +276,9 @@ aider/website/docs/usage/tutorials.md,sha256=ZKBztbUtucHOiv9h8gvWiWTP6MTSsFyz4mA
|
|
|
271
276
|
aider/website/docs/usage/voice.md,sha256=BtX7pHRgHRWUmrNbS4JssC-SO8RrJ_OetBCtIYpO0pU,3452
|
|
272
277
|
aider/website/docs/usage/watch.md,sha256=OVF14lGtv1vhSXRE8PpxQ3YW-uXSifarUbmLBjmLRyA,7940
|
|
273
278
|
aider/website/share/index.md,sha256=P51aDw9AT8AVbsU7v6g1tWuMjly7y_plM_ZI1ScaT8Y,3172
|
|
274
|
-
aider_ce-0.88.
|
|
275
|
-
aider_ce-0.88.
|
|
276
|
-
aider_ce-0.88.
|
|
277
|
-
aider_ce-0.88.
|
|
278
|
-
aider_ce-0.88.
|
|
279
|
-
aider_ce-0.88.
|
|
279
|
+
aider_ce-0.88.38.dist-info/licenses/LICENSE.txt,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
|
280
|
+
aider_ce-0.88.38.dist-info/METADATA,sha256=s2DepSqGZ2WZdBCZwWrcrx0kh3ojaSC-iQhbKJQ6pnQ,9038
|
|
281
|
+
aider_ce-0.88.38.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
282
|
+
aider_ce-0.88.38.dist-info/entry_points.txt,sha256=JWIsZAG5p_zKbxu_F0lID2DQON4tB2h1orhm0HwWdJk,140
|
|
283
|
+
aider_ce-0.88.38.dist-info/top_level.txt,sha256=uwOA6ycgSiRLrBsaRBcIeN_eBKAX78U01_KDEHR8mBk,6
|
|
284
|
+
aider_ce-0.88.38.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|