aider-ce 0.87.3.dev4__py3-none-any.whl → 0.87.5.dev3__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 CHANGED
@@ -1,6 +1,6 @@
1
1
  from packaging import version
2
2
 
3
- __version__ = "0.87.2.dev"
3
+ __version__ = "0.87.4.dev"
4
4
  safe_version = __version__
5
5
 
6
6
  try:
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.3.dev4'
32
- __version_tuple__ = version_tuple = (0, 87, 3, 'dev4')
31
+ __version__ = version = '0.87.5.dev3'
32
+ __version_tuple__ = version_tuple = (0, 87, 5, 'dev3')
33
33
 
34
34
  __commit_id__ = commit_id = None
@@ -1728,6 +1728,15 @@ class Coder:
1728
1728
 
1729
1729
  edited = self.apply_updates()
1730
1730
 
1731
+ if edited:
1732
+ self.aider_edited_files.update(edited)
1733
+ saved_message = self.auto_commit(edited)
1734
+
1735
+ if not saved_message and hasattr(self.gpt_prompts, "files_content_gpt_edits_no_repo"):
1736
+ saved_message = self.gpt_prompts.files_content_gpt_edits_no_repo
1737
+
1738
+ self.move_back_cur_messages(saved_message)
1739
+
1731
1740
  if not interrupted:
1732
1741
  add_rel_files_message = self.check_for_file_mentions(content)
1733
1742
  if add_rel_files_message:
@@ -1751,15 +1760,6 @@ class Coder:
1751
1760
  except KeyboardInterrupt:
1752
1761
  interrupted = True
1753
1762
 
1754
- if edited:
1755
- self.aider_edited_files.update(edited)
1756
- saved_message = self.auto_commit(edited)
1757
-
1758
- if not saved_message and hasattr(self.gpt_prompts, "files_content_gpt_edits_no_repo"):
1759
- saved_message = self.gpt_prompts.files_content_gpt_edits_no_repo
1760
-
1761
- self.move_back_cur_messages(saved_message)
1762
-
1763
1763
  if self.reflected_message:
1764
1764
  return
1765
1765
 
aider/models.py CHANGED
@@ -987,8 +987,6 @@ class Model(ModelSettings):
987
987
  kwargs["tools"] = [dict(type="function", function=tool) for tool in effective_tools]
988
988
  else:
989
989
  kwargs["tools"] = effective_tools
990
- else:
991
- kwargs["tools"] = []
992
990
 
993
991
  # Forcing a function call is for legacy style `functions` with a single function.
994
992
  # This is used by ArchitectCoder and not intended for NavigatorCoder's tools.
aider/repomap.py CHANGED
@@ -9,6 +9,7 @@ from collections import Counter, defaultdict, namedtuple
9
9
  from importlib import resources
10
10
  from pathlib import Path
11
11
 
12
+ import tree_sitter
12
13
  from diskcache import Cache
13
14
  from grep_ast import TreeContext, filename_to_lang
14
15
  from pygments.lexers import guess_lexer_for_filename
@@ -413,8 +414,13 @@ class RepoMap:
413
414
  tree = parser.parse(bytes(code, "utf-8"))
414
415
 
415
416
  # Run the tags queries
416
- query = language.query(query_scm)
417
- captures = query.captures(tree.root_node)
417
+ if sys.version_info >= (3, 10):
418
+ query = tree_sitter.Query(language, query_scm)
419
+ cursor = tree_sitter.QueryCursor(query)
420
+ captures = cursor.captures(tree.root_node)
421
+ else:
422
+ query = language.query(query_scm)
423
+ captures = query.captures(tree.root_node)
418
424
 
419
425
  saw = set()
420
426
  if USING_TSL_PACK:
