devflux-aider-code 0.86.2.post35__py3-none-any.whl → 0.86.2.post42__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
aider/_version.py CHANGED
@@ -1,5 +1,6 @@
1
- # file generated by setuptools-scm
1
+ # file generated by vcs-versioning
2
2
  # don't change, don't track in version control
3
+ from __future__ import annotations
3
4
 
4
5
  __all__ = [
5
6
  "__version__",
@@ -10,25 +11,14 @@ __all__ = [
10
11
  "commit_id",
11
12
  ]
12
13
 
13
- TYPE_CHECKING = False
14
- if TYPE_CHECKING:
15
- from typing import Tuple
16
- from typing import Union
17
-
18
- VERSION_TUPLE = Tuple[Union[int, str], ...]
19
- COMMIT_ID = Union[str, None]
20
- else:
21
- VERSION_TUPLE = object
22
- COMMIT_ID = object
23
-
24
14
  version: str
25
15
  __version__: str
26
- __version_tuple__: VERSION_TUPLE
27
- version_tuple: VERSION_TUPLE
28
- commit_id: COMMIT_ID
29
- __commit_id__: COMMIT_ID
16
+ __version_tuple__: tuple[int | str, ...]
17
+ version_tuple: tuple[int | str, ...]
18
+ commit_id: str | None
19
+ __commit_id__: str | None
30
20
 
31
- __version__ = version = '0.86.2.post35'
32
- __version_tuple__ = version_tuple = (0, 86, 2, 'post35')
21
+ __version__ = version = '0.86.2.post42'
22
+ __version_tuple__ = version_tuple = (0, 86, 2, 'post42')
33
23
 
34
24
  __commit_id__ = commit_id = None
aider/analytics.py CHANGED
@@ -137,7 +137,7 @@ class Analytics:
137
137
 
138
138
  def get_data_file_path(self):
139
139
  try:
140
- data_file = Path.home() / ".devflux" / ".aider" / "analytics.json"
140
+ data_file = Path.home() / ".aider" / "analytics.json"
141
141
  data_file.parent.mkdir(parents=True, exist_ok=True)
142
142
  return data_file
143
143
  except OSError:
aider/args.py CHANGED
@@ -873,7 +873,7 @@ def get_parser(default_config_files, git_root):
873
873
  ),
874
874
  )
875
875
 
876
- # <code action='add'>
876
+ # <code add='mcp 설정 추가, output format 설정'>
877
877
  group.add_argument(
878
878
  "--mcp",
879
879
  action=argparse.BooleanOptionalAction,
@@ -407,7 +407,7 @@ class Coder:
407
407
  self.detect_urls = detect_urls
408
408
 
409
409
  self.num_cache_warming_pings = num_cache_warming_pings
410
- # <code>
410
+ # <code add='output 설정 추가 '>
411
411
  self.output_format = output_format
412
412
  # </code>
413
413
 
aider/commands.py CHANGED
@@ -95,7 +95,7 @@ class Commands:
95
95
  self.parser = parser
96
96
  self.args = args
97
97
  self.verbose = verbose
98
- # <code>
98
+ # <code add='다국처 처리, output 포맷 설정'>
99
99
  self.i18n = i18n
100
100
  self.output_format = output_format
101
101
  # </code>
@@ -2187,7 +2187,7 @@ def cmd_auth_action(model, args):
2187
2187
  global stop_event
2188
2188
  global auth_thread
2189
2189
 
2190
- oauth_keys_file = Path.home() / ".devflux" / "devflux.ai.router.json"
2190
+ oauth_keys_file = Path.home() / ".devflux" / ".ai" / "ai.config.json"
2191
2191
  provider = model.info.get("litellm_provider", "").lower()
2192
2192
  if not provider:
2193
2193
  return
aider/help.py CHANGED
@@ -90,7 +90,7 @@ def get_index():
90
90
  )
91
91
  from llama_index.core.node_parser import MarkdownNodeParser
92
92
 
93
- dname = Path.home() / ".devflux" / ".aider" / "caches" / ("help." + __version__)
93
+ dname = Path.home() / ".aider" / "caches" / ("help." + __version__)
94
94
 
95
95
  index = None
96
96
  try:
aider/io.py CHANGED
@@ -287,7 +287,7 @@ class InputOutput:
287
287
  self.multiline_mode = multiline_mode
288
288
  self.bell_on_next_input = False
289
289
  self.notifications = notifications
290
- # <code action='add'>
290
+ # <code add='다국어, 출력 포맷'>
291
291
  self.i18n = i18n
292
292
  self.output_format = output_format
293
293
  # </code>
aider/main.py CHANGED
@@ -335,7 +335,7 @@ def parse_lint_cmds(lint_cmds, io):
335
335
 
336
336
 
337
337
  def generate_search_path_list(default_file, git_root, command_line_file):
338
- files = [Path.home() / ".devflux" / ".aider" / default_file]
338
+ files = [Path.home() / ".aider" / default_file]
339
339
  if git_root:
340
340
  files.append(Path(git_root) / ".aider" / default_file) # git root
341
341
  files.append(default_file)
