devflux-aider-code 0.86.2.post35__py3-none-any.whl → 0.86.2.post36__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.post36'
22
+ __version_tuple__ = version_tuple = (0, 86, 2, 'post36')
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/commands.py CHANGED
@@ -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/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/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/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.post36
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
@@ -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
3
+ aider/_version.py,sha256=Gc9AY5-86dXj6u0PfejaGnLPLQzw9-SIVomp7cdPgwM,563
4
+ aider/analytics.py,sha256=30x-zmyql-ACb8Evja-6JnmMZ_HKZp2wTelBB_N9afY,7579
5
5
  aider/args.py,sha256=Tv-lqgoCB-Q9nadJjslVH8kg6ucBUarChnhLTFqwQxc,31260
6
6
  aider/args_formatter.py,sha256=CBRnzHyZk-fFCK0ekAzb6C4PPJOU-VTpWIIsJe3qUhk,6369
7
- aider/commands.py,sha256=ZP1a4ihwSr87Q6Un1HQQ3izubWLL0EPjuuxw5MzWnCU,81710
7
+ aider/commands.py,sha256=4eAxb7_Wkan7gALKidunWcQPk-A9zFq-9w-CKW2ST9E,81710
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,18 +13,18 @@ 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
20
  aider/io.py,sha256=aAKzPihT85qmSuTqj8zIDogay61miJfr9cZJw2d0n38,45662
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
25
  aider/models.py,sha256=1RvcfpdFCehdPFQqsIdeDYEqsQ8RNLf4Q5uHCBawBHo,47280
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
@@ -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
@@ -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
@@ -159,11 +159,11 @@ aider/resources/model-settings.yml,sha256=XWCWHEL1VYenk73D2pGBbWw7qFU7AOmDATAWcl
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.post36.dist-info/licenses/LICENSE.txt,sha256=rCsly24H-FdgMCPoQQ6eIlZB5e_SZrIulu7zneqBImM,11382
163
+ devflux_aider_code-0.86.2.post36.dist-info/METADATA,sha256=B2GPjJOtH8X-69AHuFdLxfo9aObYWE2M8IOOdmRejHQ,27398
164
+ devflux_aider_code-0.86.2.post36.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
165
+ devflux_aider_code-0.86.2.post36.dist-info/entry_points.txt,sha256=tuqrPzrE7ScRBiM0dKdqsvOfwHT6HTMarn05UbyKGc0,42
166
+ devflux_aider_code-0.86.2.post36.dist-info/tmp4s6391z1,sha256=DlJUVXxSWQGpaMMmK5u6Ujgp4_ZhhNdGGnH73YynXZQ,14334
167
+ devflux_aider_code-0.86.2.post36.dist-info/tmpi95nzi6t,sha256=42rMUFUrgxreO2mJP0ilXzKCAv8gRgVUx4PMdz7E7cE,14334
168
+ devflux_aider_code-0.86.2.post36.dist-info/top_level.txt,sha256=uwOA6ycgSiRLrBsaRBcIeN_eBKAX78U01_KDEHR8mBk,6
169
+ devflux_aider_code-0.86.2.post36.dist-info/RECORD,,