@@ -1,7 +1,21 @@
1
1
  {
2
+ "deepseek/deepseek-chat": {
3
+ "max_tokens": 8192,
4
+ "max_input_tokens": 128000,
5
+ "max_output_tokens": 8192,
6
+ "input_cost_per_token": 0.00000027,
7
+ "input_cost_per_token_cache_hit": 0.00000007,
8
+ "cache_read_input_token_cost": 0.00000007,
9
+ "cache_creation_input_token_cost": 0.0,
10
+ "output_cost_per_token": 0.0000011,
11
+ "litellm_provider": "deepseek",
12
+ "mode": "chat",
13
+ "supports_assistant_prefill": true,
14
+ "supports_prompt_caching": true
15
+ },
2
16
  "deepseek-reasoner": {
3
17
  "max_tokens": 8192,
4
- "max_input_tokens": 64000,
18
+ "max_input_tokens": 128000,
5
19
  "max_output_tokens": 8192,
6
20
  "input_cost_per_token": 0.00000055,
7
21
  "input_cost_per_token_cache_hit": 0.00000014,
@@ -10,41 +24,35 @@
10
24
  "output_cost_per_token": 0.00000219,
11
25
  "litellm_provider": "deepseek",
12
26
  "mode": "chat",
13
- //"supports_function_calling": true,
14
27
  "supports_assistant_prefill": true,
15
- //"supports_tool_choice": true,
16
28
  "supports_prompt_caching": true
17
29
  },
18
30
  "openrouter/deepseek/deepseek-r1:free": {
19
31
  "max_tokens": 8192,
20
- "max_input_tokens": 64000,
32
+ "max_input_tokens": 128000,
21
33
  "max_output_tokens": 8192,
22
34
  "input_cost_per_token": 0.0,
23
35
  "input_cost_per_token_cache_hit": 0.0,
24
- "cache_read_input_token_cost": 0.00,
36
+ "cache_read_input_token_cost": 0.0,
25
37
  "cache_creation_input_token_cost": 0.0,
26
38
  "output_cost_per_token": 0.0,
27
39
  "litellm_provider": "openrouter",
28
40
  "mode": "chat",
29
- //"supports_function_calling": true,
30
41
  "supports_assistant_prefill": true,
31
- //"supports_tool_choice": true,
32
42
  "supports_prompt_caching": true
33
43
  },
34
44
  "openrouter/deepseek/deepseek-chat:free": {
35
45
  "max_tokens": 8192,
36
- "max_input_tokens": 64000,
46
+ "max_input_tokens": 128000,
37
47
  "max_output_tokens": 8192,
38
48
  "input_cost_per_token": 0.0,
39
49
  "input_cost_per_token_cache_hit": 0.0,
40
- "cache_read_input_token_cost": 0.00,
50
+ "cache_read_input_token_cost": 0.0,
41
51
  "cache_creation_input_token_cost": 0.0,
42
52
  "output_cost_per_token": 0.0,
43
53
  "litellm_provider": "openrouter",
44
54
  "mode": "chat",
45
- //"supports_function_calling": true,
46
55
  "supports_assistant_prefill": true,
47
- //"supports_tool_choice": true,
48
56
  "supports_prompt_caching": true
49
57
  },
50
58
  "openrouter/deepseek/deepseek-chat-v3-0324": {
@@ -58,9 +66,7 @@
58
66
  "output_cost_per_token": 0.00000219,
59
67
  "litellm_provider": "openrouter",
60
68
  "mode": "chat",
61
- //"supports_function_calling": true,
62
69
  "supports_assistant_prefill": true,
63
- //"supports_tool_choice": true,
64
70
  "supports_prompt_caching": true
65
71
  },
66
72
  "openrouter/deepseek/deepseek-chat-v3-0324:free": {
@@ -181,9 +187,9 @@
181
187
  "input_cost_per_video_per_second": 0,
182
188
  "input_cost_per_audio_per_second": 0,
183
189
  "input_cost_per_token": 0,
184
- "input_cost_per_character": 0,
185
- "input_cost_per_token_above_128k_tokens": 0,
186
- "input_cost_per_character_above_128k_tokens": 0,
190
+ "input_cost_per_character": 0,
191
+ "input_cost_per_token_above_128k_tokens": 0,
192
+ "input_cost_per_character_above_128k_tokens": 0,
187
193
  "input_cost_per_image_above_128k_tokens": 0,
188
194
  "input_cost_per_video_per_second_above_128k_tokens": 0,
189
195
  "input_cost_per_audio_per_second_above_128k_tokens": 0,
@@ -191,7 +197,6 @@
191
197
  "output_cost_per_character": 0,
192
198
  "output_cost_per_token_above_128k_tokens": 0,
193
199
  "output_cost_per_character_above_128k_tokens": 0,
194
- //"litellm_provider": "vertex_ai-language-models",
195
200
  "litellm_provider": "gemini",
196
201
  "mode": "chat",
197
202
  "supports_system_messages": true,
@@ -218,9 +223,9 @@
218
223
  "input_cost_per_video_per_second": 0,
219
224
  "input_cost_per_audio_per_second": 0,
220
225
  "input_cost_per_token": 0,
221
- "input_cost_per_character": 0,
222
- "input_cost_per_token_above_128k_tokens": 0,
223
- "input_cost_per_character_above_128k_tokens": 0,
226
+ "input_cost_per_character": 0,
227
+ "input_cost_per_token_above_128k_tokens": 0,
228
+ "input_cost_per_character_above_128k_tokens": 0,
224
229
  "input_cost_per_image_above_128k_tokens": 0,
225
230
  "input_cost_per_video_per_second_above_128k_tokens": 0,
226
231
  "input_cost_per_audio_per_second_above_128k_tokens": 0,
@@ -300,8 +305,15 @@
300
305
  "supports_response_schema": true,
301
306
  "supports_audio_output": false,
302
307
  "supports_tool_choice": true,
303
- "supported_modalities": ["text", "image", "audio", "video"],
304
- "supported_output_modalities": ["text"],
308
+ "supported_modalities": [
309
+ "text",
310
+ "image",
311
+ "audio",
312
+ "video"
313
+ ],
314
+ "supported_output_modalities": [
315
+ "text"
316
+ ],
305
317
  "source": "https://cloud.google.com/vertex-ai/generative-ai/pricing"
306
318
  },
307
319
  "vertex_ai/gemini-2.5-flash": {
@@ -327,8 +339,15 @@
327
339
  "supports_response_schema": true,
328
340
  "supports_audio_output": false,
329
341
  "supports_tool_choice": true,
330
- "supported_modalities": ["text", "image", "audio", "video"],
331
- "supported_output_modalities": ["text"],
342
+ "supported_modalities": [
343
+ "text",
344
+ "image",
345
+ "audio",
346
+ "video"
347
+ ],
348
+ "supported_output_modalities": [
349
+ "text"
350
+ ],
332
351
  "source": "https://cloud.google.com/vertex-ai/generative-ai/pricing"
333
352
  },
334
353
  "openrouter/google/gemini-2.5-pro-preview-03-25": {
@@ -508,7 +527,7 @@
508
527
  "input_cost_per_token": 0.00000125,
509
528
  "input_cost_per_token_above_200k_tokens": 0.0000025,
510
529
  "output_cost_per_token": 0.00001,
511
- "output_cost_per_token_above_200k_tokens": 0.000015,
530
+ "output_cost_per_token_above_200k_tokens": 0.000015,
512
531
  "litellm_provider": "vertex_ai-language-models",
513
532
  "mode": "chat",
514
533
  "supports_reasoning": true,
@@ -518,9 +537,20 @@
518
537
  "supports_response_schema": true,
519
538
  "supports_audio_output": false,
520
539
  "supports_tool_choice": true,
521
- "supported_endpoints": ["/v1/chat/completions", "/v1/completions", "/v1/batch"],
522
- "supported_modalities": ["text", "image", "audio", "video"],
523
- "supported_output_modalities": ["text"],
540
+ "supported_endpoints": [
541
+ "/v1/chat/completions",
542
+ "/v1/completions",
543
+ "/v1/batch"
544
+ ],
545
+ "supported_modalities": [
546
+ "text",
547
+ "image",
548
+ "audio",
549
+ "video"
550
+ ],
551
+ "supported_output_modalities": [
552
+ "text"
553
+ ],
524
554
  "source": "https://ai.google.dev/gemini-api/docs/models#gemini-2.5-flash-preview"
525
555
  },
526
556
  "gemini-2.5-pro-preview-06-05": {
@@ -537,7 +567,7 @@
537
567
  "input_cost_per_token": 0.00000125,
538
568
  "input_cost_per_token_above_200k_tokens": 0.0000025,
539
569
  "output_cost_per_token": 0.00001,
540
- "output_cost_per_token_above_200k_tokens": 0.000015,
570
+ "output_cost_per_token_above_200k_tokens": 0.000015,
541
571
  "litellm_provider": "vertex_ai-language-models",
542
572
  "mode": "chat",
543
573
  "supports_reasoning": true,
@@ -547,9 +577,20 @@
547
577
  "supports_response_schema": true,
548
578
  "supports_audio_output": false,
549
579
  "supports_tool_choice": true,
550
- "supported_endpoints": ["/v1/chat/completions", "/v1/completions", "/v1/batch"],
551
- "supported_modalities": ["text", "image", "audio", "video"],
552
- "supported_output_modalities": ["text"],
580
+ "supported_endpoints": [
581
+ "/v1/chat/completions",
582
+ "/v1/completions",
583
+ "/v1/batch"
584
+ ],
585
+ "supported_modalities": [
586
+ "text",
587
+ "image",
588
+ "audio",
589
+ "video"
590
+ ],
591
+ "supported_output_modalities": [
592
+ "text"
593
+ ],
553
594
  "source": "https://ai.google.dev/gemini-api/docs/models#gemini-2.5-flash-preview"
554
595
  },
555
596
  "gemini/gemini-2.5-pro-preview-05-06": {
@@ -564,9 +605,9 @@
564
605
  "max_pdf_size_mb": 30,
565
606
  "input_cost_per_audio_token": 0.0000007,
566
607
  "input_cost_per_token": 0.00000125,
567
- "input_cost_per_token_above_200k_tokens": 0.0000025,
608
+ "input_cost_per_token_above_200k_tokens": 0.0000025,
568
609
  "output_cost_per_token": 0.00001,
569
- "output_cost_per_token_above_200k_tokens": 0.000015,
610
+ "output_cost_per_token_above_200k_tokens": 0.000015,
570
611
  "litellm_provider": "gemini",
571
612
  "mode": "chat",
572
613
  "rpm": 10000,
@@ -577,8 +618,15 @@
577
618
  "supports_response_schema": true,
578
619
  "supports_audio_output": false,
579
620
  "supports_tool_choice": true,
580
- "supported_modalities": ["text", "image", "audio", "video"],
581
- "supported_output_modalities": ["text"],
621
+ "supported_modalities": [
622
+ "text",
623
+ "image",
624
+ "audio",
625
+ "video"
626
+ ],
627
+ "supported_output_modalities": [
628
+ "text"
629
+ ],
582
630
  "source": "https://ai.google.dev/gemini-api/docs/pricing#gemini-2.5-pro-preview"
583
631
  },
584
632
  "gemini/gemini-2.5-pro-preview-06-05": {
@@ -593,9 +641,9 @@
593
641
  "max_pdf_size_mb": 30,
594
642
  "input_cost_per_audio_token": 0.0000007,
595
643
  "input_cost_per_token": 0.00000125,
596
- "input_cost_per_token_above_200k_tokens": 0.0000025,
644
+ "input_cost_per_token_above_200k_tokens": 0.0000025,
597
645
  "output_cost_per_token": 0.00001,
598
- "output_cost_per_token_above_200k_tokens": 0.000015,
646
+ "output_cost_per_token_above_200k_tokens": 0.000015,
599
647
  "litellm_provider": "gemini",
600
648
  "mode": "chat",
601
649
  "rpm": 10000,
@@ -606,8 +654,15 @@
606
654
  "supports_response_schema": true,
607
655
  "supports_audio_output": false,
608
656
  "supports_tool_choice": true,
609
- "supported_modalities": ["text", "image", "audio", "video"],
610
- "supported_output_modalities": ["text"],
657
+ "supported_modalities": [
658
+ "text",
659
+ "image",
660
+ "audio",
661
+ "video"
662
+ ],
663
+ "supported_output_modalities": [
664
+ "text"
665
+ ],
611
666
  "source": "https://ai.google.dev/gemini-api/docs/pricing#gemini-2.5-pro-preview"
612
667
  },
613
668
  "gemini/gemini-2.5-pro": {
@@ -634,8 +689,15 @@
634
689
  "supports_response_schema": true,
635
690
  "supports_audio_output": false,
636
691
  "supports_tool_choice": true,
637
- "supported_modalities": ["text", "image", "audio", "video"],
638
- "supported_output_modalities": ["text"],
692
+ "supported_modalities": [
693
+ "text",
694
+ "image",
695
+ "audio",
696
+ "video"
697
+ ],
698
+ "supported_output_modalities": [
699
+ "text"
700
+ ],
639
701
  "source": "https://ai.google.dev/gemini-api/docs/pricing#gemini-2.5-pro"
640
702
  },
641
703
  "gemini/gemini-2.5-flash": {
@@ -661,8 +723,15 @@
661
723
  "supports_response_schema": true,
662
724
  "supports_audio_output": false,
663
725
  "supports_tool_choice": true,
664
- "supported_modalities": ["text", "image", "audio", "video"],
665
- "supported_output_modalities": ["text"],
726
+ "supported_modalities": [
727
+ "text",
728
+ "image",
729
+ "audio",
730
+ "video"
731
+ ],
732
+ "supported_output_modalities": [
733
+ "text"
734
+ ],
666
735
  "source": "https://ai.google.dev/gemini-api/docs/pricing#gemini-2.5-flash"
667
736
  },
668
737
  "gemini/gemini-2.5-flash-lite-preview-06-17": {
@@ -688,12 +757,19 @@
688
757
  "supports_response_schema": true,
689
758
  "supports_audio_output": false,
690
759
  "supports_tool_choice": true,
691
- "supported_modalities": ["text", "image", "audio", "video"],
692
- "supported_output_modalities": ["text"],
760
+ "supported_modalities": [
761
+ "text",
762
+ "image",
763
+ "audio",
764
+ "video"
765
+ ],
766
+ "supported_output_modalities": [
767
+ "text"
768
+ ],
693
769
  "source": "https://ai.google.dev/gemini-api/docs/pricing#gemini-2.5-flash-lite"
694
770
  },
695
- "together_ai/Qwen/Qwen3-235B-A22B-fp8-tput": {
771
+ "together_ai/Qwen/Qwen3-235B-A22B-fp8-tput": {
696
772
  "input_cost_per_token": 0.0000002,
697
773
  "output_cost_per_token": 0.0000006,
698
- }
699
- }
774
+ }
775
+ }
@@ -597,7 +597,7 @@
597
597
  reminder: sys