@@ -398,7 +398,7 @@ def load_dotenv_files(git_root, dotenv_fname, encoding="utf-8"):
398
398
  )
399
399
 
400
400
  # Explicitly add the OAuth keys file to the beginning of the list
401
- oauth_keys_file = Path.home() / ".devflux" / ".aider" / "oauth-keys.env"
401
+ oauth_keys_file = Path.home() / ".aider" / "oauth-keys.env"
402
402
  if oauth_keys_file.exists():
403
403
  # Insert at the beginning so it's loaded first (and potentially overridden)
404
404
  dotenv_files.insert(0, str(oauth_keys_file.resolve()))
@@ -486,7 +486,7 @@ def sanity_check_repo(repo, io):
486
486
 
487
487
 
488
488
  def load_oauth_key_from_file(model):
489
- oauth_keys_file = Path.home() / ".devflux" / "devflux.ai.router.json"
489
+ oauth_keys_file = Path.home() / ".devflux" / ".ai" / "ai.config.json"
490
490
  provider = model.info.get("litellm_provider", "").lower()
491
491
  if not provider:
492
492
  return
@@ -541,7 +541,7 @@ def main(argv=None, input=None, output=None, force_git_root=None, return_coder=F
541
541
 
542
542
  for conf_fname in conf_fnames:
543
543
  default_config_files.append(
544
- Path.home() / ".devflux" / ".aider" / conf_fname
544
+ Path.home() / ".aider" / conf_fname
545
545
  ) # homedir
546
546
 
547
547
  default_config_files = list(map(str, default_config_files))
@@ -1136,7 +1136,7 @@ def main(argv=None, input=None, output=None, force_git_root=None, return_coder=F
1136
1136
  if args.aiderignore:
1137
1137
  ignores.append(args.aiderignore)
1138
1138
 
1139
- ignores.append(str(Path.cwd() / ".devflux" / ".aider" / ".aiderignore"))
1139
+ ignores.append(str(Path.cwd() / ".aider" / ".aiderignore"))
1140
1140
 
1141
1141
  if args.watch_files:
1142
1142
  file_watcher = FileWatcher(
@@ -1298,7 +1298,7 @@ def main(argv=None, input=None, output=None, force_git_root=None, return_coder=F
1298
1298
 
1299
1299
  def is_first_run_of_new_version(io, verbose=False):
1300
1300
  """Check if this is the first run of a new version/executable combination"""
1301
- installs_file = Path.home() / ".devflux" / ".aider" / "installs.json"
1301
+ installs_file = Path.home() / ".aider" / "installs.json"
1302
1302
  key = (__version__, sys.executable)
1303
1303
 
1304
1304
  # Never show notes for .dev versions
aider/mcpm/mcp_manager.py CHANGED
@@ -66,7 +66,7 @@ class McpManager:
66
66
  pass
67
67
  for conf_fname in conf_fnames:
68
68
  default_config_files.append(
69
- Path.home() / ".devflux" / ".aider" / conf_fname
69
+ Path.home() / ".aider" / conf_fname
70
70
  ) # homedir
71
71
 
72
72
  default_config_files = list(map(str, default_config_files))
aider/models.py CHANGED
@@ -52,6 +52,9 @@ gpt-4-vision-preview
52
52
  gpt-4-1106-vision-preview
53
53
  gpt-4o-mini
54
54
  gpt-4o-mini-2024-07-18
55
+ gpt-5.5
56
+ gpt-5.5-pro
57
+ gpt-5.5-chat-latest
55
58
  gpt-3.5-turbo
56
59
  gpt-3.5-turbo-0301
57
60
  gpt-3.5-turbo-0613
@@ -75,8 +78,10 @@ claude-3-5-sonnet-20241022
75
78
  claude-sonnet-4-20250514
76
79
  claude-opus-4-20250514
77
80
  claude-opus-4-6
81
+ claude-opus-4-7
78
82
  claude-sonnet-4-5
79
83
  claude-sonnet-4-5-20250929
84
+ claude-sonnet-4-6
80
85
  claude-haiku-4-5
81
86
  claude-haiku-4-5-20251001
82
87
  """
@@ -86,9 +91,9 @@ ANTHROPIC_MODELS = [ln.strip() for ln in ANTHROPIC_MODELS.splitlines() if ln.str
86
91
  # Mapping of model aliases to their canonical names
87
92
  MODEL_ALIASES = {
88
93
  # Claude models
89
- "sonnet": "claude-sonnet-4-5",
94
+ "sonnet": "claude-sonnet-4-6",
90
95
  "haiku": "claude-haiku-4-5",
91
- "opus": "claude-opus-4-6",
96
+ "opus": "claude-opus-4-7",
92
97
  # GPT models
93
98
  "4": "gpt-4-0613",
94
99
  "4o": "gpt-4o",
@@ -413,7 +418,11 @@ class Model(ModelSettings):
413
418
  if self.name.startswith("openrouter/"):
414
419
  if self.accepts_settings is None:
415
420
  self.accepts_settings = []
416
- if "thinking_tokens" not in self.accepts_settings:
421
+ if (
422
+ "thinking_tokens" not in self.accepts_settings
423
+ and "claude-opus-4.7" not in self.name
424
+ and "claude-opus-4-7" not in self.name
425
+ ):
417
426
  self.accepts_settings.append("thinking_tokens")
418
427
  if "reasoning_effort" not in self.accepts_settings:
419
428
  self.accepts_settings.append("reasoning_effort")
@@ -512,18 +521,17 @@ class Model(ModelSettings):
512
521
  self.reminder = "sys"
513
522
  return # <--
514
523
 
515
- if (
516
- "sonnet-4-5" in model
517
- or "opus-4-6" in model
518
- or "haiku-4-5" in model
519
- or "claude-sonnet-4-5" in model
520
- or "claude-opus-4-6" in model
521
- or "claude-haiku-4-5" in model
522
- ):
524
+ if "sonnet-4-" in model or "opus-4-" in model or "haiku-4-" in model:
523
525
  self.edit_format = "diff"
524
526
  self.use_repo_map = True
525
527
  self.examples_as_sys_msg = False
526
- if "thinking_tokens" not in self.accepts_settings:
528
+ if "opus-4-" in model:
529
+ self.use_temperature = False
530
+ if (
531
+ "thinking_tokens" not in self.accepts_settings
532
+ and "4.7" not in model
533
+ and "4-7" not in model
534
+ ):
527
535
  self.accepts_settings.append("thinking_tokens")
528
536
  return # <--
529
537
 
aider/openrouter.py CHANGED
@@ -31,7 +31,7 @@ class OpenRouterModelManager:
31
31
  CACHE_TTL = 60 * 60 * 24 # 24 h
32
32
 
33
33
  def __init__(self) -> None:
34
- self.cache_dir = Path.home() / ".devflux" / ".aider" / "caches"
34
+ self.cache_dir = Path.home() / ".aider" / "caches"
35
35
  self.cache_file = self.cache_dir / "openrouter_models.json"
36
36
  self.content: Dict | None = None
37
37
  self.verify_ssl: bool = True
aider/repomap.py CHANGED
@@ -40,7 +40,7 @@ UPDATING_REPO_MAP_MESSAGE = "Updating repo map"
40
40
 
41
41
 
42
42
  class RepoMap:
43
- # <code>
43
+ # <code change='경로 수정, aider 추가'>
44
44
  TAGS_CACHE_DIR = os.path.join(".aider", f".aider.tags.cache.v{CACHE_VERSION}")
45
45
  # </code>
46
46
 
@@ -1856,6 +1856,31 @@
1856
1856
  accepts_settings: ["thinking_tokens"]
1857
1857
 
1858
1858
  # Claude 4.5/4.6 (Anthropic docs: models/overview)
1859
+ - name: claude-sonnet-4-6
1860
+ edit_format: diff
1861
+ weak_model_name: claude-haiku-4-5
1862
+ use_repo_map: true
1863
+ examples_as_sys_msg: false
1864
+ extra_params:
1865
+ max_tokens: 64000
1866
+ cache_control: true
1867
+ editor_model_name: claude-sonnet-4-6
1868
+ editor_edit_format: editor-diff
1869
+ accepts_settings: ["thinking_tokens"]
1870
+
1871
+ - name: claude-opus-4-7
1872
+ edit_format: diff
1873
+ weak_model_name: claude-haiku-4-5
1874
+ use_repo_map: true
1875
+ examples_as_sys_msg: false
1876
+ extra_params:
1877
+ max_tokens: 128000
1878
+ cache_control: true
1879
+ editor_model_name: claude-sonnet-4-6
1880
+ editor_edit_format: editor-diff
1881
+ use_temperature: false
1882
+ overeager: true
1883
+
1859
1884
  - name: claude-opus-4-6
1860
1885
  edit_format: diff
1861
1886
  weak_model_name: claude-haiku-4-5
@@ -1867,6 +1892,7 @@
1867
1892
  editor_model_name: claude-sonnet-4-5
1868
1893
  editor_edit_format: editor-diff
1869
1894
  accepts_settings: ["thinking_tokens"]
1895
+ overeager: true
1870
1896
 
1871
1897
  - name: claude-sonnet-4-5-20250929
1872
1898
  edit_format: diff
@@ -1921,6 +1947,20 @@
1921
1947
  editor_model_name: bedrock/global.anthropic.claude-sonnet-4-5-20250929-v1:0
1922
1948
  editor_edit_format: editor-diff
1923
1949
  accepts_settings: ["thinking_tokens"]
1950
+ overeager: true
1951
+
1952
+ - name: bedrock/anthropic.claude-opus-4-7-v1
1953
+ edit_format: diff
1954
+ weak_model_name: bedrock/anthropic.claude-haiku-4-5-20251001-v1:0
1955
+ use_repo_map: true
1956
+ examples_as_sys_msg: false
1957
+ extra_params:
1958
+ max_tokens: 128000
1959
+ cache_control: true
1960
+ editor_model_name: bedrock/global.anthropic.claude-sonnet-4-5-20250929-v1:0
1961
+ editor_edit_format: editor-diff
1962
+ use_temperature: false
1963
+ overeager: true
1924
1964
 
1925
1965
  - name: bedrock/anthropic.claude-sonnet-4-5-20250929-v1:0
1926
1966
  edit_format: diff
@@ -1954,6 +1994,20 @@
1954
1994
  editor_model_name: vertex_ai/claude-sonnet-4-5@20250929
1955
1995
  editor_edit_format: editor-diff
1956
1996
  accepts_settings: ["thinking_tokens"]
1997
+ overeager: true
1998
+
1999
+ - name: vertex_ai/claude-opus-4-7
2000
+ edit_format: diff
2001
+ weak_model_name: vertex_ai/claude-haiku-4-5@20251001
2002
+ use_repo_map: true
2003
+ examples_as_sys_msg: false
2004
+ extra_params:
2005
+ max_tokens: 128000
2006
+ cache_control: true
2007
+ editor_model_name: vertex_ai/claude-sonnet-4-5@20250929
2008
+ editor_edit_format: editor-diff
2009
+ use_temperature: false
2010
+ overeager: true
1957
2011
 
1958
2012
  - name: vertex_ai/claude-sonnet-4-5@20250929
1959
2013
  edit_format: diff
@@ -2070,6 +2124,20 @@
2070
2124
  editor_model_name: openrouter/anthropic/claude-sonnet-4-5
2071
2125
  editor_edit_format: editor-diff
2072
2126
  accepts_settings: ["thinking_tokens"]
2127
+ overeager: true
2128
+
2129
+ - name: openrouter/anthropic/claude-opus-4.7
2130
+ edit_format: diff
2131
+ weak_model_name: openrouter/anthropic/claude-haiku-4-5
2132
+ use_repo_map: true
2133
+ examples_as_sys_msg: false
2134
+ extra_params:
2135
+ max_tokens: 128000
2136
+ cache_control: true
2137
+ editor_model_name: openrouter/anthropic/claude-sonnet-4-5
2138
+ editor_edit_format: editor-diff
2139
+ use_temperature: false
2140
+ overeager: true
2073
2141
 
2074
2142
 
2075
2143
  - name: openrouter/anthropic/claude-sonnet-4.5
@@ -2281,6 +2349,33 @@
2281
2349
  use_temperature: false
2282
2350
  accepts_settings: ["reasoning_effort"]
2283
2351
 
2352
+ - name: gpt-5.5
2353
+ edit_format: diff
2354
+ weak_model_name: gpt-5-nano
2355
+ use_repo_map: true
2356
+ use_temperature: false
2357
+ accepts_settings: ["reasoning_effort"]
2358
+ overeager: true
2359
+
2360
+ - name: gpt-5.5-pro
2361
+ streaming: false
2362
+ edit_format: diff
2363
+ weak_model_name: gpt-5-mini
2364
+ use_repo_map: true
2365
+ editor_model_name: gpt-5.5
2366
+ editor_edit_format: editor-diff
2367
+ system_prompt_prefix: "Formatting re-enabled. "
2368
+ accepts_settings: ["reasoning_effort"]
2369
+ examples_as_sys_msg: true
2370
+ use_temperature: false
2371
+
2372
+ - name: gpt-5.5-chat-latest
2373
+ edit_format: diff
2374
+ weak_model_name: gpt-5-nano
2375
+ use_repo_map: true
2376
+ use_temperature: false
2377
+ accepts_settings: ["reasoning_effort"]
2378
+
2284
2379
  - name: gpt-5-codex
2285
2380
  edit_format: diff
2286
2381
  weak_model_name: gpt-5-nano
@@ -2464,6 +2559,32 @@
2464
2559
  use_temperature: false
2465
2560
  accepts_settings: ["reasoning_effort"]
2466
2561
 
2562
+ - name: azure/gpt-5.5
2563
+ edit_format: diff
2564
+ weak_model_name: azure/gpt-5-nano
2565
+ use_repo_map: true
2566
+ use_temperature: false
2567
+ accepts_settings: ["reasoning_effort"]
2568
+
2569
+ - name: azure/gpt-5.5-pro
2570
+ streaming: false
2571
+ edit_format: diff
2572
+ weak_model_name: azure/gpt-5-mini
2573
+ use_repo_map: true
2574
+ editor_model_name: azure/gpt-5.5
2575
+ editor_edit_format: editor-diff
2576
+ system_prompt_prefix: "Formatting re-enabled. "
2577
+ accepts_settings: ["reasoning_effort"]
2578
+ examples_as_sys_msg: true
2579
+ use_temperature: false
2580
+
2581
+ - name: azure/gpt-5.5-chat-latest
2582
+ edit_format: diff
2583
+ weak_model_name: azure/gpt-5-nano
2584
+ use_repo_map: true
2585
+ use_temperature: false
2586
+ accepts_settings: ["reasoning_effort"]
2587
+
2467
2588
  - name: openai/gpt-5
2468
2589
  edit_format: diff
2469
2590
  weak_model_name: openai/gpt-5-nano
@@ -2645,6 +2766,32 @@
2645
2766
  use_temperature: false
2646
2767
  accepts_settings: ["reasoning_effort"]
2647
2768
 
2769
+ - name: openai/gpt-5.5
2770
+ edit_format: diff
2771
+ weak_model_name: openai/gpt-5-nano
2772
+ use_repo_map: true
2773
+ use_temperature: false
2774
+ accepts_settings: ["reasoning_effort"]
2775
+
2776
+ - name: openai/gpt-5.5-pro
2777
+ streaming: false
2778
+ edit_format: diff
2779
+ weak_model_name: openai/gpt-5-mini
2780
+ use_repo_map: true
2781
+ editor_model_name: openai/gpt-5.5
2782
+ editor_edit_format: editor-diff
2783
+ system_prompt_prefix: "Formatting re-enabled. "
2784
+ accepts_settings: ["reasoning_effort"]
2785
+ examples_as_sys_msg: true
2786
+ use_temperature: false
2787
+
2788
+ - name: openai/gpt-5.5-chat-latest
2789
+ edit_format: diff
2790
+ weak_model_name: openai/gpt-5-nano
2791
+ use_repo_map: true
2792
+ use_temperature: false
2793
+ accepts_settings: ["reasoning_effort"]
2794
+
2648
2795
  - name: openrouter/openai/gpt-5
2649
2796
  edit_format: diff
2650
2797
  weak_model_name: openrouter/openai/gpt-5-nano
@@ -2826,6 +2973,32 @@
2826
2973
  use_temperature: false
2827
2974
  accepts_settings: ["reasoning_effort"]
2828
2975
 
2976
+ - name: openrouter/openai/gpt-5.5
2977
+ edit_format: diff
2978
+ weak_model_name: openrouter/openai/gpt-5-nano
2979
+ use_repo_map: true
2980
+ use_temperature: false
2981
+ accepts_settings: ["reasoning_effort"]
2982
+
2983
+ - name: openrouter/openai/gpt-5.5-pro
2984
+ streaming: false
2985
+ edit_format: diff
2986
+ weak_model_name: openrouter/openai/gpt-5-mini
2987
+ use_repo_map: true
2988
+ editor_model_name: openrouter/openai/gpt-5.5
2989
+ editor_edit_format: editor-diff
2990
+ system_prompt_prefix: "Formatting re-enabled. "
2991
+ accepts_settings: ["reasoning_effort"]
2992
+ examples_as_sys_msg: true
2993
+ use_temperature: false
2994
+
2995
+ - name: openrouter/openai/gpt-5.5-chat-latest
2996
+ edit_format: diff
2997
+ weak_model_name: openrouter/openai/gpt-5-nano
2998
+ use_repo_map: true
2999
+ use_temperature: false
3000
+ accepts_settings: ["reasoning_effort"]
3001
+
2829
3002
  - name: gpt-4.1-nano
2830
3003
  edit_format: diff
2831
3004
  weak_model_name: gpt-4.1-nano
aider/versioncheck.py CHANGED
@@ -9,7 +9,7 @@ import aider
9
9
  from aider import utils
10
10
  from aider.dump import dump # noqa: F401
11
11
 
12
- VERSION_CHECK_FNAME = Path.home() / ".devflux" / ".aider" / "caches" / "versioncheck"
12
+ VERSION_CHECK_FNAME = Path.home() / ".aider" / "caches" / "versioncheck"
13
13
 
14
14
 
15
15
  def install_from_main_branch(io):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: devflux-aider-code
3
- Version: 0.86.2.post35
3
+ Version: 0.86.2.post42
4
4
  Summary: Devflux Aider is AI pair programming in your terminal
5
5
  Author-email: mks <devplus.kr@gmail.com>
6
6
  License-Expression: Apache-2.0
@@ -359,7 +359,7 @@ cog.out(text)
359
359
  <a href="https://github.com/Aider-AI/aider/stargazers"><img alt="GitHub Stars" title="Total number of GitHub stars the Aider project has received"
360
360
  src="https://img.shields.io/github/stars/Aider-AI/aider?style=flat-square&logo=github&color=f1c40f&labelColor=555555"/></a>
361
361
  <a href="https://pypi.org/project/aider-chat/"><img alt="PyPI Downloads" title="Total number of installations via pip from PyPI"
362
- src="https://img.shields.io/badge/📦%20Installs-5.7M-2ecc71?style=flat-square&labelColor=555555"/></a>
362
+ src="https://img.shields.io/badge/📦%20Installs-6.8M-2ecc71?style=flat-square&labelColor=555555"/></a>
363
363
  <img alt="Tokens per week" title="Number of tokens processed weekly by Aider users"
364
364
  src="https://img.shields.io/badge/📈%20Tokens%2Fweek-15B-3498db?style=flat-square&labelColor=555555"/>
365
365
  <a href="https://openrouter.ai/#options-menu"><img alt="OpenRouter Ranking" title="Aider's ranking among applications on the OpenRouter platform"
@@ -1,10 +1,10 @@
1
1
  aider/__init__.py,sha256=c8DzuslAoHzS0Mm546lrQ2GI1H0EiTa--c3adW72E8Q,516
2
2
  aider/__main__.py,sha256=zyVdC6cbkNr83stGpV2wbcwl-J7zTpwqW_8oYD6x6n4,67
3
- aider/_version.py,sha256=igbIvH4m0tn52YfN7jdizcd4FchiBu9f10gvlg2lobQ,757
4
- aider/analytics.py,sha256=hyx-ZbMXWipJMtzuea4bE4fAKWmJdmb-SPCxwSklLtQ,7592
5
- aider/args.py,sha256=Tv-lqgoCB-Q9nadJjslVH8kg6ucBUarChnhLTFqwQxc,31260
3
+ aider/_version.py,sha256=Olo2wBd4TxorAR84cBoH1IemNBrXce7PHZPLBp3XImw,563
4
+ aider/analytics.py,sha256=30x-zmyql-ACb8Evja-6JnmMZ_HKZp2wTelBB_N9afY,7579
5
+ aider/args.py,sha256=ZMlkNQgDSuolkGhCN6nlAApMOWNuJHtDmWJEDoE1NoU,31293
6
6
  aider/args_formatter.py,sha256=CBRnzHyZk-fFCK0ekAzb6C4PPJOU-VTpWIIsJe3qUhk,6369
7
- aider/commands.py,sha256=ZP1a4ihwSr87Q6Un1HQQ3izubWLL0EPjuuxw5MzWnCU,81710
7
+ aider/commands.py,sha256=CnCd7zfUN_0paqLPBuKiEB2oRS4nWqqodgzChzH2JC4,81755
8
8
  aider/copypaste.py,sha256=J99QrXILUED_GPdEqxt7WjGZ5if8sfy0VQTzsV2jBrE,2095
9
9
  aider/deprecated.py,sha256=SNeAWR7ih87F5AyFpC4pxRoJAaw8measBW583w0EUT8,4277
10
10
  aider/diffs.py,sha256=y6_rxIKe3FPCIsVy_RRkHdofguYOhYBr2Oytr5AqjHI,3028
@@ -13,22 +13,22 @@ aider/editor.py,sha256=o2mMoqL6XbFIu2KvA-0HrgFx0_I5y-tiqr7z5dskJiY,4647
13
13
  aider/exceptions.py,sha256=pdN2Szl52SuUZaezKYvhcrVM0j5k-IzvX33sIdNR1Dk,4331
14
14
  aider/format_settings.py,sha256=wHW4bLTKwqUKDGX4onxirC4cNgeJ-lHPuS1H04_R444,1041
15
15
  aider/gui.py,sha256=vLqguaqHiczcFkNfFCANxgkLez6_eKgikm2JOIR1vBM,17837
16
- aider/help.py,sha256=Jjz1339dFjArYIipA3_OfgA6Bd_rbCDhpOBCN3gz6nA,4447
16
+ aider/help.py,sha256=Q8KS0G05Ick2YsVetpj9lAlNH3WjJTHg3t8sf5ZwlC0,4434
17
17
  aider/help_pats.py,sha256=syn7pSVJdcf8uMKTxnZUZBQu-r8JMAi-rrC-k2er1Fk,376
18
18
  aider/history.py,sha256=XJN3h11skmi6Fuxs_TzDDH09jCPUL_sqXDvDda78fnk,4769
19
19
  aider/i18n.py,sha256=HL07UX0HmadL1bUfEorVbLP_jCqEngbIa8HQWO7_WPg,583
20
- aider/io.py,sha256=aAKzPihT85qmSuTqj8zIDogay61miJfr9cZJw2d0n38,45662
20
+ aider/io.py,sha256=yPEcb8QX5-dSqTPPXAK3O51QEPDayJqIMTt3rJfHvYE,45680
21
21
  aider/linter.py,sha256=t5jwWZ1dvIzRtig1kTSjzl6u1LRfw0e19qwNIen2jAg,7998
22
22
  aider/llm.py,sha256=ahJbmKBW3A9m9JrZ4f_Xn-_tPQXyPG1Rw0M6p-AyYLI,1112
23
- aider/main.py,sha256=lVunoCIFR_FYnYwYKTR2vPamx72iFjLwLMLhhtgjJIE,47239
23
+ aider/main.py,sha256=4osCJXICykggceK9MGysjf4BjSxrAQ5bPx5KOO4Sr0o,47175
24
24
  aider/mdstream.py,sha256=fS9iQUQmIJPEMo7o1psPGE2yYj31MI3m3msdN-jEzUw,7594
25
- aider/models.py,sha256=1RvcfpdFCehdPFQqsIdeDYEqsQ8RNLf4Q5uHCBawBHo,47280
25
+ aider/models.py,sha256=GWDdDbkbkO0HBdocCue_awjYD6WbhgahymGV-0zksP0,47514
26
26
  aider/onboarding.py,sha256=XdCPsi6idsRvV0TsnaBOk0QoH-g3KgctafSMxoxvx6k,16105
27
- aider/openrouter.py,sha256=jyNy0POeMfP5sJDMwVkpN4gpInAotkBMIFAkhCFYPWY,4654
27
+ aider/openrouter.py,sha256=dQkyB-dYvjuYtXtkp4IfFRD8ivecgy2s-oG80IrdwCA,4641
28
28
  aider/prompts.py,sha256=S5zi3aGaLl_2wRXgFWFbC0yp1Sh-3kgPeFIaB3g5MaI,2354
29
29
  aider/reasoning_tags.py,sha256=VOg5wM7JSrMo47OyS1FFuLrr2cp2KyutEC4_zsUsCbY,2288
30
30
  aider/repo.py,sha256=dZ1jkO069Q4ZGXqxYg6URxJm3hVQ7NZqmXpdidKDLfo,23576
31
- aider/repomap.py,sha256=-zp6p8VDdhZsHRCuEHFHqKgE1OUyLN0krXT8335Dmvw,28226
31
+ aider/repomap.py,sha256=Px-YShCOlcEwzdhndb07FlFx-hSR_soBcQqZIzCjBlY,28263
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=PSKnBzTeiyqCTUVYCBZDC8onQ39GVnxpB0EWwv7QBs8,8325
@@ -36,7 +36,7 @@ aider/sendchat.py,sha256=Gq5A5E2kEg0MPE3tTKulhQseroXCwsGtLDH_OEHB2-4,1854
36
36
  aider/special.py,sha256=OhsBWWM-DWwjWbi6kE7EqR4CiUfyJ6qJuCgcmywZSAc,4415
37
37
  aider/urls.py,sha256=W0OL4pahSIZAaSUHPvn9KPN1aIkXE5nAKcizMKy4EKg,1122
38
38
  aider/utils.py,sha256=gi2nYlKG16VkDYGBR9Ro2CuUNgFdU_7n6PZKTnNbaO4,9499
39
- aider/versioncheck.py,sha256=7ULwUeAN7QhByh2HK-nTNxnYkJHVINNsd2jxDKEaFWs,2992
39
+ aider/versioncheck.py,sha256=5Ck6TzmrCQNKChs0GXU4nMAcZ2I9FCDZhLIXULYGUdk,2979
40
40
  aider/voice.py,sha256=JKV-IZ7ZwL71ItfX54OmJOzPSq5ZPlGteBIunNcUkCU,6150
41
41
  aider/waiting.py,sha256=55uw6FYlJNnfCVZaOQNKi_f0twzA5xcJS38fryq-agY,7646
42
42
  aider/watch.py,sha256=ALV7sg6OPCG3CCzyggVsQis_AyeutOqmL2b3n2N8A1E,11619
@@ -46,7 +46,7 @@ aider/coders/architect_coder.py,sha256=b7KqtivnllPdyMfxbnEUd9G0C1ZFaiappV25Rz0Dk
46
46
  aider/coders/architect_prompts.py,sha256=ArlrlEJoGoBdgeV4FEAvr7AWLuvV-1EkM92S92L8mH4,1497
47
47
  aider/coders/ask_coder.py,sha256=Omk4Ih8-prefkMZ_jnRS3faoW5CQUakHOvZ-s7piM3U,210
48
48
  aider/coders/ask_prompts.py,sha256=Vny9XhVrUecJHWs6RFTcZVZLB4VIqkD2lxyyxXK1aGs,1510
49
- aider/coders/base_coder.py,sha256=y9zWr5xwyKTqueuEnBiz1F2q4UuEi4R6eCcH3qq_ggw,91564
49
+ aider/coders/base_coder.py,sha256=YiuwjUtsrMDOisRKldfUcedFT1QEaiKkExJLuclDCu0,91592
50
50
  aider/coders/base_prompts.py,sha256=iXmZXym-sW1UzjM7EDBY-vAEAb0ezg33iu0TkyTETh4,2496
51
51
  aider/coders/chat_chunks.py,sha256=8HPet6cmQdgWvaA_tGpinO4ASMst53uTcSEtNVTYDXE,1981
52
52
  aider/coders/context_coder.py,sha256=Y5LdIaYHywMB03lXsmHTYsDnyHIHJ6FNZLMWa9wjArs,1571
@@ -85,7 +85,7 @@ aider/locales/ko.json,sha256=jMShy0BuA1w1YT-apkh-6870zKD2fQpneD49dZEMHQA,2893
85
85
  aider/locales/__pycache__/__init__.cpython-311.pyc,sha256=9XZ-uoIpMOJg6vwAw449M_smtEDUrIA580EOgf_G4bE,190
86
86
  aider/locales/__pycache__/__init__.cpython-312.pyc,sha256=ZbytdwgreRx0MxiM4sKGoW6Rm2vOYx2Qq4CdnIMQiIA,178
87
87
  aider/mcpm/__init__.py,sha256=diNXCdj7vaX1ei1k50_ElHSyh6P2UNrejfzkWdERW4k,5864
88
- aider/mcpm/mcp_manager.py,sha256=8niNghtUvQntZ5syexkmirE8O6s4UZchgE215FPiHS0,20376
88
+ aider/mcpm/mcp_manager.py,sha256=HuNZYC0A6K6LrP5deJ-huvptiShQdH6iNZ0wvnH5oqg,20363
89
89
  aider/mcpm/mcp_prompts.py,sha256=pDVzKXgAkNI62M_mvoaprhlt5xfRpUzcIKNoY_V_vH8,2957
90
90
  aider/mcpm/mcp_server.py,sha256=PMIz9KN33CPbCoErzttMMdXn8zQBEeAd07cvtHCcgkA,1776
91
91
  aider/mcpm/mcp_tool.py,sha256=nhOMF1LJZEe3bOCBhpzU0PsVdDdPLBxoh_i7TJbKszQ,511
@@ -155,15 +155,15 @@ aider/queries/tree-sitter-languages/typescript-tags.scm,sha256=x8QfdjI1K65j65IQX
155
155
  aider/queries/tree-sitter-languages/zig-tags.scm,sha256=zTuwmI9hgNsnyPN6eoUxlSrbz6R-HPbH4JhqL90lEHI,127
156
156
  aider/resources/__init__.py,sha256=09npmZFptj6XR6ZeEuekpcK2stecKEjI59zR0Vz2JU8,142
157
157
  aider/resources/model-metadata.json,sha256=TdfABBwsTgQjwWLkAe61RKK3uknfKmFsAbUWy6atCP4,28342
158
- aider/resources/model-settings.yml,sha256=XWCWHEL1VYenk73D2pGBbWw7qFU7AOmDATAWclGAvt8,84725
158
+ aider/resources/model-settings.yml,sha256=jISknd2afGc06hGP6Cg9V45RJE2LIiRcFppECD9dhcY,89498
159
159
  aider/resources/__pycache__/__init__.cpython-311.pyc,sha256=Ij8TR7wOXGuBgYVQ6El3GyDBk8P7BcnsHvUQM0xge24,194
160
160
  aider/resources/__pycache__/__init__.cpython-312.pyc,sha256=ZpreHC1PfrwDGLWYhlNjQW6LDvUGqfrgZeRv12RDJZ4,180
161
161
  aider/resources/__pycache__/__init__.cpython-313.pyc,sha256=VCxP0aj2kPupm5Pgv2nOTb6DrMjJw7fhtTrqtJlYt1M,182
162
- devflux_aider_code-0.86.2.post35.dist-info/licenses/LICENSE.txt,sha256=rCsly24H-FdgMCPoQQ6eIlZB5e_SZrIulu7zneqBImM,11382
163
- devflux_aider_code-0.86.2.post35.dist-info/METADATA,sha256=Hl9YXmGDUW1D_ypo-zYzviJGTuJFAeLZ_MvNbTlWVxE,27398
164
- devflux_aider_code-0.86.2.post35.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
165
- devflux_aider_code-0.86.2.post35.dist-info/entry_points.txt,sha256=tuqrPzrE7ScRBiM0dKdqsvOfwHT6HTMarn05UbyKGc0,42
166
- devflux_aider_code-0.86.2.post35.dist-info/tmp4s6391z1,sha256=DlJUVXxSWQGpaMMmK5u6Ujgp4_ZhhNdGGnH73YynXZQ,14334
167
- devflux_aider_code-0.86.2.post35.dist-info/tmpi95nzi6t,sha256=42rMUFUrgxreO2mJP0ilXzKCAv8gRgVUx4PMdz7E7cE,14334
168
- devflux_aider_code-0.86.2.post35.dist-info/top_level.txt,sha256=uwOA6ycgSiRLrBsaRBcIeN_eBKAX78U01_KDEHR8mBk,6
169
- devflux_aider_code-0.86.2.post35.dist-info/RECORD,,
162
+ devflux_aider_code-0.86.2.post42.dist-info/licenses/LICENSE.txt,sha256=rCsly24H-FdgMCPoQQ6eIlZB5e_SZrIulu7zneqBImM,11382
163
+ devflux_aider_code-0.86.2.post42.dist-info/METADATA,sha256=DhCNQr2AwUiI-uxKthYUCVZm36ScBYXE2SZhxBrC8UM,27398
164
+ devflux_aider_code-0.86.2.post42.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
165
+ devflux_aider_code-0.86.2.post42.dist-info/entry_points.txt,sha256=tuqrPzrE7ScRBiM0dKdqsvOfwHT6HTMarn05UbyKGc0,42
166
+ devflux_aider_code-0.86.2.post42.dist-info/tmp4s6391z1,sha256=DlJUVXxSWQGpaMMmK5u6Ujgp4_ZhhNdGGnH73YynXZQ,14334
167
+ devflux_aider_code-0.86.2.post42.dist-info/tmpi95nzi6t,sha256=42rMUFUrgxreO2mJP0ilXzKCAv8gRgVUx4PMdz7E7cE,14334
168
+ devflux_aider_code-0.86.2.post42.dist-info/top_level.txt,sha256=uwOA6ycgSiRLrBsaRBcIeN_eBKAX78U01_KDEHR8mBk,6
169
+ devflux_aider_code-0.86.2.post42.dist-info/RECORD,,