aider-ce 0.87.2.dev9__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.

Files changed (264) hide show
  1. aider/__init__.py +20 -0
  2. aider/__main__.py +4 -0
  3. aider/_version.py +34 -0
  4. aider/analytics.py +258 -0
  5. aider/args.py +1014 -0
  6. aider/args_formatter.py +228 -0
  7. aider/change_tracker.py +133 -0
  8. aider/coders/__init__.py +36 -0
  9. aider/coders/architect_coder.py +48 -0
  10. aider/coders/architect_prompts.py +40 -0
  11. aider/coders/ask_coder.py +9 -0
  12. aider/coders/ask_prompts.py +35 -0
  13. aider/coders/base_coder.py +3013 -0
  14. aider/coders/base_prompts.py +87 -0
  15. aider/coders/chat_chunks.py +64 -0
  16. aider/coders/context_coder.py +53 -0
  17. aider/coders/context_prompts.py +75 -0
  18. aider/coders/editblock_coder.py +657 -0
  19. aider/coders/editblock_fenced_coder.py +10 -0
  20. aider/coders/editblock_fenced_prompts.py +143 -0
  21. aider/coders/editblock_func_coder.py +141 -0
  22. aider/coders/editblock_func_prompts.py +27 -0
  23. aider/coders/editblock_prompts.py +177 -0
  24. aider/coders/editor_diff_fenced_coder.py +9 -0
  25. aider/coders/editor_diff_fenced_prompts.py +11 -0
  26. aider/coders/editor_editblock_coder.py +9 -0
  27. aider/coders/editor_editblock_prompts.py +21 -0
  28. aider/coders/editor_whole_coder.py +9 -0
  29. aider/coders/editor_whole_prompts.py +12 -0
  30. aider/coders/help_coder.py +16 -0
  31. aider/coders/help_prompts.py +46 -0
  32. aider/coders/navigator_coder.py +2711 -0
  33. aider/coders/navigator_legacy_prompts.py +338 -0
  34. aider/coders/navigator_prompts.py +530 -0
  35. aider/coders/patch_coder.py +706 -0
  36. aider/coders/patch_prompts.py +161 -0
  37. aider/coders/search_replace.py +757 -0
  38. aider/coders/shell.py +37 -0
  39. aider/coders/single_wholefile_func_coder.py +102 -0
  40. aider/coders/single_wholefile_func_prompts.py +27 -0
  41. aider/coders/udiff_coder.py +429 -0
  42. aider/coders/udiff_prompts.py +117 -0
  43. aider/coders/udiff_simple.py +14 -0
  44. aider/coders/udiff_simple_prompts.py +25 -0
  45. aider/coders/wholefile_coder.py +144 -0
  46. aider/coders/wholefile_func_coder.py +134 -0
  47. aider/coders/wholefile_func_prompts.py +27 -0
  48. aider/coders/wholefile_prompts.py +70 -0
  49. aider/commands.py +1946 -0
  50. aider/copypaste.py +72 -0
  51. aider/deprecated.py +126 -0
  52. aider/diffs.py +128 -0
  53. aider/dump.py +29 -0
  54. aider/editor.py +147 -0
  55. aider/exceptions.py +107 -0
  56. aider/format_settings.py +26 -0
  57. aider/gui.py +545 -0
  58. aider/help.py +163 -0
  59. aider/help_pats.py +19 -0
  60. aider/history.py +178 -0
  61. aider/io.py +1257 -0
  62. aider/linter.py +304 -0
  63. aider/llm.py +47 -0
  64. aider/main.py +1297 -0
  65. aider/mcp/__init__.py +94 -0
  66. aider/mcp/server.py +119 -0
  67. aider/mdstream.py +243 -0
  68. aider/models.py +1344 -0
  69. aider/onboarding.py +428 -0
  70. aider/openrouter.py +129 -0
  71. aider/prompts.py +56 -0
  72. aider/queries/tree-sitter-language-pack/README.md +7 -0
  73. aider/queries/tree-sitter-language-pack/arduino-tags.scm +5 -0
  74. aider/queries/tree-sitter-language-pack/c-tags.scm +9 -0
  75. aider/queries/tree-sitter-language-pack/chatito-tags.scm +16 -0
  76. aider/queries/tree-sitter-language-pack/clojure-tags.scm +7 -0
  77. aider/queries/tree-sitter-language-pack/commonlisp-tags.scm +122 -0
  78. aider/queries/tree-sitter-language-pack/cpp-tags.scm +15 -0
  79. aider/queries/tree-sitter-language-pack/csharp-tags.scm +26 -0
  80. aider/queries/tree-sitter-language-pack/d-tags.scm +26 -0
  81. aider/queries/tree-sitter-language-pack/dart-tags.scm +92 -0
  82. aider/queries/tree-sitter-language-pack/elisp-tags.scm +5 -0
  83. aider/queries/tree-sitter-language-pack/elixir-tags.scm +54 -0
  84. aider/queries/tree-sitter-language-pack/elm-tags.scm +19 -0
  85. aider/queries/tree-sitter-language-pack/gleam-tags.scm +41 -0
  86. aider/queries/tree-sitter-language-pack/go-tags.scm +42 -0
  87. aider/queries/tree-sitter-language-pack/java-tags.scm +20 -0
  88. aider/queries/tree-sitter-language-pack/javascript-tags.scm +88 -0
  89. aider/queries/tree-sitter-language-pack/lua-tags.scm +34 -0
  90. aider/queries/tree-sitter-language-pack/matlab-tags.scm +10 -0
  91. aider/queries/tree-sitter-language-pack/ocaml-tags.scm +115 -0
  92. aider/queries/tree-sitter-language-pack/ocaml_interface-tags.scm +98 -0
  93. aider/queries/tree-sitter-language-pack/pony-tags.scm +39 -0
  94. aider/queries/tree-sitter-language-pack/properties-tags.scm +5 -0
  95. aider/queries/tree-sitter-language-pack/python-tags.scm +14 -0
  96. aider/queries/tree-sitter-language-pack/r-tags.scm +21 -0
  97. aider/queries/tree-sitter-language-pack/racket-tags.scm +12 -0
  98. aider/queries/tree-sitter-language-pack/ruby-tags.scm +64 -0
  99. aider/queries/tree-sitter-language-pack/rust-tags.scm +60 -0
  100. aider/queries/tree-sitter-language-pack/solidity-tags.scm +43 -0
  101. aider/queries/tree-sitter-language-pack/swift-tags.scm +51 -0
  102. aider/queries/tree-sitter-language-pack/udev-tags.scm +20 -0
  103. aider/queries/tree-sitter-languages/README.md +23 -0
  104. aider/queries/tree-sitter-languages/c-tags.scm +9 -0
  105. aider/queries/tree-sitter-languages/c_sharp-tags.scm +46 -0
  106. aider/queries/tree-sitter-languages/cpp-tags.scm +15 -0
  107. aider/queries/tree-sitter-languages/dart-tags.scm +91 -0
  108. aider/queries/tree-sitter-languages/elisp-tags.scm +8 -0
  109. aider/queries/tree-sitter-languages/elixir-tags.scm +54 -0
  110. aider/queries/tree-sitter-languages/elm-tags.scm +19 -0
  111. aider/queries/tree-sitter-languages/go-tags.scm +30 -0
  112. aider/queries/tree-sitter-languages/hcl-tags.scm +77 -0
  113. aider/queries/tree-sitter-languages/java-tags.scm +20 -0
  114. aider/queries/tree-sitter-languages/javascript-tags.scm +88 -0
  115. aider/queries/tree-sitter-languages/kotlin-tags.scm +27 -0
  116. aider/queries/tree-sitter-languages/matlab-tags.scm +10 -0
  117. aider/queries/tree-sitter-languages/ocaml-tags.scm +115 -0
  118. aider/queries/tree-sitter-languages/ocaml_interface-tags.scm +98 -0
  119. aider/queries/tree-sitter-languages/php-tags.scm +26 -0
  120. aider/queries/tree-sitter-languages/python-tags.scm +12 -0
  121. aider/queries/tree-sitter-languages/ql-tags.scm +26 -0
  122. aider/queries/tree-sitter-languages/ruby-tags.scm +64 -0
  123. aider/queries/tree-sitter-languages/rust-tags.scm +60 -0
  124. aider/queries/tree-sitter-languages/scala-tags.scm +65 -0
  125. aider/queries/tree-sitter-languages/typescript-tags.scm +41 -0
  126. aider/reasoning_tags.py +82 -0
  127. aider/repo.py +621 -0
  128. aider/repomap.py +988 -0
  129. aider/report.py +200 -0
  130. aider/resources/__init__.py +3 -0
  131. aider/resources/model-metadata.json +699 -0
  132. aider/resources/model-settings.yml +2046 -0
  133. aider/run_cmd.py +132 -0
  134. aider/scrape.py +284 -0
  135. aider/sendchat.py +61 -0
  136. aider/special.py +203 -0
  137. aider/tools/__init__.py +26 -0
  138. aider/tools/command.py +58 -0
  139. aider/tools/command_interactive.py +53 -0
  140. aider/tools/delete_block.py +120 -0
  141. aider/tools/delete_line.py +112 -0
  142. aider/tools/delete_lines.py +137 -0
  143. aider/tools/extract_lines.py +276 -0
  144. aider/tools/grep.py +171 -0
  145. aider/tools/indent_lines.py +155 -0
  146. aider/tools/insert_block.py +211 -0
  147. aider/tools/list_changes.py +51 -0
  148. aider/tools/ls.py +49 -0
  149. aider/tools/make_editable.py +46 -0
  150. aider/tools/make_readonly.py +29 -0
  151. aider/tools/remove.py +48 -0
  152. aider/tools/replace_all.py +77 -0
  153. aider/tools/replace_line.py +125 -0
  154. aider/tools/replace_lines.py +160 -0
  155. aider/tools/replace_text.py +125 -0
  156. aider/tools/show_numbered_context.py +101 -0
  157. aider/tools/tool_utils.py +313 -0
  158. aider/tools/undo_change.py +60 -0
  159. aider/tools/view.py +13 -0
  160. aider/tools/view_files_at_glob.py +65 -0
  161. aider/tools/view_files_matching.py +103 -0
  162. aider/tools/view_files_with_symbol.py +121 -0
  163. aider/urls.py +17 -0
  164. aider/utils.py +454 -0
  165. aider/versioncheck.py +113 -0
  166. aider/voice.py +187 -0
  167. aider/waiting.py +221 -0
  168. aider/watch.py +318 -0
  169. aider/watch_prompts.py +12 -0
  170. aider/website/Gemfile +8 -0
  171. aider/website/_includes/blame.md +162 -0
  172. aider/website/_includes/get-started.md +22 -0
  173. aider/website/_includes/help-tip.md +5 -0
  174. aider/website/_includes/help.md +24 -0
  175. aider/website/_includes/install.md +5 -0
  176. aider/website/_includes/keys.md +4 -0
  177. aider/website/_includes/model-warnings.md +67 -0
  178. aider/website/_includes/multi-line.md +22 -0
  179. aider/website/_includes/python-m-aider.md +5 -0
  180. aider/website/_includes/recording.css +228 -0
  181. aider/website/_includes/recording.md +34 -0
  182. aider/website/_includes/replit-pipx.md +9 -0
  183. aider/website/_includes/works-best.md +1 -0
  184. aider/website/_sass/custom/custom.scss +103 -0
  185. aider/website/docs/config/adv-model-settings.md +2260 -0
  186. aider/website/docs/config/aider_conf.md +548 -0
  187. aider/website/docs/config/api-keys.md +90 -0
  188. aider/website/docs/config/dotenv.md +493 -0
  189. aider/website/docs/config/editor.md +127 -0
  190. aider/website/docs/config/mcp.md +95 -0
  191. aider/website/docs/config/model-aliases.md +104 -0
  192. aider/website/docs/config/options.md +890 -0
  193. aider/website/docs/config/reasoning.md +210 -0
  194. aider/website/docs/config.md +44 -0
  195. aider/website/docs/faq.md +384 -0
  196. aider/website/docs/git.md +76 -0
  197. aider/website/docs/index.md +47 -0
  198. aider/website/docs/install/codespaces.md +39 -0
  199. aider/website/docs/install/docker.md +57 -0
  200. aider/website/docs/install/optional.md +100 -0
  201. aider/website/docs/install/replit.md +8 -0
  202. aider/website/docs/install.md +115 -0
  203. aider/website/docs/languages.md +264 -0
  204. aider/website/docs/legal/contributor-agreement.md +111 -0
  205. aider/website/docs/legal/privacy.md +104 -0
  206. aider/website/docs/llms/anthropic.md +77 -0
  207. aider/website/docs/llms/azure.md +48 -0
  208. aider/website/docs/llms/bedrock.md +132 -0
  209. aider/website/docs/llms/cohere.md +34 -0
  210. aider/website/docs/llms/deepseek.md +32 -0
  211. aider/website/docs/llms/gemini.md +49 -0
  212. aider/website/docs/llms/github.md +111 -0
  213. aider/website/docs/llms/groq.md +36 -0
  214. aider/website/docs/llms/lm-studio.md +39 -0
  215. aider/website/docs/llms/ollama.md +75 -0
  216. aider/website/docs/llms/openai-compat.md +39 -0
  217. aider/website/docs/llms/openai.md +58 -0
  218. aider/website/docs/llms/openrouter.md +78 -0
  219. aider/website/docs/llms/other.md +111 -0
  220. aider/website/docs/llms/vertex.md +50 -0
  221. aider/website/docs/llms/warnings.md +10 -0
  222. aider/website/docs/llms/xai.md +53 -0
  223. aider/website/docs/llms.md +54 -0
  224. aider/website/docs/more/analytics.md +127 -0
  225. aider/website/docs/more/edit-formats.md +116 -0
  226. aider/website/docs/more/infinite-output.md +159 -0
  227. aider/website/docs/more-info.md +8 -0
  228. aider/website/docs/recordings/auto-accept-architect.md +31 -0
  229. aider/website/docs/recordings/dont-drop-original-read-files.md +35 -0
  230. aider/website/docs/recordings/index.md +21 -0
  231. aider/website/docs/recordings/model-accepts-settings.md +69 -0
  232. aider/website/docs/recordings/tree-sitter-language-pack.md +80 -0
  233. aider/website/docs/repomap.md +112 -0
  234. aider/website/docs/scripting.md +100 -0
  235. aider/website/docs/troubleshooting/aider-not-found.md +24 -0
  236. aider/website/docs/troubleshooting/edit-errors.md +76 -0
  237. aider/website/docs/troubleshooting/imports.md +62 -0
  238. aider/website/docs/troubleshooting/models-and-keys.md +54 -0
  239. aider/website/docs/troubleshooting/support.md +79 -0
  240. aider/website/docs/troubleshooting/token-limits.md +96 -0
  241. aider/website/docs/troubleshooting/warnings.md +12 -0
  242. aider/website/docs/troubleshooting.md +11 -0
  243. aider/website/docs/usage/browser.md +57 -0
  244. aider/website/docs/usage/caching.md +49 -0
  245. aider/website/docs/usage/commands.md +133 -0
  246. aider/website/docs/usage/conventions.md +119 -0
  247. aider/website/docs/usage/copypaste.md +121 -0
  248. aider/website/docs/usage/images-urls.md +48 -0
  249. aider/website/docs/usage/lint-test.md +118 -0
  250. aider/website/docs/usage/modes.md +211 -0
  251. aider/website/docs/usage/not-code.md +179 -0
  252. aider/website/docs/usage/notifications.md +87 -0
  253. aider/website/docs/usage/tips.md +79 -0
  254. aider/website/docs/usage/tutorials.md +30 -0
  255. aider/website/docs/usage/voice.md +121 -0
  256. aider/website/docs/usage/watch.md +294 -0
  257. aider/website/docs/usage.md +102 -0
  258. aider/website/share/index.md +101 -0
  259. aider_ce-0.87.2.dev9.dist-info/METADATA +543 -0
  260. aider_ce-0.87.2.dev9.dist-info/RECORD +264 -0
  261. aider_ce-0.87.2.dev9.dist-info/WHEEL +5 -0
  262. aider_ce-0.87.2.dev9.dist-info/entry_points.txt +3 -0
  263. aider_ce-0.87.2.dev9.dist-info/licenses/LICENSE.txt +202 -0
  264. aider_ce-0.87.2.dev9.dist-info/top_level.txt +1 -0