598
598
  examples_as_sys_msg: true
599
599
  extra_params:
600
- max_tokens: 8192
600
+ max_tokens: 128000
601
601
  caches_by_default: true
602
602
 
603
603
  - name: openrouter/deepseek/deepseek-chat:free
@@ -606,7 +606,7 @@
606
606
  use_repo_map: true
607
607
  examples_as_sys_msg: true
608
608
  extra_params:
609
- max_tokens: 8192
609
+ max_tokens: 128000
610
610
  caches_by_default: true
611
611
  use_temperature: false
612
612
  editor_model_name: openrouter/deepseek/deepseek-chat:free
@@ -627,7 +627,7 @@
627
627
  reminder: sys
628
628
  examples_as_sys_msg: true
629
629
  extra_params:
630
- max_tokens: 8192
630
+ max_tokens: 128000
631
631
 
632
632
  - name: deepseek-coder
633
633
  edit_format: diff
@@ -635,7 +635,7 @@
635
635
  reminder: sys
636
636
  examples_as_sys_msg: true
637
637
  extra_params:
638
- max_tokens: 8192
638
+ max_tokens: 128000
639
639
  caches_by_default: true
640
640
 
641
641
  - name: openrouter/deepseek/deepseek-coder
@@ -995,7 +995,7 @@
995
995
  use_repo_map: true
996
996
  edit_format: whole
997
997
  accepts_settings:
998
- - reasoning_effort
998
+ - reasoning_effort
999
999
 
1000
1000
  - name: openai/o4-mini
1001
1001
  edit_format: diff
@@ -1072,7 +1072,7 @@
1072
1072
  use_repo_map: true
1073
1073
  edit_format: diff
1074
1074
  examples_as_sys_msg: true
1075
-
1075
+
1076
1076
  - name: gpt-4.1
1077
1077
  edit_format: diff
1078
1078
  weak_model_name: gpt-4.1-mini
@@ -1359,7 +1359,7 @@
1359
1359
  system_prompt_prefix: "Formatting re-enabled. "
1360
1360
  accepts_settings: ["reasoning_effort"]
1361
1361
  examples_as_sys_msg: true
1362
-
1362
+
1363
1363
  - name: gemini/gemini-2.5-flash-preview-04-17
1364
1364
  edit_format: diff
1365
1365
  use_repo_map: true
@@ -1380,7 +1380,7 @@
1380
1380
  edit_format: diff-fenced
1381
1381
  use_repo_map: true
1382
1382
  weak_model_name: openrouter/google/gemini-2.0-flash-001
1383
-
1383
+
1384
1384
  - name: gemini/gemini-2.5-pro-preview-05-06
1385
1385
  overeager: true
1386
1386
  edit_format: diff-fenced
@@ -1487,7 +1487,7 @@
1487
1487
  # top_p: 0.8
1488
1488
  # top_k: 20
1489
1489
  # min_p: 0.0
1490
- # temperature: 0.7
1490
+ # temperature: 0.7
1491
1491
 
1492
1492
 
1493
1493
  - name: claude-sonnet-4-20250514
aider/voice.py CHANGED
@@ -17,8 +17,20 @@ warnings.filterwarnings(
17
17
  warnings.filterwarnings("ignore", category=SyntaxWarning)
18
18
 
19
19
 
20
- from pydub import AudioSegment # noqa
21
- from pydub.exceptions import CouldntDecodeError, CouldntEncodeError # noqa
20
+ try:
21
+ from pydub import AudioSegment # noqa
22
+ from pydub.exceptions import CouldntDecodeError, CouldntEncodeError # noqa
23
+
24
+ PYDUB_AVAILABLE = True
25
+ except (ModuleNotFoundError, ImportError) as e:
26
+ if "audioop" in str(e) or "pyaudioop" in str(e):
27
+ # Handle missing audioop/pyaudioop dependency gracefully
28
+ PYDUB_AVAILABLE = False
29
+ AudioSegment = None
30
+ CouldntDecodeError = Exception
31
+ CouldntEncodeError = Exception
32
+ else:
33
+ raise
22
34
 
23
35
  try:
24
36
  import soundfile as sf
@@ -152,11 +164,17 @@ class Voice:
152
164
  filename = temp_wav
153
165
  if use_audio_format != "wav":
154
166
  try:
155
- new_filename = tempfile.mktemp(suffix=f".{use_audio_format}")
156
- audio = AudioSegment.from_wav(temp_wav)
157
- audio.export(new_filename, format=use_audio_format)
158
- os.remove(temp_wav)
159
- filename = new_filename
167
+ if not PYDUB_AVAILABLE:
168
+ print(
169
+ f"Warning: pydub not available, cannot convert to {use_audio_format}. Using"
170
+ " original WAV file."
171
+ )
172
+ else:
173
+ new_filename = tempfile.mktemp(suffix=f".{use_audio_format}")
174
+ audio = AudioSegment.from_wav(temp_wav)
175
+ audio.export(new_filename, format=use_audio_format)
176
+ os.remove(temp_wav)
177
+ filename = new_filename
160
178
  except (CouldntDecodeError, CouldntEncodeError) as e:
161
179
  print(f"Error converting audio: {e}")
162
180
  except (OSError, FileNotFoundError) as e:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aider-ce
3
- Version: 0.87.3.dev4
3
+ Version: 0.87.5.dev3
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
@@ -13,320 +13,31 @@ Classifier: Programming Language :: Python :: 3.11
13
13
  Classifier: Programming Language :: Python :: 3.12
14
14
  Classifier: Programming Language :: Python
15
15
  Classifier: Topic :: Software Development
16
- Requires-Python: <3.13,>=3.10
16
+ Requires-Python: >=3.10
17
17
  Description-Content-Type: text/markdown
18
18
  License-File: LICENSE.txt
19
- Requires-Dist: aiohappyeyeballs==2.6.1
20
- Requires-Dist: aiohttp==3.12.15
21
- Requires-Dist: aiosignal==1.4.0
22
- Requires-Dist: annotated-types==0.7.0
23
- Requires-Dist: anyio==4.10.0
24
- Requires-Dist: attrs==25.3.0
25
- Requires-Dist: backoff==2.2.1
26
- Requires-Dist: beautifulsoup4==4.13.4
27
- Requires-Dist: cachetools==5.5.2
28
- Requires-Dist: certifi==2025.8.3
29
- Requires-Dist: cffi==1.17.1
30
- Requires-Dist: charset-normalizer==3.4.2
31
- Requires-Dist: click==8.2.1
32
- Requires-Dist: configargparse==1.7.1
33
- Requires-Dist: diff-match-patch==20241021
34
- Requires-Dist: diskcache==5.6.3
35
- Requires-Dist: distro==1.9.0
36
- Requires-Dist: filelock==3.18.0
37
- Requires-Dist: flake8==7.3.0
38
- Requires-Dist: frozenlist==1.7.0
39
- Requires-Dist: fsspec==2025.7.0
40
- Requires-Dist: gitdb==4.0.12
41
- Requires-Dist: gitpython==3.1.45
42
- Requires-Dist: google-ai-generativelanguage==0.6.15
43
- Requires-Dist: google-api-core[grpc]==2.25.1
44
- Requires-Dist: google-api-python-client==2.178.0
45
- Requires-Dist: google-auth==2.40.3
46
- Requires-Dist: google-auth-httplib2==0.2.0
47
- Requires-Dist: google-generativeai==0.8.5
48
- Requires-Dist: googleapis-common-protos==1.70.0
49
- Requires-Dist: grep-ast==0.9.0
50
- Requires-Dist: grpcio==1.74.0
51
- Requires-Dist: grpcio-status==1.71.2
52
- Requires-Dist: h11==0.16.0
53
- Requires-Dist: hf-xet==1.1.7
54
- Requires-Dist: httpcore==1.0.9
55
- Requires-Dist: httplib2==0.22.0
56
- Requires-Dist: httpx==0.28.1
57
- Requires-Dist: httpx-sse==0.4.0
58
- Requires-Dist: huggingface-hub==0.34.3
59
- Requires-Dist: idna==3.10
60
- Requires-Dist: importlib-metadata==7.2.1
61
- Requires-Dist: importlib-resources==6.5.2
62
- Requires-Dist: jinja2==3.1.6
63
- Requires-Dist: jiter==0.10.0
64
- Requires-Dist: json5==0.12.0
65
- Requires-Dist: jsonschema==4.25.0
66
- Requires-Dist: jsonschema-specifications==2025.4.1
67
- Requires-Dist: litellm==1.75.0
68
- Requires-Dist: markdown-it-py==3.0.0
69
- Requires-Dist: markupsafe==3.0.2
70
- Requires-Dist: mccabe==0.7.0
71
- Requires-Dist: mcp==1.12.3
72
- Requires-Dist: mdurl==0.1.2
73
- Requires-Dist: mixpanel==4.10.1
74
- Requires-Dist: mslex==1.3.0
75
- Requires-Dist: multidict==6.6.3
76
- Requires-Dist: networkx==3.4.2
77
- Requires-Dist: numpy==1.26.4
78
- Requires-Dist: openai==1.99.1
79
- Requires-Dist: oslex==0.1.3
80
- Requires-Dist: packaging==25.0
81
- Requires-Dist: pathspec==0.12.1
82
- Requires-Dist: pexpect==4.9.0
83
- Requires-Dist: pillow==11.3.0
84
- Requires-Dist: posthog==6.4.1
85
- Requires-Dist: prompt-toolkit==3.0.51
86
- Requires-Dist: propcache==0.3.2
87
- Requires-Dist: proto-plus==1.26.1
88
- Requires-Dist: protobuf==5.29.5
89
- Requires-Dist: psutil==7.0.0
90
- Requires-Dist: ptyprocess==0.7.0
91
- Requires-Dist: pyasn1==0.6.1
92
- Requires-Dist: pyasn1-modules==0.4.2
93
- Requires-Dist: pycodestyle==2.14.0
94
- Requires-Dist: pycparser==2.22
95
- Requires-Dist: pydantic==2.11.7
96
- Requires-Dist: pydantic-core==2.33.2
97
- Requires-Dist: pydantic-settings==2.9.1
98
- Requires-Dist: pydub==0.25.1
99
- Requires-Dist: pyflakes==3.4.0
100
- Requires-Dist: pygments==2.19.2
101
- Requires-Dist: pypandoc==1.15
102
- Requires-Dist: pyparsing==3.2.3
103
- Requires-Dist: pyperclip==1.9.0
104
- Requires-Dist: python-dateutil==2.9.0.post0
105
- Requires-Dist: python-dotenv==1.1.1
106
- Requires-Dist: pyyaml==6.0.2
107
- Requires-Dist: referencing==0.36.2
108
- Requires-Dist: regex==2025.7.34
109
- Requires-Dist: requests==2.32.4
110
- Requires-Dist: rich==14.1.0
111
- Requires-Dist: rpds-py==0.27.0
112
- Requires-Dist: rsa==4.9.1
113
- Requires-Dist: scipy==1.15.3
114
- Requires-Dist: shtab==1.7.2
115
- Requires-Dist: six==1.17.0
116
- Requires-Dist: smmap==5.0.2
117
- Requires-Dist: sniffio==1.3.1
118
- Requires-Dist: socksio==1.0.0
119
- Requires-Dist: sounddevice==0.5.2
120
- Requires-Dist: soundfile==0.13.1
121
- Requires-Dist: soupsieve==2.7
122
- Requires-Dist: sse-starlette==2.3.3
123
- Requires-Dist: starlette==0.46.2
124
- Requires-Dist: tiktoken==0.10.0
125
- Requires-Dist: tokenizers==0.21.4
126
- Requires-Dist: tqdm==4.67.1
127
- Requires-Dist: tree-sitter-c-sharp==0.23.1
128
- Requires-Dist: tree-sitter-embedded-template==0.23.2
129
- Requires-Dist: tree-sitter-language-pack==0.9.0
130
- Requires-Dist: tree-sitter-yaml==0.7.1
131
- Requires-Dist: typing-extensions==4.14.1
132
- Requires-Dist: typing-inspection==0.4.1
133
- Requires-Dist: uritemplate==4.2.0
134
- Requires-Dist: urllib3==2.5.0
135
- Requires-Dist: uvicorn==0.34.2
136
- Requires-Dist: watchfiles==1.1.0
137
- Requires-Dist: wcwidth==0.2.13
138
- Requires-Dist: yarl==1.20.1
139
- Requires-Dist: zipp==3.23.0
140
- Requires-Dist: tree-sitter==0.23.2; python_version < "3.10"
141
- Requires-Dist: tree-sitter==0.24.0; python_version >= "3.10"
142
19
  Provides-Extra: dev
143
- Requires-Dist: build==1.3.0; extra == "dev"
144
- Requires-Dist: cachetools==5.5.2; extra == "dev"
145
- Requires-Dist: certifi==2025.8.3; extra == "dev"
146
- Requires-Dist: cfgv==3.4.0; extra == "dev"
147
- Requires-Dist: charset-normalizer==3.4.2; extra == "dev"
148
- Requires-Dist: click==8.2.1; extra == "dev"
149
- Requires-Dist: codespell==2.4.1; extra == "dev"
150
- Requires-Dist: cogapp==3.5.1; extra == "dev"
151
- Requires-Dist: contourpy==1.3.3; extra == "dev"
152
- Requires-Dist: cycler==0.12.1; extra == "dev"
153
- Requires-Dist: dill==0.4.0; extra == "dev"
154
- Requires-Dist: distlib==0.4.0; extra == "dev"
155
- Requires-Dist: filelock==3.18.0; extra == "dev"
156
- Requires-Dist: fonttools==4.59.0; extra == "dev"
157
- Requires-Dist: google-api-core[grpc]==2.25.1; extra == "dev"
158
- Requires-Dist: google-auth==2.40.3; extra == "dev"
159
- Requires-Dist: google-cloud-bigquery==3.35.1; extra == "dev"
160
- Requires-Dist: google-cloud-core==2.4.3; extra == "dev"
161
- Requires-Dist: google-crc32c==1.7.1; extra == "dev"
162
- Requires-Dist: google-resumable-media==2.7.2; extra == "dev"
163
- Requires-Dist: googleapis-common-protos==1.70.0; extra == "dev"
164
- Requires-Dist: grpcio==1.74.0; extra == "dev"
165
- Requires-Dist: grpcio-status==1.71.2; extra == "dev"
166
- Requires-Dist: identify==2.6.12; extra == "dev"
167
- Requires-Dist: idna==3.10; extra == "dev"
168
- Requires-Dist: imgcat==0.6.0; extra == "dev"
169
- Requires-Dist: iniconfig==2.1.0; extra == "dev"
170
- Requires-Dist: kiwisolver==1.4.8; extra == "dev"
171
- Requires-Dist: lox==0.13.0; extra == "dev"
172
- Requires-Dist: markdown-it-py==3.0.0; extra == "dev"
173
- Requires-Dist: matplotlib==3.10.5; extra == "dev"
174
- Requires-Dist: mdurl==0.1.2; extra == "dev"
175
- Requires-Dist: multiprocess==0.70.18; extra == "dev"
176
- Requires-Dist: nodeenv==1.9.1; extra == "dev"
177
- Requires-Dist: numpy==1.26.4; extra == "dev"
178
- Requires-Dist: packaging==25.0; extra == "dev"
179
- Requires-Dist: pandas==2.3.1; extra == "dev"
180
- Requires-Dist: pathos==0.3.4; extra == "dev"
181
- Requires-Dist: pillow==11.3.0; extra == "dev"
182
- Requires-Dist: pip==25.2; extra == "dev"
183
- Requires-Dist: pip-tools==7.5.0; extra == "dev"
184
- Requires-Dist: platformdirs==4.3.8; extra == "dev"
185
- Requires-Dist: pluggy==1.6.0; extra == "dev"
186
- Requires-Dist: pox==0.3.6; extra == "dev"
187
- Requires-Dist: ppft==1.7.7; extra == "dev"
188
- Requires-Dist: pre-commit==4.2.0; extra == "dev"
189
- Requires-Dist: proto-plus==1.26.1; extra == "dev"
190
- Requires-Dist: protobuf==5.29.5; extra == "dev"
191
- Requires-Dist: pyasn1==0.6.1; extra == "dev"
192
- Requires-Dist: pyasn1-modules==0.4.2; extra == "dev"
193
- Requires-Dist: pygments==2.19.2; extra == "dev"
194
- Requires-Dist: pyparsing==3.2.3; extra == "dev"
195
- Requires-Dist: pyproject-hooks==1.2.0; extra == "dev"
196
- Requires-Dist: pytest==8.4.1; extra == "dev"
197
- Requires-Dist: pytest-env==1.1.5; extra == "dev"
198
- Requires-Dist: python-dateutil==2.9.0.post0; extra == "dev"
199
- Requires-Dist: pytz==2025.2; extra == "dev"
200
- Requires-Dist: pyyaml==6.0.2; extra == "dev"
201
- Requires-Dist: requests==2.32.4; extra == "dev"
202
- Requires-Dist: rich==14.1.0; extra == "dev"
203
- Requires-Dist: rsa==4.9.1; extra == "dev"
204
- Requires-Dist: semver==3.0.4; extra == "dev"
205
- Requires-Dist: setuptools==80.9.0; extra == "dev"
206
- Requires-Dist: shellingham==1.5.4; extra == "dev"
207
- Requires-Dist: six==1.17.0; extra == "dev"
208
- Requires-Dist: typer==0.16.0; extra == "dev"
209
- Requires-Dist: typing-extensions==4.14.1; extra == "dev"
210
- Requires-Dist: tzdata==2025.2; extra == "dev"
211
- Requires-Dist: urllib3==2.5.0; extra == "dev"
212
- Requires-Dist: uv==0.8.5; extra == "dev"
213
- Requires-Dist: virtualenv==20.33.1; extra == "dev"
214
- Requires-Dist: wheel==0.45.1; extra == "dev"
20
+ Requires-Dist: pytest; extra == "dev"
21
+ Requires-Dist: pytest-env; extra == "dev"
22
+ Requires-Dist: pip-tools; extra == "dev"
23
+ Requires-Dist: lox; extra == "dev"
24
+ Requires-Dist: matplotlib; extra == "dev"
25
+ Requires-Dist: pandas; extra == "dev"
26
+ Requires-Dist: typer; extra == "dev"
27
+ Requires-Dist: imgcat; extra == "dev"
28
+ Requires-Dist: pre-commit; extra == "dev"
29
+ Requires-Dist: cogapp; extra == "dev"
30
+ Requires-Dist: semver; extra == "dev"
31
+ Requires-Dist: codespell; extra == "dev"
32
+ Requires-Dist: uv; extra == "dev"
33
+ Requires-Dist: google-cloud-bigquery; extra == "dev"
215
34
  Provides-Extra: help
216
- Requires-Dist: aiohappyeyeballs==2.6.1; extra == "help"
217
- Requires-Dist: aiohttp==3.12.15; extra == "help"
218
- Requires-Dist: aiosignal==1.4.0; extra == "help"
219
- Requires-Dist: aiosqlite==0.21.0; extra == "help"
220
- Requires-Dist: annotated-types==0.7.0; extra == "help"
221
- Requires-Dist: anyio==4.10.0; extra == "help"
222
- Requires-Dist: attrs==25.3.0; extra == "help"
223
- Requires-Dist: banks==2.2.0; extra == "help"
224
- Requires-Dist: certifi==2025.8.3; extra == "help"
225
- Requires-Dist: charset-normalizer==3.4.2; extra == "help"
226
- Requires-Dist: click==8.2.1; extra == "help"
227
- Requires-Dist: colorama==0.4.6; extra == "help"
228
- Requires-Dist: dataclasses-json==0.6.7; extra == "help"
229
- Requires-Dist: deprecated==1.2.18; extra == "help"
230
- Requires-Dist: dirtyjson==1.0.8; extra == "help"
231
- Requires-Dist: filelock==3.18.0; extra == "help"
232
- Requires-Dist: filetype==1.2.0; extra == "help"
233
- Requires-Dist: frozenlist==1.7.0; extra == "help"
234
- Requires-Dist: fsspec==2025.7.0; extra == "help"
235
- Requires-Dist: greenlet==3.2.3; extra == "help"
236
- Requires-Dist: griffe==1.10.0; extra == "help"
237
- Requires-Dist: h11==0.16.0; extra == "help"
238
- Requires-Dist: hf-xet==1.1.7; extra == "help"
239
- Requires-Dist: httpcore==1.0.9; extra == "help"
240
- Requires-Dist: httpx==0.28.1; extra == "help"
241
- Requires-Dist: huggingface-hub[inference]==0.34.3; extra == "help"
242
- Requires-Dist: idna==3.10; extra == "help"
243
- Requires-Dist: jinja2==3.1.6; extra == "help"
244
- Requires-Dist: joblib==1.5.1; extra == "help"
245
- Requires-Dist: llama-index-core==0.13.0; extra == "help"
246
- Requires-Dist: llama-index-embeddings-huggingface==0.6.0; extra == "help"
247
- Requires-Dist: llama-index-instrumentation==0.4.0; extra == "help"
248
- Requires-Dist: llama-index-workflows==1.3.0; extra == "help"
249
- Requires-Dist: markupsafe==3.0.2; extra == "help"
250
- Requires-Dist: marshmallow==3.26.1; extra == "help"
251
- Requires-Dist: mpmath==1.3.0; extra == "help"
252
- Requires-Dist: multidict==6.6.3; extra == "help"
253
- Requires-Dist: mypy-extensions==1.1.0; extra == "help"
254
- Requires-Dist: nest-asyncio==1.6.0; extra == "help"
255
- Requires-Dist: networkx==3.4.2; extra == "help"
256
- Requires-Dist: nltk==3.9.1; extra == "help"
257
- Requires-Dist: numpy==1.26.4; extra == "help"
258
- Requires-Dist: packaging==25.0; extra == "help"
259
- Requires-Dist: pillow==11.3.0; extra == "help"
260
- Requires-Dist: platformdirs==4.3.8; extra == "help"
261
- Requires-Dist: propcache==0.3.2; extra == "help"
262
- Requires-Dist: pydantic==2.11.7; extra == "help"
263
- Requires-Dist: pydantic-core==2.33.2; extra == "help"
264
- Requires-Dist: pyyaml==6.0.2; extra == "help"
265
- Requires-Dist: regex==2025.7.34; extra == "help"
266
- Requires-Dist: requests==2.32.4; extra == "help"
267
- Requires-Dist: safetensors==0.6.1; extra == "help"
268
- Requires-Dist: scikit-learn==1.7.1; extra == "help"
269
- Requires-Dist: scipy==1.15.3; extra == "help"
270
- Requires-Dist: sentence-transformers==5.1.0; extra == "help"
271
- Requires-Dist: setuptools==80.9.0; extra == "help"
272
- Requires-Dist: sniffio==1.3.1; extra == "help"
273
- Requires-Dist: sqlalchemy[asyncio]==2.0.42; extra == "help"
274
- Requires-Dist: sympy==1.14.0; extra == "help"
275
- Requires-Dist: tenacity==9.1.2; extra == "help"
276
- Requires-Dist: threadpoolctl==3.6.0; extra == "help"
277
- Requires-Dist: tiktoken==0.10.0; extra == "help"
278
- Requires-Dist: tokenizers==0.21.4; extra == "help"
279
- Requires-Dist: torch==2.8.0; extra == "help"
280
- Requires-Dist: tqdm==4.67.1; extra == "help"
281
- Requires-Dist: transformers==4.55.0; extra == "help"
282
- Requires-Dist: typing-extensions==4.14.1; extra == "help"
283
- Requires-Dist: typing-inspect==0.9.0; extra == "help"
284
- Requires-Dist: typing-inspection==0.4.1; extra == "help"
285
- Requires-Dist: urllib3==2.5.0; extra == "help"
286
- Requires-Dist: wrapt==1.17.2; extra == "help"
287
- Requires-Dist: yarl==1.20.1; extra == "help"
35
+ Requires-Dist: llama-index-embeddings-huggingface; extra == "help"
36
+ Requires-Dist: numpy>=1.26.4; extra == "help"
288
37
  Provides-Extra: browser
289
- Requires-Dist: altair==5.5.0; extra == "browser"
290
- Requires-Dist: attrs==25.3.0; extra == "browser"
291
- Requires-Dist: blinker==1.9.0; extra == "browser"
292
- Requires-Dist: cachetools==5.5.2; extra == "browser"
293
- Requires-Dist: certifi==2025.8.3; extra == "browser"
294
- Requires-Dist: charset-normalizer==3.4.2; extra == "browser"
295
- Requires-Dist: click==8.2.1; extra == "browser"
296
- Requires-Dist: gitdb==4.0.12; extra == "browser"
297
- Requires-Dist: gitpython==3.1.45; extra == "browser"
298
- Requires-Dist: idna==3.10; extra == "browser"
299
- Requires-Dist: jinja2==3.1.6; extra == "browser"
300
- Requires-Dist: jsonschema==4.25.0; extra == "browser"
301
- Requires-Dist: jsonschema-specifications==2025.4.1; extra == "browser"
302
- Requires-Dist: markupsafe==3.0.2; extra == "browser"
303
- Requires-Dist: narwhals==2.0.1; extra == "browser"
304
- Requires-Dist: numpy==1.26.4; extra == "browser"
305
- Requires-Dist: packaging==25.0; extra == "browser"
306
- Requires-Dist: pandas==2.3.1; extra == "browser"
307
- Requires-Dist: pillow==11.3.0; extra == "browser"
308
- Requires-Dist: protobuf==5.29.5; extra == "browser"
309
- Requires-Dist: pyarrow==21.0.0; extra == "browser"
310
- Requires-Dist: pydeck==0.9.1; extra == "browser"
311
- Requires-Dist: python-dateutil==2.9.0.post0; extra == "browser"
312
- Requires-Dist: pytz==2025.2; extra == "browser"
313
- Requires-Dist: referencing==0.36.2; extra == "browser"
314
- Requires-Dist: requests==2.32.4; extra == "browser"
315
- Requires-Dist: rpds-py==0.27.0; extra == "browser"
316
- Requires-Dist: six==1.17.0; extra == "browser"
317
- Requires-Dist: smmap==5.0.2; extra == "browser"
318
- Requires-Dist: streamlit==1.48.0; extra == "browser"
319
- Requires-Dist: tenacity==9.1.2; extra == "browser"
320
- Requires-Dist: toml==0.10.2; extra == "browser"
321
- Requires-Dist: tornado==6.5.1; extra == "browser"
322
- Requires-Dist: typing-extensions==4.14.1; extra == "browser"
323
- Requires-Dist: tzdata==2025.2; extra == "browser"
324
- Requires-Dist: urllib3==2.5.0; extra == "browser"
38
+ Requires-Dist: streamlit; extra == "browser"
325
39
  Provides-Extra: playwright
326
- Requires-Dist: greenlet==3.2.3; extra == "playwright"
327
- Requires-Dist: playwright==1.54.0; extra == "playwright"
328
- Requires-Dist: pyee==13.0.0; extra == "playwright"
329
- Requires-Dist: typing-extensions==4.14.1; extra == "playwright"
40
+ Requires-Dist: playwright; extra == "playwright"
330
41
  Dynamic: license-file
331
42
 
332
43
  ## Fork Additions
@@ -356,10 +67,28 @@ This project aims to be compatible with upstream Aider, but with priority commit
356
67
  * [Manually install necessary ubuntu dependencies](https://github.com/dwash96/aider-ce/issues/14)
357
68
  * [.gitignore updates](https://github.com/dwash96/aider-ce/commit/7c7e803fa63d1acd860eef1423e5a03220df6017)
358
69
  * [Experimental Context Compaction For Longer Running Generation Tasks](https://github.com/Aider-AI/aider/issues/6)
70
+ * [Edit Before Adding Files and Reflecting](https://github.com/dwash96/aider-ce/pull/22)
71
+ * [Fix Deepseek model configurations](https://github.com/Aider-AI/aider/commit/c839a6dd8964d702172cae007375e299732d3823)
72
+ * [Relax Version Pinning For Easier Distribution](https://github.com/dwash96/aider-ce/issues/18)
359
73
 
360
74
  ### Other Notes
361
75
  * [MCP Configuration](https://github.com/dwash96/aider-ce/blob/main/aider/website/docs/config/mcp.md)
362
76
 
77
+ ### Installation Instructions
78
+ This project should be installable using the commands
79
+
80
+ ```
81
+ pip install aider-ce
82
+ ```
83
+
84
+ or
85
+
86
+ ```
87
+ uv install aider-ce
88
+ ```
89
+
90
+ The package exports an `aider-ce` command that accepts all of Aider's configuration options
91
+
363
92
  <p align="center">
364
93
  <a href="https://aider.chat/"><img src="https://aider.chat/assets/logo.svg" alt="Aider Logo" width="300"></a>
365
94
  </p>
@@ -1,6 +1,6 @@
1
- aider/__init__.py,sha256=FoykFmA5M7CS-GdteU9ltnuwWXn9C-yaOlboNBw_VqA,496
1
+ aider/__init__.py,sha256=_0rGOUbmjt_9uXbUMUBIh1wlZS-0HMGGtm16UgIC3lA,496
2
2
  aider/__main__.py,sha256=Vdhw8YA1K3wPMlbJQYL5WqvRzAKVeZ16mZQFO9VRmCo,62
3
- aider/_version.py,sha256=pPWpRBCg4RrtutTIygPD-57h3h8_zc_l0yXgrVN53fY,719
3
+ aider/_version.py,sha256=S1v-Q8KSSBUV7yEgh0nYIh03SgFj_2d9EwcLahwAUN0,719
4
4
  aider/analytics.py,sha256=c5ujaCcMc3yG-9rz_0oSsqBwmVQRxJnui6iE_yDyY_M,7507
5
5
  aider/args.py,sha256=yjfHJm-eKBEXJ7MlqoGQEjkFhBlCvGtwp44AajAtROs,32491
6
6
  aider/args_formatter.py,sha256=CBRnzHyZk-fFCK0ekAzb6C4PPJOU-VTpWIIsJe3qUhk,6369
@@ -22,13 +22,13 @@ aider/linter.py,sha256=t5jwWZ1dvIzRtig1kTSjzl6u1LRfw0e19qwNIen2jAg,7998
22
22
  aider/llm.py,sha256=fGCemP1X9MBwrDfsTKGJ_1sx-yKz3DyoOvxZYOkvGak,1103
23
23
  aider/main.py,sha256=mC6-Q2UQG8-vWWG4GbkOY_vSk4I212pBEzCSs-i9-A0,44997
24
24
  aider/mdstream.py,sha256=fS9iQUQmIJPEMo7o1psPGE2yYj31MI3m3msdN-jEzUw,7594
25
- aider/models.py,sha256=JTLuuOSiSCmz2FRuEMPj7ST5eFI76AUYOSqK5XD_FWg,47193
25
+ aider/models.py,sha256=hic7Wb8cwudH9fkfJykxEP8k98nNROBwDkbNHWnW3OE,47146
26
26
  aider/onboarding.py,sha256=XdCPsi6idsRvV0TsnaBOk0QoH-g3KgctafSMxoxvx6k,16105
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=ZLq0E6gwm7KabzYASib-7bqv-E55JZOWCpXfC3IZJeE,22922
31
- aider/repomap.py,sha256=lz1JXCIdriFcaIqH9f2NL8zHE6JcId7gYM4l5hGm7I4,32118
31
+ aider/repomap.py,sha256=LU5QGiHX2TBJnHH8bXVdZ0UdhsIuz9Gz11HoxPay550,32365
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=Ei4Jy1xUsVD4lmuyVMONAVVHEB03hiVsGuE54etY4G0,8336
@@ -37,7 +37,7 @@ aider/special.py,sha256=OhsBWWM-DWwjWbi6kE7EqR4CiUfyJ6qJuCgcmywZSAc,4415
37
37
  aider/urls.py,sha256=W0OL4pahSIZAaSUHPvn9KPN1aIkXE5nAKcizMKy4EKg,1122
38
38
  aider/utils.py,sha256=wkT43yJx59Q0OfIlzNX2n9rPyEEo7WLKXdXoxNJzdz4,12231
39
39
  aider/versioncheck.py,sha256=R9R1gUJYgOtmUycpJ4YqxCkCOylQBSiZ_p_BAnHJ8H4,2977
40
- aider/voice.py,sha256=JKV-IZ7ZwL71ItfX54OmJOzPSq5ZPlGteBIunNcUkCU,6150
40
+ aider/voice.py,sha256=hNQCMCWhljcROJhzsvnkwgzzgQQbFORkpROhKeqICig,6797
41
41
  aider/waiting.py,sha256=55uw6FYlJNnfCVZaOQNKi_f0twzA5xcJS38fryq-agY,7646
42
42
  aider/watch.py,sha256=znCZhHCBlcMm-4SRJP-B0mWfsl5q26DAd-zlk2zykQ8,10641
43
43
  aider/watch_prompts.py,sha256=JHmXPZUKm1b1og22QolboU-Xie6bJWhmlbKBi2StkdI,556
@@ -46,7 +46,7 @@ aider/coders/architect_coder.py,sha256=b7KqtivnllPdyMfxbnEUd9G0C1ZFaiappV25Rz0Dk
46
46
  aider/coders/architect_prompts.py,sha256=R0_KxZjo-km_yNaeDAquDP9qfp3IdWgrdMirCWe0RIE,1658
47
47
  aider/coders/ask_coder.py,sha256=Omk4Ih8-prefkMZ_jnRS3faoW5CQUakHOvZ-s7piM3U,210
48
48
  aider/coders/ask_prompts.py,sha256=W6HwDUfzfOLt9q8sl6rw7fN7b5ND90FkxCZrtrWl5vY,1171
49
- aider/coders/base_coder.py,sha256=3KP9QyRYdzfQWmoAj0LdrNpuvxeUFkaJw0pOcNuA5fc,109882
49
+ aider/coders/base_coder.py,sha256=nNX-pm-jTU_tdUvsK4ybZTGM1pYqECKzwZ7ObzRe2nQ,109882
50
50
  aider/coders/base_prompts.py,sha256=O3bBjhf0hgvtKbQ9QyOMnRy8LrmfLyT9dVAcXxHS_3k,3659
51
51
  aider/coders/chat_chunks.py,sha256=8HPet6cmQdgWvaA_tGpinO4ASMst53uTcSEtNVTYDXE,1981
52
52
  aider/coders/context_coder.py,sha256=Y5LdIaYHywMB03lXsmHTYsDnyHIHJ6FNZLMWa9wjArs,1571
@@ -139,8 +139,8 @@ aider/queries/tree-sitter-languages/rust-tags.scm,sha256=9ljM1nzhfPs_ZTRw7cr2P9T
139
139
  aider/queries/tree-sitter-languages/scala-tags.scm,sha256=UxQjz80JIrrJ7Pm56uUnQyThfmQNvwk7aQzPNypB-Ao,1761
140
140
  aider/queries/tree-sitter-languages/typescript-tags.scm,sha256=OMdCeedPiA24ky82DpgTMKXK_l2ySTuF2zrQ2fJAi9E,1253
141
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
142
+ aider/resources/model-metadata.json,sha256=aEuPd8EATGOdDHdECxgdI3ep9v3SyDgrp1eMuQoWU5U,28645
143
+ aider/resources/model-settings.yml,sha256=_1kdt9osUYPOnN1DaYCvhgphsAOD--XmJgAiWUma5fA,57627
144
144
  aider/tools/__init__.py,sha256=LVV7Cp4C74O5BCKWzES4L1I2K0RSf25WnKb683mOHi8,1198
145
145
  aider/tools/command.py,sha256=TxUByCebyNVpob3Or9pLmSuR9Q0XLvsE4wb9aH1-sk4,2604
146
146
  aider/tools/command_interactive.py,sha256=dgq_XagpIQ9VV79v0lMS87lWcoOwy1bFUT0-EudBz1w,2135
@@ -256,9 +256,9 @@ aider/website/docs/usage/tutorials.md,sha256=ZKBztbUtucHOiv9h8gvWiWTP6MTSsFyz4mA
256
256
  aider/website/docs/usage/voice.md,sha256=BtX7pHRgHRWUmrNbS4JssC-SO8RrJ_OetBCtIYpO0pU,3452
257
257
  aider/website/docs/usage/watch.md,sha256=OVF14lGtv1vhSXRE8PpxQ3YW-uXSifarUbmLBjmLRyA,7940
258
258
  aider/website/share/index.md,sha256=P51aDw9AT8AVbsU7v6g1tWuMjly7y_plM_ZI1ScaT8Y,3172
259
- aider_ce-0.87.3.dev4.dist-info/licenses/LICENSE.txt,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
260
- aider_ce-0.87.3.dev4.dist-info/METADATA,sha256=C4THDCQ8AZndEKJNmLxfnoN-dbaPdm3T-jrIW_uE6r8,28854
261
- aider_ce-0.87.3.dev4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
262
- aider_ce-0.87.3.dev4.dist-info/entry_points.txt,sha256=OxI0JxfyJrc24nTmsdvpaWUx8Flz2huOij_-ifp-48w,69
263
- aider_ce-0.87.3.dev4.dist-info/top_level.txt,sha256=uwOA6ycgSiRLrBsaRBcIeN_eBKAX78U01_KDEHR8mBk,6
264
- aider_ce-0.87.3.dev4.dist-info/RECORD,,
259
+ aider_ce-0.87.5.dev3.dist-info/licenses/LICENSE.txt,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
260
+ aider_ce-0.87.5.dev3.dist-info/METADATA,sha256=0URJc2OpbEq-HLJDwUZZPF86GaI7dE2aUxF2mpunNnQ,16785
261
+ aider_ce-0.87.5.dev3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
262
+ aider_ce-0.87.5.dev3.dist-info/entry_points.txt,sha256=OxI0JxfyJrc24nTmsdvpaWUx8Flz2huOij_-ifp-48w,69
263
+ aider_ce-0.87.5.dev3.dist-info/top_level.txt,sha256=uwOA6ycgSiRLrBsaRBcIeN_eBKAX78U01_KDEHR8mBk,6
264
+ aider_ce-0.87.5.dev3.dist-info/RECORD,,