@@ -0,0 +1,264 @@
1
+ aider/__init__.py,sha256=FoykFmA5M7CS-GdteU9ltnuwWXn9C-yaOlboNBw_VqA,496
2
+ aider/__main__.py,sha256=Vdhw8YA1K3wPMlbJQYL5WqvRzAKVeZ16mZQFO9VRmCo,62
3
+ aider/_version.py,sha256=wKLm5wQkUDN8vlNmNTeIoZJPil1kzrne2C0Sib2BmbM,719
4
+ aider/analytics.py,sha256=c5ujaCcMc3yG-9rz_0oSsqBwmVQRxJnui6iE_yDyY_M,7507
5
+ aider/args.py,sha256=yjfHJm-eKBEXJ7MlqoGQEjkFhBlCvGtwp44AajAtROs,32491
6
+ aider/args_formatter.py,sha256=CBRnzHyZk-fFCK0ekAzb6C4PPJOU-VTpWIIsJe3qUhk,6369
7
+ aider/change_tracker.py,sha256=djUlUuewhwRAlC0x6jIUZNpn6_PK1YyiNTMYvlvDeTE,4884
8
+ aider/commands.py,sha256=uhJC21k7ARzBXTQRlvwQ_SPf9b2z9Ct-YisCGCfQ2Fw,73679
9
+ aider/copypaste.py,sha256=J99QrXILUED_GPdEqxt7WjGZ5if8sfy0VQTzsV2jBrE,2095
10
+ aider/deprecated.py,sha256=SNeAWR7ih87F5AyFpC4pxRoJAaw8measBW583w0EUT8,4277
11
+ aider/diffs.py,sha256=y6_rxIKe3FPCIsVy_RRkHdofguYOhYBr2Oytr5AqjHI,3028
12
+ aider/dump.py,sha256=-naWnGTc0-lAe_93WxBTpunPRfzNlUK7Q5zgXOprHfA,653
13
+ aider/editor.py,sha256=_WAipJYEOx-q69mPp_hHAQ2yfeoZklBYjS0rTLxCHEA,4364
14
+ aider/exceptions.py,sha256=M-Jtq5o1XDwQ8xLM29lsW1otRGk61Z7D65XGX2ufdnY,3796
15
+ aider/format_settings.py,sha256=wHW4bLTKwqUKDGX4onxirC4cNgeJ-lHPuS1H04_R444,1041
16
+ aider/gui.py,sha256=JnHvli1JTCGHAgsOZ8HkAWOKAFxmngbyviZIJeYvjsw,17573
17
+ aider/help.py,sha256=Q8KS0G05Ick2YsVetpj9lAlNH3WjJTHg3t8sf5ZwlC0,4434
18
+ aider/help_pats.py,sha256=syn7pSVJdcf8uMKTxnZUZBQu-r8JMAi-rrC-k2er1Fk,376
19
+ aider/history.py,sha256=r3OP3kVxl6-PZmXEI9oK1mVAM-hYCbUqacISz4e_khY,5957
20
+ aider/io.py,sha256=ncUO5OFbNIBW6Pd7yaBnJL-_JP7ejDftDN8t1mr4hT4,45534
21
+ aider/linter.py,sha256=t5jwWZ1dvIzRtig1kTSjzl6u1LRfw0e19qwNIen2jAg,7998
22
+ aider/llm.py,sha256=fGCemP1X9MBwrDfsTKGJ_1sx-yKz3DyoOvxZYOkvGak,1103
23
+ aider/main.py,sha256=mC6-Q2UQG8-vWWG4GbkOY_vSk4I212pBEzCSs-i9-A0,44997
24
+ aider/mdstream.py,sha256=fS9iQUQmIJPEMo7o1psPGE2yYj31MI3m3msdN-jEzUw,7594
25
+ aider/models.py,sha256=JTLuuOSiSCmz2FRuEMPj7ST5eFI76AUYOSqK5XD_FWg,47193
26
+ aider/onboarding.py,sha256=XdCPsi6idsRvV0TsnaBOk0QoH-g3KgctafSMxoxvx6k,16105
27
+ aider/openrouter.py,sha256=FAdv7L8xgILXgmC_b1gnuYJStmpaPyiZMp-7nSdInlQ,4642
28
+ aider/prompts.py,sha256=Qv-JS8BzGjusEPmR3-qmjjvN3S9mb7W4KpWiGui-Jk0,1954
29
+ aider/reasoning_tags.py,sha256=VOg5wM7JSrMo47OyS1FFuLrr2cp2KyutEC4_zsUsCbY,2288
30
+ aider/repo.py,sha256=ZLq0E6gwm7KabzYASib-7bqv-E55JZOWCpXfC3IZJeE,22922
31
+ aider/repomap.py,sha256=lz1JXCIdriFcaIqH9f2NL8zHE6JcId7gYM4l5hGm7I4,32118
32
+ aider/report.py,sha256=WobVDEK6YxB0GpHrF5twTfUYH5dsNWFIHFsB9lds7E8,5899
33
+ aider/run_cmd.py,sha256=9-NpSL4hlqIndf_EN1jnmWfjX7vIPbDgKgGPGRAr2Rw,4223
34
+ aider/scrape.py,sha256=Ei4Jy1xUsVD4lmuyVMONAVVHEB03hiVsGuE54etY4G0,8336
35
+ aider/sendchat.py,sha256=Gq5A5E2kEg0MPE3tTKulhQseroXCwsGtLDH_OEHB2-4,1854
36
+ aider/special.py,sha256=OhsBWWM-DWwjWbi6kE7EqR4CiUfyJ6qJuCgcmywZSAc,4415
37
+ aider/urls.py,sha256=W0OL4pahSIZAaSUHPvn9KPN1aIkXE5nAKcizMKy4EKg,1122
38
+ aider/utils.py,sha256=wkT43yJx59Q0OfIlzNX2n9rPyEEo7WLKXdXoxNJzdz4,12231
39
+ aider/versioncheck.py,sha256=R9R1gUJYgOtmUycpJ4YqxCkCOylQBSiZ_p_BAnHJ8H4,2977
40
+ aider/voice.py,sha256=JKV-IZ7ZwL71ItfX54OmJOzPSq5ZPlGteBIunNcUkCU,6150
41
+ aider/waiting.py,sha256=55uw6FYlJNnfCVZaOQNKi_f0twzA5xcJS38fryq-agY,7646
42
+ aider/watch.py,sha256=znCZhHCBlcMm-4SRJP-B0mWfsl5q26DAd-zlk2zykQ8,10641
43
+ aider/watch_prompts.py,sha256=JHmXPZUKm1b1og22QolboU-Xie6bJWhmlbKBi2StkdI,556
44
+ aider/coders/__init__.py,sha256=iB0SkjLra5cb5byPx-bzrmlH6Ud7GnpdOG3pWMhysLs,1102
45
+ aider/coders/architect_coder.py,sha256=b7KqtivnllPdyMfxbnEUd9G0C1ZFaiappV25Rz0DkMs,1622
46
+ aider/coders/architect_prompts.py,sha256=R0_KxZjo-km_yNaeDAquDP9qfp3IdWgrdMirCWe0RIE,1658
47
+ aider/coders/ask_coder.py,sha256=Omk4Ih8-prefkMZ_jnRS3faoW5CQUakHOvZ-s7piM3U,210
48
+ aider/coders/ask_prompts.py,sha256=W6HwDUfzfOLt9q8sl6rw7fN7b5ND90FkxCZrtrWl5vY,1171
49
+ aider/coders/base_coder.py,sha256=sHQlPb2voheR1QKuqQFZUoB8vgh1AWa5rzLdirshMfk,109882
50
+ aider/coders/base_prompts.py,sha256=O3bBjhf0hgvtKbQ9QyOMnRy8LrmfLyT9dVAcXxHS_3k,3659
51
+ aider/coders/chat_chunks.py,sha256=8HPet6cmQdgWvaA_tGpinO4ASMst53uTcSEtNVTYDXE,1981
52
+ aider/coders/context_coder.py,sha256=Y5LdIaYHywMB03lXsmHTYsDnyHIHJ6FNZLMWa9wjArs,1571
53
+ aider/coders/context_prompts.py,sha256=lnHZal1daOWsyImJO8qk9Kqii4iFNxTRd_CuHV-llJ0,3082
54
+ aider/coders/editblock_coder.py,sha256=JE3wj1zNGZKLzawZAa5ZGnp4bRKm9w0xQAuq77WhNqM,19616
55
+ aider/coders/editblock_fenced_coder.py,sha256=ZaU43k4w4jH1oQAKq-LJ3OpLSyLvT2t9apwspYjjqvg,346
56
+ aider/coders/editblock_fenced_prompts.py,sha256=2YyHKt9RaN1KpCiW9n8kGBp8oRxP1nU7KLdguM2cCbU,4415
57
+ aider/coders/editblock_func_coder.py,sha256=hVSjSz6Vz_vqmQqt2eheUAYtYMY7OV1S9BLiPTquUZs,5317
58
+ aider/coders/editblock_func_prompts.py,sha256=t5NLHkggCxZPLOAwo35fml0hYtIDn-nmIU7nRpBBlnQ,886
59
+ aider/coders/editblock_prompts.py,sha256=VAp3QYC4TpPGluOMHSF_2Jwrki6GyO7K3jxJVt-aaOE,5938
60
+ aider/coders/editor_diff_fenced_coder.py,sha256=xrv0bCCBXwdmy1CpWmqi1frlSYsnpA0TQv29M7hgT94,338
61
+ aider/coders/editor_diff_fenced_prompts.py,sha256=2ph1ftiriMEOVo1Z63oaIKofzwb0pC48GWKQ3zlzM6k,272
62
+ aider/coders/editor_editblock_coder.py,sha256=6CDjf4_S6FiGipPNXc9_D6Sz9aIZPlW2w4fgJPq_6Pg,307
63
+ aider/coders/editor_editblock_prompts.py,sha256=9XDmgfgM5RUobztMLrDcmb8_3z-4682IB_65eeO5jls,782
64
+ aider/coders/editor_whole_coder.py,sha256=PvF4giX0sUWji5qRQDhxsNkve1tzi8txZAT9Mi3nl_E,302
65
+ aider/coders/editor_whole_prompts.py,sha256=J6uUa89ZLoWJlbmwzXzvjVwdRgBbRmwfs9K3czZoJ7A,474
66
+ aider/coders/help_coder.py,sha256=aQH7WTTCDUVNIOhA5-aSU00kaX6s6KaA1nAUoqlM2LU,355
67
+ aider/coders/help_prompts.py,sha256=V4TWmubkM0vQt4M1luVSjGHXNw0Fw1tTPPUh7HzOpRM,1524
68
+ aider/coders/navigator_coder.py,sha256=U7aWgZwzH4O852WSp-stdujvJNjPdEMKMZjEziXRD6A,123764
69
+ aider/coders/navigator_legacy_prompts.py,sha256=ZxI-bc_JtnJXiu2JF65PrF60rckzDFntwTrhy8Rm0g8,17861
70
+ aider/coders/navigator_prompts.py,sha256=dsqW0HWy4LGKpgJdTtLIJz4QaD8XdJOr5R2jpLYC3xo,34863
71
+ aider/coders/patch_coder.py,sha256=f6-7VilMaMeYcZFQgIVWFycePo6IfZ6r9DQT5DpShBE,30288
72
+ aider/coders/patch_prompts.py,sha256=_fG1WlkrCkc3bTu-yEZhwhikjz8xUF52-1nVsjrAs7w,6053
73
+ aider/coders/search_replace.py,sha256=5Qzib7g4bt82sI2yyCf7hpl599wkobxZgVGnrCCgEkc,19813
74
+ aider/coders/shell.py,sha256=jSKol5ICraol7pAHmZu-58nhJjI13_vHieuxqNspFiY,1801
75
+ aider/coders/single_wholefile_func_coder.py,sha256=m3ufhuz8843P9HlSm7RoLONQ1AK8pRrv-W4oyG2U45s,2967
76
+ aider/coders/single_wholefile_func_prompts.py,sha256=ipzROzYhWZolmbHSxw5W-11Q2iNpyWnWAp41OsCdrIo,867
77
+ aider/coders/udiff_coder.py,sha256=xtOVArLjWNqgnz2nvQ1isk-UNo3icWa8Rjd05quCJZI,11041
78
+ aider/coders/udiff_prompts.py,sha256=KCI0OiL28ern2X5yIjQ3MMyl8dvmwrxXfEI8nMzvlrI,3466
79
+ aider/coders/udiff_simple.py,sha256=UjovEM-j51gLRZOpEL_dFxVTPs0CMwTJJNfUIaMKiE8,452
80
+ aider/coders/udiff_simple_prompts.py,sha256=t6k8nFDQaKjdxXKwMiSNSe1BL6kAaUrgaTIPPOEr4_M,888
81
+ aider/coders/wholefile_coder.py,sha256=uPoNNeSia1wrl4oiPjwnYrtVej7hXa2OepGsJC9t1S8,5131
82
+ aider/coders/wholefile_func_coder.py,sha256=RKHzPNNdSuwogJ5rJEvCzmSoaxKx8zlPbCOtWvXv98I,4249
83
+ aider/coders/wholefile_func_prompts.py,sha256=M5-d6qRYUeRTelK5w2mQYkVfFV_caPc-qGfNHlmbmJs,868
84
+ aider/coders/wholefile_prompts.py,sha256=_311WMDUWMRqQTkrOShB3sau8zyAGW06FL94vl1beYE,2140
85
+ aider/mcp/__init__.py,sha256=KCT2FvT5dMVd9UmfA5GPZa8u-s4vCmHLABIskeN8hlQ,3489
86
+ aider/mcp/server.py,sha256=_y9DgkKqF7SkF0q-m5Rf-yRtUkllWNXMvRbLMm8zDR8,4203
87
+ aider/queries/tree-sitter-language-pack/README.md,sha256=ivZSEuWqYfUVLZl2AZZGRlm0bQsaG-VTBKBwACyM07k,291
88
+ aider/queries/tree-sitter-language-pack/arduino-tags.scm,sha256=HbgdothT9Jjk56COXTtUkVAdZ14rZNnqzLbWVLeRs5U,177
89
+ aider/queries/tree-sitter-language-pack/c-tags.scm,sha256=EIz45o5hBh8yEuck5ZR_4IpcGyWSeNrzxFmtkKZGt2k,461
90
+ aider/queries/tree-sitter-language-pack/chatito-tags.scm,sha256=ISkmrp5gIVxoYIPnoqxxqBlZj5G9tzhwJMx6b0dEKnQ,338
91
+ aider/queries/tree-sitter-language-pack/clojure-tags.scm,sha256=CRvISM9eKamZgNTSkwMAOXTG3yl-92vZvRFFg5mwFy8,194
92
+ aider/queries/tree-sitter-language-pack/commonlisp-tags.scm,sha256=GYJlluTPEdrxn4jpYTX5YQAqk171rVBw7IBiCygMgtw,4713
93
+ aider/queries/tree-sitter-language-pack/cpp-tags.scm,sha256=2fSqTUcc01ABMHkA0JeG8axEOEXRfEIul8UKc9_tKGI,809
94
+ aider/queries/tree-sitter-language-pack/csharp-tags.scm,sha256=KORfK3ehKor6Pf6T5iniuoQr16EcHtUe0q3XIsCjPJs,1162
95
+ aider/queries/tree-sitter-language-pack/d-tags.scm,sha256=LDP3orqZ98TTFSkV_PODEs8LspTcCqUMvKcLdZwtgkc,1420
96
+ aider/queries/tree-sitter-language-pack/dart-tags.scm,sha256=Pa_leZjxxXQO7mH_zF5o-kZ5lqVxgvbyp8oQb_nZ9KA,2267
97
+ aider/queries/tree-sitter-language-pack/elisp-tags.scm,sha256=1r8iOMM_DEpXEvlA1rE7KlhGEzcqa2W6eH4F2d1iu7Y,246
98
+ aider/queries/tree-sitter-language-pack/elixir-tags.scm,sha256=fg9TDpbCixLr8UXNcNnfgFlR3Y7d3vtzLRb3LK84UaQ,1682
99
+ aider/queries/tree-sitter-language-pack/elm-tags.scm,sha256=Wp1D5wEGzFa_2biBWRaKbghDs57lDGqqsZd7DbPkdn4,953
100
+ aider/queries/tree-sitter-language-pack/gleam-tags.scm,sha256=wdFVAkepPAZ10-5sBIVQSl45v95wZP9Foi_iYvM4YII,1416
101
+ aider/queries/tree-sitter-language-pack/go-tags.scm,sha256=TE4fQ7PtQvHKPetrhHeDqjMz01KFKFsxFjypnJMv8pI,1339
102
+ aider/queries/tree-sitter-language-pack/java-tags.scm,sha256=Xid8cnOPL1v5SOtxfq8dOi98bWrUPL7XeO8_I2qBrfE,624
103
+ aider/queries/tree-sitter-language-pack/javascript-tags.scm,sha256=0qlZIwDdsvoEGM0cYD3s2ez27FbYuz8epZAo-cLP1uI,2306
104
+ aider/queries/tree-sitter-language-pack/lua-tags.scm,sha256=lqhCVn7KnBVhW8oo_wY9me15nEBTu9BS5YlF1zUTOPs,945
105
+ aider/queries/tree-sitter-language-pack/matlab-tags.scm,sha256=GqF7QBytU-xGkcUWkGlMi7iJ7XnmmoMFB_mtMKXaJgw,309
106
+ aider/queries/tree-sitter-language-pack/ocaml-tags.scm,sha256=NAcyzmQuQPUjkchrQvcfhsvKqdcqbAt5eFb1chfEhMA,2695
107
+ aider/queries/tree-sitter-language-pack/ocaml_interface-tags.scm,sha256=2Vtp9o9EgQ0_kLUkIDXLOAkX9wp5cj_NwdovlwhiidQ,2009
108
+ aider/queries/tree-sitter-language-pack/pony-tags.scm,sha256=gGNWmiHzv8Ge0HZo81tev-xIqHIQqjRxPR52G048-zs,2191
109
+ aider/queries/tree-sitter-language-pack/properties-tags.scm,sha256=AbcjxhGpG6F6lpCHs83HRXD223b-wrHQYv-i9j09wtc,135
110
+ aider/queries/tree-sitter-language-pack/python-tags.scm,sha256=KDCrM7iaUwXZ_hb2wVHrE2_EVCq_ASo3-BmbzsLtFk0,437
111
+ aider/queries/tree-sitter-language-pack/r-tags.scm,sha256=3cb2Wt-8Tt1RGBNDPgo4nI9qROf00ONNVqPHv8Th-Mk,461
112
+ aider/queries/tree-sitter-language-pack/racket-tags.scm,sha256=iri2aFEabiim-geb-t3ClDVp1Zi8T_rX1H9L0tlpqK8,224
113
+ aider/queries/tree-sitter-language-pack/ruby-tags.scm,sha256=vIidsCeE2A0vdFN18yXKqUWmpXMrGXyo4un_0Mxqr6s,1290
114
+ aider/queries/tree-sitter-language-pack/rust-tags.scm,sha256=3rz1XqKaOPKPWRUNPTW5OX_TYEDj5tQZfMxBH3EMB6g,1451
115
+ aider/queries/tree-sitter-language-pack/solidity-tags.scm,sha256=3uCJsbhwp-dVTiSsrGLt-PQ0uAnjmqUeHFPSEXd2JvM,1395
116
+ aider/queries/tree-sitter-language-pack/swift-tags.scm,sha256=ZvJcfjmUDZ9w14AXKSPPxf4gvpdE_qzBxDjfCczYrIQ,1439
117
+ aider/queries/tree-sitter-language-pack/udev-tags.scm,sha256=avj3u4prIR7o8hymHezOsqrOqjPSLGYo7C_lOL4Dxlg,417
118
+ aider/queries/tree-sitter-languages/README.md,sha256=xE2gaSTeKL13T-ebi3S_PxbPTwRQOm9ymcisZwt6-qI,2467
119
+ aider/queries/tree-sitter-languages/c-tags.scm,sha256=EIz45o5hBh8yEuck5ZR_4IpcGyWSeNrzxFmtkKZGt2k,461
120
+ aider/queries/tree-sitter-languages/c_sharp-tags.scm,sha256=wKyFtOFIk-kqIFB2yJBbu1VGRUhdkAnDpxo8sXubkjw,1025
121
+ aider/queries/tree-sitter-languages/cpp-tags.scm,sha256=cAFwtQk3ZKsvCVWrp1fmhSwOP8WGTCEDRR5CQuzLlY4,803
122
+ aider/queries/tree-sitter-languages/dart-tags.scm,sha256=AjxpyJIXuLjP5u3U89bhWergxus0fbUKk1x1uIHCKPw,2251
123
+ aider/queries/tree-sitter-languages/elisp-tags.scm,sha256=wjm1YYD1vgjBbh0E2CzUnmagl82Uq6-LcEojmvhiJkY,332
124
+ aider/queries/tree-sitter-languages/elixir-tags.scm,sha256=eO20nPIwI7_vq4Fob6U5RjX1wLKgn6Gglj41ITpE6eg,1605
125
+ aider/queries/tree-sitter-languages/elm-tags.scm,sha256=4qTEWJCAd7_BOfwyky0q_NYzAMtGdiq7qwo1GIhXmag,951
126
+ aider/queries/tree-sitter-languages/go-tags.scm,sha256=mHtS5NEuxWJGfVz1rq4YlJRMYVDAl5tf7iYnm6RikVE,848
127
+ aider/queries/tree-sitter-languages/hcl-tags.scm,sha256=yOVCBeF4C3ZrFG-gg0adWg2QkxylPcI2dbVeEgD7EPE,2137
128
+ aider/queries/tree-sitter-languages/java-tags.scm,sha256=7WKb-djGv0Ief6XEWQPYpfLpgJHtMPPukIUi55PegvE,627
129
+ aider/queries/tree-sitter-languages/javascript-tags.scm,sha256=svVct6pxbcYP_-xEBwzGy6t1SlN7ajkEUCivUkBZn_Q,2251
130
+ aider/queries/tree-sitter-languages/kotlin-tags.scm,sha256=ugk8v7Or3PXiBk-_HfZznwLuV-b-s3TYm03Wm3q2h_o,632
131
+ aider/queries/tree-sitter-languages/matlab-tags.scm,sha256=GqF7QBytU-xGkcUWkGlMi7iJ7XnmmoMFB_mtMKXaJgw,309
132
+ aider/queries/tree-sitter-languages/ocaml-tags.scm,sha256=NAcyzmQuQPUjkchrQvcfhsvKqdcqbAt5eFb1chfEhMA,2695
133
+ aider/queries/tree-sitter-languages/ocaml_interface-tags.scm,sha256=2Vtp9o9EgQ0_kLUkIDXLOAkX9wp5cj_NwdovlwhiidQ,2009
134
+ aider/queries/tree-sitter-languages/php-tags.scm,sha256=vmE5CH2N46HiQxUpR_FL41ilQqsWsigojiacWXtwTuE,714
135
+ aider/queries/tree-sitter-languages/python-tags.scm,sha256=6-npVJM6y6C1q7d6VgcfohN75_iu7QtrLnvwO_L2EmA,325
136
+ aider/queries/tree-sitter-languages/ql-tags.scm,sha256=9qVpBGSgFC9fSK4E_5sO2gYe4_jPvN-D18SD6S5lNR8,707
137
+ aider/queries/tree-sitter-languages/ruby-tags.scm,sha256=vIidsCeE2A0vdFN18yXKqUWmpXMrGXyo4un_0Mxqr6s,1290
138
+ aider/queries/tree-sitter-languages/rust-tags.scm,sha256=9ljM1nzhfPs_ZTRw7cr2P9ToOyhGcKkCoN4_HPXSWi4,1451
139
+ aider/queries/tree-sitter-languages/scala-tags.scm,sha256=UxQjz80JIrrJ7Pm56uUnQyThfmQNvwk7aQzPNypB-Ao,1761
140
+ aider/queries/tree-sitter-languages/typescript-tags.scm,sha256=OMdCeedPiA24ky82DpgTMKXK_l2ySTuF2zrQ2fJAi9E,1253
141
+ aider/resources/__init__.py,sha256=09npmZFptj6XR6ZeEuekpcK2stecKEjI59zR0Vz2JU8,142
142
+ aider/resources/model-metadata.json,sha256=EZoxtaB8c2vzjB6iYbg_H-R47MREfLrxAp7J6deLyGg,27715
143
+ aider/resources/model-settings.yml,sha256=PWqFcO_xOThjhUSR9CBoYMmY_XrBJ48fgv7R1uVpZWA,57634
144
+ aider/tools/__init__.py,sha256=LVV7Cp4C74O5BCKWzES4L1I2K0RSf25WnKb683mOHi8,1198
145
+ aider/tools/command.py,sha256=TxUByCebyNVpob3Or9pLmSuR9Q0XLvsE4wb9aH1-sk4,2604
146
+ aider/tools/command_interactive.py,sha256=dgq_XagpIQ9VV79v0lMS87lWcoOwy1bFUT0-EudBz1w,2135
147
+ aider/tools/delete_block.py,sha256=BOu2xYQAWgOKthZah1w4dPw1qGTNhdBYofDHxZFfSIg,4279
148
+ aider/tools/delete_line.py,sha256=KQiUU0tqWxDAF9IZLnLolFce2IaSuTX28fXcRDkBpHU,3896
149
+ aider/tools/delete_lines.py,sha256=FOK6APobJNkYWMnbDJL_SmGTZgC4a_227565yWWWPrA,4838
150
+ aider/tools/extract_lines.py,sha256=sMFYUuibMECliPbZP2CSA-YUX4Ol33Kt4peXovGzG4Y,12473
151
+ aider/tools/grep.py,sha256=QCJNpR8BMf6cy46sDRax7ej-NpaDdYuWR_LkWFswOko,7219
152
+ aider/tools/indent_lines.py,sha256=Tn40BpBQYxremMmQwwFH9ywvKFPfR8LFOF0wfCNRsac,5999
153
+ aider/tools/insert_block.py,sha256=6ejikcnUfgp5CRQ-TtysxUj5ZW0Uz_oXxGDk59NqiZ4,7921
154
+ aider/tools/list_changes.py,sha256=Ik3yPJ0ODqnbpsEzNcSoJGewnBnhu47Gxul0kzVZlfQ,1655
155
+ aider/tools/ls.py,sha256=oHd15qADtZ8sz8IzUnZtl0z1bJKdJxop5q7uU1sNmRI,1772
156
+ aider/tools/make_editable.py,sha256=3kR9GIhG-uoeFnm--m_mxih-F3WRGWlsFhx0Z2Ys1qs,1876
157
+ aider/tools/make_readonly.py,sha256=4VE3dh70_b3cjlcXXm6SEnOl3lMjm9HUdHU3bm6am50,1145
158
+ aider/tools/remove.py,sha256=SSyGYglW2UyavNuuyx5xhi2GPd8AohsRMeA845fFiZ8,1981
159
+ aider/tools/replace_all.py,sha256=vq_Zo48ZCmCWPvkoQKpqeuNW9C-iAD25SiNA_wWPpps,2706
160
+ aider/tools/replace_line.py,sha256=ZkHej0QzB1XR8sSXOr2gsp9U7t9oOVYoUXehtv-taDc,4755
161
+ aider/tools/replace_lines.py,sha256=pvzFB-F7Xue_Ht_cqB4luXY5xFUCSB6PRZoqx6ZmW2s,5555
162
+ aider/tools/replace_text.py,sha256=UblItTzVxgx8CA7okf5FODk9Wf2T5Z_VZDnVP4gpncg,4458
163
+ aider/tools/show_numbered_context.py,sha256=eSPVmkhGKeV7hWt2V3mWbsxJxxBbIsm57vXyLkOJTeI,4131
164
+ aider/tools/tool_utils.py,sha256=iPDqRVG8UFksMeEiZZo_zd4-3NWKLdndBwEc-2uDkM0,11653
165
+ aider/tools/undo_change.py,sha256=CO_pQ5Pth0mJcLVo560Uh3EYRmqxVgqYe5ORJe4NxLk,2626
166
+ aider/tools/view.py,sha256=_1uz0q8grqNKNjSCvPUYmxBoxFUedbDDAIcFPKWKtDI,487
167
+ aider/tools/view_files_at_glob.py,sha256=6CbUAW-kS6a2HlPCS6vbTfqk6spFCqaSnq_J093a4Xo,2553
168
+ aider/tools/view_files_matching.py,sha256=O4Gwk26r11D4Inv4fUS31UjkVSsOZXnCo5bO_fVQCBY,4512
169
+ aider/tools/view_files_with_symbol.py,sha256=hCVudO0hw-ZFjp45fnGyAsYxEjaWyOpL6LUdNQOSRHk,5290
170
+ aider/website/Gemfile,sha256=TERjHg_DN8PeMwdyY8xqy55IR-Pqc47ffRHoneo64QU,196
171
+ aider/website/_includes/blame.md,sha256=rfN9EpmSW4cytdifOd2B-G7gcfY-SgtXntkyvay8pXY,5377
172
+ aider/website/_includes/get-started.md,sha256=IxIQCMownQNDouRbDkHHzsl6q7wfh2e-zKLEK3RpKfw,435
173
+ aider/website/_includes/help-tip.md,sha256=YpVGot-cDbU-sUfePG9bcx7ArnVaT8Qc3Oj_AMxoEE0,164
174
+ aider/website/_includes/help.md,sha256=3K5UBywxEdsLhg0U_wZZJIprikgheJRZiDW_cnT8qf4,618
175
+ aider/website/_includes/install.md,sha256=U4UlUpO51yVLCIOswVSeuWKXs-CuVm1Q6rCl4_9VJcQ,63
176
+ aider/website/_includes/keys.md,sha256=ssaWa9vcbpX6ZwowwRGYMWGBJryD1RcbhtYIDu12tfk,137
177
+ aider/website/_includes/model-warnings.md,sha256=umJXFy8aZ6qdz2ZDe065X_SgqoF-AbEgsW-9rCYYkhE,1943
178
+ aider/website/_includes/multi-line.md,sha256=UmTxQsKQd9WDhJnUlzPEO3CJLMdNF80KhMDBg-cUJpk,1305
179
+ aider/website/_includes/python-m-aider.md,sha256=WGkG0J8kXt0YpzxABplhLzl5FITdYmftr-EiX5BjKl8,182
180
+ aider/website/_includes/recording.css,sha256=cTgGL0dyC39wHNZmPWi9dA_KD1EJws-COlz3XBHmKoE,5290
181
+ aider/website/_includes/recording.md,sha256=di6kaToH5B36JHdA4hJBteK75FHbEU_KrEK2OF7g5-M,939
182
+ aider/website/_includes/replit-pipx.md,sha256=9K06E2U7AT4fRkG00CMvoOI1DoNPRoKfbpOfoCq6Kcc,289
183
+ aider/website/_includes/works-best.md,sha256=bZU0inFkhHNRZcRz6DQVbuurq2-kRh-ZYSzAXjF3jYc,191
184
+ aider/website/_sass/custom/custom.scss,sha256=G_CNr2QNFpiycf_74pr6Qz8cxWtwTd0xspkToXw3-7A,1957
185
+ aider/website/docs/config.md,sha256=GAkiU8AfYWCnRdhw3KGOieC30pU_TZQ3a-Lmzae3IT8,749
186
+ aider/website/docs/faq.md,sha256=q8QWgdX00gsDdsnWFcPJ-sp6XSsn1-dWGCfdgS9Pd-U,13835
187
+ aider/website/docs/git.md,sha256=FGnjUbh5eAhStVCzsdcC0my6NuKnc4s2E-JXdEG7z4w,3758
188
+ aider/website/docs/index.md,sha256=J0qH0e9Q98HtnZos0irBb8OlZTXPty6eTF8JMPWMpGM,1819
189
+ aider/website/docs/install.md,sha256=6C8JHzDDpuYlehgu6UyVGFw-rGxnu8Ic7_ovhSSCdzg,2882
190
+ aider/website/docs/languages.md,sha256=AakEfiLcEWvAAhCuGsIqxpJYjlCL8B5zyGxwiHlAHEQ,16594
191
+ aider/website/docs/llms.md,sha256=fq0VL5uzXFBCbXRbltIcuH-AO5gB36Cw3k26nX5hcIA,1562
192
+ aider/website/docs/more-info.md,sha256=rNeoFIwC7bYcW78YaUFMnoWA8nowuNTGPo3RInPnU48,124
193
+ aider/website/docs/repomap.md,sha256=rEHIhD1mwEu1lRFVAVEY73AvEHQXvmLygMuJVbrx7sg,3900
194
+ aider/website/docs/scripting.md,sha256=Fj0J3BLUTUAoUFBMpk1Kayj1paU1c_fXyg-5ZlVFKIU,3123
195
+ aider/website/docs/troubleshooting.md,sha256=UYFgCP8zhJxGJqo4PI0-J-EB-zZ9HtRsIKfCP-qa9lg,218
196
+ aider/website/docs/usage.md,sha256=LMQpEDZ7rUYgmXN2HYbKg2W2h5sTASlkj89MRHw99rY,3592
197
+ aider/website/docs/config/adv-model-settings.md,sha256=AUqVwyM3J_vt4whx-w3uk8I2wC-VR1PEXssNGWvMZUI,60354
198
+ aider/website/docs/config/aider_conf.md,sha256=n-FMGab3dKUMnBg0KVEWtvWJEUh5M4z9pvt0FssPw58,15591
199
+ aider/website/docs/config/api-keys.md,sha256=uOUd9oERvYN6VzKtcsjun_7tth15AYEfRMJXT5Ne0KU,2046
200
+ aider/website/docs/config/dotenv.md,sha256=za-5qU6jq8_0dETghtF4Ja8sa1vc13JPzk8L_VfrcvU,14845
201
+ aider/website/docs/config/editor.md,sha256=ShJHfRhe1En59omZKcjFprELf85F7t8SdPh9l9y1rNk,2611
202
+ aider/website/docs/config/mcp.md,sha256=JfeqhXoqv37-PUfg6jkJmDywAH7g7hb13_Xouix-eA8,2544
203
+ aider/website/docs/config/model-aliases.md,sha256=-9m3DsRZ0Z7GnDa0R0Ak-qvg03CfqolrSmNHp0MB3D0,3585
204
+ aider/website/docs/config/options.md,sha256=H2Xa8ZySGKf9Aa-jWY0aRV0jX7uIBHqBS0Uwf6lW7N8,28562
205
+ aider/website/docs/config/reasoning.md,sha256=oFvjPXBsTqpjt1QFvJB_A-AWU4_P3SYAt_ED18M_A9A,7131
206
+ aider/website/docs/install/codespaces.md,sha256=a6OUtvUHkHuM0yb5WVhOMCWC-XYLkao86e6be1Hs6FM,783
207
+ aider/website/docs/install/docker.md,sha256=JNn1nchiZpm4dDjUNwbWlKN_QhKPVXf1U6sSRVdhoyw,2094
208
+ aider/website/docs/install/optional.md,sha256=tStzn9wzqd5PaxSMhzkfW2bof_h3qq32XqFTWcpQQ10,3405
209
+ aider/website/docs/install/replit.md,sha256=YyOkstz7Gv9X3UprTDVh1h4dQ_ZYWw-qDyjyfIa8Axg,86
210
+ aider/website/docs/legal/contributor-agreement.md,sha256=pyGoQFelLhWTGj3qW85OXcKssRZrh3IaQkIdgHe1_VI,6064
211
+ aider/website/docs/legal/privacy.md,sha256=pCd2AemuZMPLOxyDSpXfQrzWxB3sE0WyHM_2qaYp1Iw,8340
212
+ aider/website/docs/llms/anthropic.md,sha256=ToAquBA_qWhvrapEuEPAVk4itY5X3zEy_oKtvWg3N14,2158
213
+ aider/website/docs/llms/azure.md,sha256=xis3v2KZFtVwQ9r9LTKq5fdcj1AsevUVqyQB1tb97KQ,1443
214
+ aider/website/docs/llms/bedrock.md,sha256=mCo3_btlQFOMiTWUs0-Yk4PQCTNj8MdKcCh6r8AjntM,4368
215
+ aider/website/docs/llms/cohere.md,sha256=bj1j74osxhFJpMOaWCcYdYOCHrb3tRiTm6O1AStP0mo,694
216
+ aider/website/docs/llms/deepseek.md,sha256=U0JKpqAywddKKnHyaDTzaTRbUGtwRqFsQ7RKjMyN1Jc,735
217
+ aider/website/docs/llms/gemini.md,sha256=OibJRLtUQB7yCTNPHj1Y7lSNmc-MYwY__CxUgD0K4VU,998
218
+ aider/website/docs/llms/github.md,sha256=vAJzguHq6clH_BieZx21GuVasK3RdDBGAXqDYzNy3uQ,2386
219
+ aider/website/docs/llms/groq.md,sha256=DbUejWJOFROsS-vLUwQ1VKdsl_mlpaxkGd7ywKi4JS4,699
220
+ aider/website/docs/llms/lm-studio.md,sha256=Q5UiaPQwusI8BHc981voVB4JYhzD4QaT5nL0aBejpak,1144
221
+ aider/website/docs/llms/ollama.md,sha256=IncLyI8ertyAxawhv7JmT55zkRBrMdg0zPEkR4u4VY4,2013
222
+ aider/website/docs/llms/openai-compat.md,sha256=7QxzrAaYH14X3S3LmAdfFV1Pa7YFv7ei0M6hsZ-BQq4,821
223
+ aider/website/docs/llms/openai.md,sha256=fhWAyM49rVmkoXqUohwg76DkVuIZydEM6r4XUSlb3qs,1519
224
+ aider/website/docs/llms/openrouter.md,sha256=j6Cfr5s8T327pecuQ14LeQ3YCe7QpqikpBqh7KDhePU,2248
225
+ aider/website/docs/llms/other.md,sha256=HgwVv8Q1jaQEL3UUds6Gs_xSfJAi7Hbx0yQVJAdbG0g,2599
226
+ aider/website/docs/llms/vertex.md,sha256=IocjqTEe0setDZNgpPzKTkyoJfN0y04bBVgSLSBC9Jg,1493
227
+ aider/website/docs/llms/warnings.md,sha256=FVhgQ8Taa3f-hyu-FVNuW2p2hWii4hRNplW3BUDYHV0,103
228
+ aider/website/docs/llms/xai.md,sha256=0VJ02dZQiKgVPFIcbR8fAB9W_DPKvxYTwF2R04mslrc,961
229
+ aider/website/docs/more/analytics.md,sha256=BzpBusCZ6i8J4p3U05_THfMasqL6UHMCP4SGzVR8Jpg,3933
230
+ aider/website/docs/more/edit-formats.md,sha256=DTxQgd7wVHh5gTQ59H5x3Jm0W7UmQRvyPpz2FWcGV_o,3067
231
+ aider/website/docs/more/infinite-output.md,sha256=W8hSf5JjF5qzgZ0ZN1tb-2FT2vmAgpJ2uoqXhNCuY44,5232
232
+ aider/website/docs/recordings/auto-accept-architect.md,sha256=TZf-RbX_bfPIPlZ5HRO9IDJpBfYLTsQ2Xm6hMrU2OjY,1131
233
+ aider/website/docs/recordings/dont-drop-original-read-files.md,sha256=5OKuv_nB2euf-Mxq7JX_oCSRxU_od0X1NKtRUMHcy5M,1196
234
+ aider/website/docs/recordings/index.md,sha256=Ie3lQAGA0KyGxld7CqxpWrjtfpHYYquVA-N4QpbNEUk,639
235
+ aider/website/docs/recordings/model-accepts-settings.md,sha256=S_UtbqvsLQHq-HSH9uWtVHPuGHIAE-MPlkq6mBncUDA,4476
236
+ aider/website/docs/recordings/tree-sitter-language-pack.md,sha256=1_xMUzFB0jGS0AsG-tJy0csKxtz1x9Hgbcexfhvlaq0,4361
237
+ aider/website/docs/troubleshooting/aider-not-found.md,sha256=I9X7KSA9NZkbUJYDh181OWbh_gEwAWM92vQhD3PX4Zw,704
238
+ aider/website/docs/troubleshooting/edit-errors.md,sha256=Kcyg9f02kmVbkx-pEYIRLJsyxct7PDcPFE7dyaOOheo,2960
239
+ aider/website/docs/troubleshooting/imports.md,sha256=64icSQXtauQEdMVTkD5mG6lek0_y-qd1Le8gJ0_ctU0,1983
240
+ aider/website/docs/troubleshooting/models-and-keys.md,sha256=-lI53oqktHayADTy7TYcKBu_z4EPV1cs6xT8ustQjio,1807
241
+ aider/website/docs/troubleshooting/support.md,sha256=Kp_3kmT0gyn3MGVoaFfDdONy__042v24CkFlaoa_DBU,3247
242
+ aider/website/docs/troubleshooting/token-limits.md,sha256=9RrJBFpGfr6C2WxLtJX0NJhi3X8Rtq97EVKRtMP_96s,2968
243
+ aider/website/docs/troubleshooting/warnings.md,sha256=eHfwaX9yfZHQJsKgSDfk4-ACSeib3F3aV6PjrF7L0zk,134
244
+ aider/website/docs/usage/browser.md,sha256=J-VrDz-lPBztGB3etL6hQSinciXKxKjV8dnEPc51Fr4,1505
245
+ aider/website/docs/usage/caching.md,sha256=UOXihv1-sKvh-1VkQ861VuXlOZPp3hZe91GmiZcQSd8,1439
246
+ aider/website/docs/usage/commands.md,sha256=pnEwswEk9Q_8Yec0z2N4Rw4MIuwWbli9NFlxrvd9EO4,6208
247
+ aider/website/docs/usage/conventions.md,sha256=tYSQHs3KRN0vU2emlxFKr16RRCrZklvzPp-xsffEOho,3239
248
+ aider/website/docs/usage/copypaste.md,sha256=hF8kOoo8-ZqD5MxLflrEohMyYGhTPt9xBKt345iM-n8,4834
249
+ aider/website/docs/usage/images-urls.md,sha256=hs5qnlyt89IweFxDIus96adDU0frb5U7l3mfpOYG4Y8,1453
250
+ aider/website/docs/usage/lint-test.md,sha256=t6xgdrWAG1vTjUtf9VLRlI3Nq366is81NmLuxc_lRy4,3359
251
+ aider/website/docs/usage/modes.md,sha256=d8PTUOkdOeznBGiCCKvNkjsnfhDBPqcjDBPiIp4YwqM,6733
252
+ aider/website/docs/usage/not-code.md,sha256=szIr660qq6wZ6b0eOALccHEtg4m8XhurhAf3fMPH6iE,3411
253
+ aider/website/docs/usage/notifications.md,sha256=OKNHL8h5x-AG-6VvxkJIwGxQm-O6KIg7sewSol5S60s,2196
254
+ aider/website/docs/usage/tips.md,sha256=smQnxsfyQ2ccdkPw73uTTyqhPSOXXOZW2TOI-1kMtXM,3324
255
+ aider/website/docs/usage/tutorials.md,sha256=ZKBztbUtucHOiv9h8gvWiWTP6MTSsFyz4mAetmLhvYY,2223
256
+ aider/website/docs/usage/voice.md,sha256=BtX7pHRgHRWUmrNbS4JssC-SO8RrJ_OetBCtIYpO0pU,3452
257
+ aider/website/docs/usage/watch.md,sha256=OVF14lGtv1vhSXRE8PpxQ3YW-uXSifarUbmLBjmLRyA,7940
258
+ aider/website/share/index.md,sha256=P51aDw9AT8AVbsU7v6g1tWuMjly7y_plM_ZI1ScaT8Y,3172
259
+ aider_ce-0.87.2.dev9.dist-info/licenses/LICENSE.txt,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
260
+ aider_ce-0.87.2.dev9.dist-info/METADATA,sha256=j3Cy0S9l48hINMzzFvWdTvYdgAxzwv5os8OQ2kB6a_w,28854
261
+ aider_ce-0.87.2.dev9.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
262
+ aider_ce-0.87.2.dev9.dist-info/entry_points.txt,sha256=OxI0JxfyJrc24nTmsdvpaWUx8Flz2huOij_-ifp-48w,69
263
+ aider_ce-0.87.2.dev9.dist-info/top_level.txt,sha256=uwOA6ycgSiRLrBsaRBcIeN_eBKAX78U01_KDEHR8mBk,6
264
+ aider_ce-0.87.2.dev9.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ aider = aider.main:main
3
+ aider-ce = aider.main:main
@@ -0,0 +1,202 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright [yyyy] [name of copyright owner]
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
@@ -0,0 +1 @@
1
+ aider