aider-ce 0.87.9.dev5__py3-none-any.whl → 0.87.11.dev0__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 +1 -1
- aider/_version.py +2 -2
- aider/models.py +1 -55
- aider/queries/tree-sitter-languages/README.md +1 -0
- aider/resources/model-metadata.json +15 -14
- aider/resources/model-settings.yml +21 -0
- aider/website/docs/config/adv-model-settings.md +1 -0
- aider/website/docs/faq.md +7 -7
- aider/website/docs/languages.md +6 -6
- aider/website/docs/llms/other.md +6 -0
- aider/website/docs/more/infinite-output.md +6 -0
- {aider_ce-0.87.9.dev5.dist-info → aider_ce-0.87.11.dev0.dist-info}/METADATA +2 -2
- {aider_ce-0.87.9.dev5.dist-info → aider_ce-0.87.11.dev0.dist-info}/RECORD +17 -17
- {aider_ce-0.87.9.dev5.dist-info → aider_ce-0.87.11.dev0.dist-info}/WHEEL +0 -0
- {aider_ce-0.87.9.dev5.dist-info → aider_ce-0.87.11.dev0.dist-info}/entry_points.txt +0 -0
- {aider_ce-0.87.9.dev5.dist-info → aider_ce-0.87.11.dev0.dist-info}/licenses/LICENSE.txt +0 -0
- {aider_ce-0.87.9.dev5.dist-info → aider_ce-0.87.11.dev0.dist-info}/top_level.txt +0 -0
aider/__init__.py
CHANGED
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.
|
|
32
|
-
__version_tuple__ = version_tuple = (0, 87,
|
|
31
|
+
__version__ = version = '0.87.11.dev0'
|
|
32
|
+
__version_tuple__ = version_tuple = (0, 87, 11, 'dev0')
|
|
33
33
|
|
|
34
34
|
__commit_id__ = commit_id = None
|
aider/models.py
CHANGED
|
@@ -8,7 +8,6 @@ import platform
|
|
|
8
8
|
import sys
|
|
9
9
|
import time
|
|
10
10
|
from dataclasses import dataclass, fields
|
|
11
|
-
from datetime import datetime
|
|
12
11
|
from pathlib import Path
|
|
13
12
|
from typing import Optional, Union
|
|
14
13
|
|
|
@@ -903,57 +902,6 @@ class Model(ModelSettings):
|
|
|
903
902
|
def is_ollama(self):
|
|
904
903
|
return self.name.startswith("ollama/") or self.name.startswith("ollama_chat/")
|
|
905
904
|
|
|
906
|
-
def github_copilot_token_to_open_ai_key(self, extra_headers):
|
|
907
|
-
# check to see if there's an openai api key
|
|
908
|
-
# If so, check to see if it's expire
|
|
909
|
-
openai_api_key = "OPENAI_API_KEY"
|
|
910
|
-
|
|
911
|
-
if openai_api_key not in os.environ or (
|
|
912
|
-
int(dict(x.split("=") for x in os.environ[openai_api_key].split(";"))["exp"])
|
|
913
|
-
< int(datetime.now().timestamp())
|
|
914
|
-
):
|
|
915
|
-
import requests
|
|
916
|
-
|
|
917
|
-
class GitHubCopilotTokenError(Exception):
|
|
918
|
-
"""Custom exception for GitHub Copilot token-related errors."""
|
|
919
|
-
|
|
920
|
-
pass
|
|
921
|
-
|
|
922
|
-
# Validate GitHub Copilot token exists
|
|
923
|
-
if "GITHUB_COPILOT_TOKEN" not in os.environ:
|
|
924
|
-
raise KeyError("GITHUB_COPILOT_TOKEN environment variable not found")
|
|
925
|
-
|
|
926
|
-
github_token = os.environ["GITHUB_COPILOT_TOKEN"]
|
|
927
|
-
if not github_token.strip():
|
|
928
|
-
raise KeyError("GITHUB_COPILOT_TOKEN environment variable is empty")
|
|
929
|
-
|
|
930
|
-
headers = {
|
|
931
|
-
"Authorization": f"Bearer {os.environ['GITHUB_COPILOT_TOKEN']}",
|
|
932
|
-
"Editor-Version": extra_headers["Editor-Version"],
|
|
933
|
-
"Copilot-Integration-Id": extra_headers["Copilot-Integration-Id"],
|
|
934
|
-
"Content-Type": "application/json",
|
|
935
|
-
}
|
|
936
|
-
|
|
937
|
-
url = "https://api.github.com/copilot_internal/v2/token"
|
|
938
|
-
res = requests.get(url, headers=headers)
|
|
939
|
-
if res.status_code != 200:
|
|
940
|
-
safe_headers = {k: v for k, v in headers.items() if k != "Authorization"}
|
|
941
|
-
token_preview = github_token[:5] + "..." if len(github_token) >= 5 else github_token
|
|
942
|
-
safe_headers["Authorization"] = f"Bearer {token_preview}"
|
|
943
|
-
raise GitHubCopilotTokenError(
|
|
944
|
-
f"GitHub Copilot API request failed (Status: {res.status_code})\n"
|
|
945
|
-
f"URL: {url}\n"
|
|
946
|
-
f"Headers: {json.dumps(safe_headers, indent=2)}\n"
|
|
947
|
-
f"JSON: {res.text}"
|
|
948
|
-
)
|
|
949
|
-
|
|
950
|
-
response_data = res.json()
|
|
951
|
-
token = response_data.get("token")
|
|
952
|
-
if not token:
|
|
953
|
-
raise GitHubCopilotTokenError("Response missing 'token' field")
|
|
954
|
-
|
|
955
|
-
os.environ[openai_api_key] = token
|
|
956
|
-
|
|
957
905
|
def send_completion(
|
|
958
906
|
self, messages, functions, stream, temperature=None, tools=None, max_tokens=None
|
|
959
907
|
):
|
|
@@ -1022,15 +970,13 @@ class Model(ModelSettings):
|
|
|
1022
970
|
kwargs["messages"] = messages
|
|
1023
971
|
|
|
1024
972
|
# Are we using github copilot?
|
|
1025
|
-
if "GITHUB_COPILOT_TOKEN" in os.environ:
|
|
973
|
+
if "GITHUB_COPILOT_TOKEN" in os.environ or self.name.startswith("github_copilot/"):
|
|
1026
974
|
if "extra_headers" not in kwargs:
|
|
1027
975
|
kwargs["extra_headers"] = {
|
|
1028
976
|
"Editor-Version": f"aider/{__version__}",
|
|
1029
977
|
"Copilot-Integration-Id": "vscode-chat",
|
|
1030
978
|
}
|
|
1031
979
|
|
|
1032
|
-
self.github_copilot_token_to_open_ai_key(kwargs["extra_headers"])
|
|
1033
|
-
|
|
1034
980
|
try:
|
|
1035
981
|
res = litellm.completion(**kwargs)
|
|
1036
982
|
except Exception as err:
|
|
@@ -21,3 +21,4 @@ tree-sitter language implementations:
|
|
|
21
21
|
* [https://github.com/tree-sitter/tree-sitter-ruby](https://github.com/tree-sitter/tree-sitter-ruby) — licensed under the MIT License.
|
|
22
22
|
* [https://github.com/tree-sitter/tree-sitter-rust](https://github.com/tree-sitter/tree-sitter-rust) — licensed under the MIT License.
|
|
23
23
|
* [https://github.com/tree-sitter/tree-sitter-typescript](https://github.com/tree-sitter/tree-sitter-typescript) — licensed under the MIT License.
|
|
24
|
+
* [https://github.com/starelmanma/tree-sitter-fortran](https://github.com/starelmanma/tree-sitter-fortran) — licensed under the MIT License.
|
|
@@ -1,27 +1,28 @@
|
|
|
1
1
|
{
|
|
2
|
-
"deepseek/deepseek-
|
|
3
|
-
"max_tokens":
|
|
2
|
+
"deepseek/deepseek-reasoner": {
|
|
3
|
+
"max_tokens": 128000,
|
|
4
4
|
"max_input_tokens": 128000,
|
|
5
|
-
"max_output_tokens":
|
|
6
|
-
"input_cost_per_token": 0.
|
|
7
|
-
"input_cost_per_token_cache_hit": 0.
|
|
8
|
-
"cache_read_input_token_cost": 0.
|
|
5
|
+
"max_output_tokens": 64000,
|
|
6
|
+
"input_cost_per_token": 0.00000028,
|
|
7
|
+
"input_cost_per_token_cache_hit": 0.000000028,
|
|
8
|
+
"cache_read_input_token_cost": 0.000000028,
|
|
9
9
|
"cache_creation_input_token_cost": 0.0,
|
|
10
|
-
"output_cost_per_token": 0.
|
|
10
|
+
"output_cost_per_token": 0.00000042,
|
|
11
11
|
"litellm_provider": "deepseek",
|
|
12
12
|
"mode": "chat",
|
|
13
13
|
"supports_assistant_prefill": true,
|
|
14
|
+
"supports_tool_choice": false,
|
|
14
15
|
"supports_prompt_caching": true
|
|
15
16
|
},
|
|
16
|
-
"deepseek-
|
|
17
|
-
"max_tokens":
|
|
17
|
+
"deepseek/deepseek-chat": {
|
|
18
|
+
"max_tokens": 128000,
|
|
18
19
|
"max_input_tokens": 128000,
|
|
19
|
-
"max_output_tokens":
|
|
20
|
-
"input_cost_per_token": 0.
|
|
21
|
-
"input_cost_per_token_cache_hit": 0.
|
|
22
|
-
"cache_read_input_token_cost": 0.
|
|
20
|
+
"max_output_tokens": 8000,
|
|
21
|
+
"input_cost_per_token": 0.00000028,
|
|
22
|
+
"input_cost_per_token_cache_hit": 0.000000028,
|
|
23
|
+
"cache_read_input_token_cost": 0.000000028,
|
|
23
24
|
"cache_creation_input_token_cost": 0.0,
|
|
24
|
-
"output_cost_per_token": 0.
|
|
25
|
+
"output_cost_per_token": 0.00000042,
|
|
25
26
|
"litellm_provider": "deepseek",
|
|
26
27
|
"mode": "chat",
|
|
27
28
|
"supports_assistant_prefill": true,
|
|
@@ -1546,6 +1546,20 @@
|
|
|
1546
1546
|
editor_edit_format: editor-diff
|
|
1547
1547
|
accepts_settings: ["thinking_tokens"]
|
|
1548
1548
|
|
|
1549
|
+
- name: bedrock/global.anthropic.claude-sonnet-4-5-20250929-v1:0
|
|
1550
|
+
edit_format: diff
|
|
1551
|
+
weak_model_name: bedrock/anthropic.claude-3-5-haiku-20241022-v1:0
|
|
1552
|
+
use_repo_map: true
|
|
1553
|
+
examples_as_sys_msg: false
|
|
1554
|
+
extra_params:
|
|
1555
|
+
extra_headers:
|
|
1556
|
+
anthropic-beta: prompt-caching-2024-07-31,pdfs-2024-09-25,output-128k-2025-02-19
|
|
1557
|
+
max_tokens: 64000
|
|
1558
|
+
cache_control: true
|
|
1559
|
+
editor_model_name: bedrock/global.anthropic.claude-sonnet-4-5-20250929-v1:0
|
|
1560
|
+
editor_edit_format: editor-diff
|
|
1561
|
+
accepts_settings: ["thinking_tokens"]
|
|
1562
|
+
|
|
1549
1563
|
- name: bedrock_converse/anthropic.claude-sonnet-4-20250514-v1:0
|
|
1550
1564
|
edit_format: diff
|
|
1551
1565
|
weak_model_name: bedrock_converse/anthropic.claude-3-5-haiku-20241022-v1:0
|
|
@@ -1877,6 +1891,13 @@
|
|
|
1877
1891
|
use_temperature: false
|
|
1878
1892
|
accepts_settings: ["reasoning_effort"]
|
|
1879
1893
|
|
|
1894
|
+
- name: gpt-5-codex
|
|
1895
|
+
edit_format: diff
|
|
1896
|
+
weak_model_name: gpt-5-nano
|
|
1897
|
+
use_repo_map: true
|
|
1898
|
+
use_temperature: false
|
|
1899
|
+
accepts_settings: ["reasoning_effort"]
|
|
1900
|
+
|
|
1880
1901
|
- name: azure/gpt-5
|
|
1881
1902
|
edit_format: diff
|
|
1882
1903
|
weak_model_name: azure/gpt-5-nano
|
aider/website/docs/faq.md
CHANGED
|
@@ -264,13 +264,13 @@ tr:hover { background-color: #f5f5f5; }
|
|
|
264
264
|
</style>
|
|
265
265
|
<table>
|
|
266
266
|
<tr><th>Model Name</th><th class='right'>Total Tokens</th><th class='right'>Percent</th></tr>
|
|
267
|
-
<tr><td>gemini/gemini-2.5-pro</td><td class='right'>
|
|
268
|
-
<tr><td>gpt-5</td><td class='right'>211,072</td><td class='right'>
|
|
269
|
-
<tr><td>None</td><td class='right'>168,988</td><td class='right'>
|
|
270
|
-
<tr><td>o3-pro</td><td class='right'>36,620</td><td class='right'>5.
|
|
271
|
-
<tr><td>gemini/gemini-2.5-flash-lite</td><td class='right'>15,470</td><td class='right'>2.
|
|
272
|
-
<tr><td>gemini/gemini-2.5-flash-lite-preview-06-17</td><td class='right'>11,371</td><td class='right'>1.
|
|
273
|
-
<tr><td>o3</td><td class='right'>3,915</td><td class='right'>0.
|
|
267
|
+
<tr><td>gemini/gemini-2.5-pro</td><td class='right'>281,824</td><td class='right'>38.5%</td></tr>
|
|
268
|
+
<tr><td>gpt-5</td><td class='right'>211,072</td><td class='right'>28.9%</td></tr>
|
|
269
|
+
<tr><td>None</td><td class='right'>168,988</td><td class='right'>23.1%</td></tr>
|
|
270
|
+
<tr><td>o3-pro</td><td class='right'>36,620</td><td class='right'>5.0%</td></tr>
|
|
271
|
+
<tr><td>gemini/gemini-2.5-flash-lite</td><td class='right'>15,470</td><td class='right'>2.1%</td></tr>
|
|
272
|
+
<tr><td>gemini/gemini-2.5-flash-lite-preview-06-17</td><td class='right'>11,371</td><td class='right'>1.6%</td></tr>
|
|
273
|
+
<tr><td>o3</td><td class='right'>3,915</td><td class='right'>0.5%</td></tr>
|
|
274
274
|
<tr><td>openai/REDACTED</td><td class='right'>1,970</td><td class='right'>0.3%</td></tr>
|
|
275
275
|
</table>
|
|
276
276
|
|
aider/website/docs/languages.md
CHANGED
|
@@ -110,11 +110,11 @@ cog.out(get_supported_languages_md())
|
|
|
110
110
|
| fennel | .fnl | | ✓ |
|
|
111
111
|
| firrtl | .fir | | ✓ |
|
|
112
112
|
| fish | .fish | | ✓ |
|
|
113
|
-
| fortran | .f |
|
|
114
|
-
| fortran | .f03 |
|
|
115
|
-
| fortran | .f08 |
|
|
116
|
-
| fortran | .f90 |
|
|
117
|
-
| fortran | .f95 |
|
|
113
|
+
| fortran | .f | ✓ | ✓ |
|
|
114
|
+
| fortran | .f03 | ✓ | ✓ |
|
|
115
|
+
| fortran | .f08 | ✓ | ✓ |
|
|
116
|
+
| fortran | .f90 | ✓ | ✓ |
|
|
117
|
+
| fortran | .f95 | ✓ | ✓ |
|
|
118
118
|
| func | .fc | | ✓ |
|
|
119
119
|
| gdscript | .gd | | ✓ |
|
|
120
120
|
| gitattributes | .gitattributes | | ✓ |
|
|
@@ -153,7 +153,7 @@ cog.out(get_supported_languages_md())
|
|
|
153
153
|
| json | .json | | ✓ |
|
|
154
154
|
| jsonnet | .jsonnet | | ✓ |
|
|
155
155
|
| jsonnet | .libsonnet | | ✓ |
|
|
156
|
-
| julia | .jl |
|
|
156
|
+
| julia | .jl | ✓ | ✓ |
|
|
157
157
|
| kconfig | Kconfig | | ✓ |
|
|
158
158
|
| kdl | .kdl | | ✓ |
|
|
159
159
|
| kotlin | .kt | ✓ | ✓ |
|
aider/website/docs/llms/other.md
CHANGED
|
@@ -59,6 +59,7 @@ cog.out(''.join(lines))
|
|
|
59
59
|
- ALEPHALPHA_API_KEY
|
|
60
60
|
- ANTHROPIC_API_KEY
|
|
61
61
|
- ANYSCALE_API_KEY
|
|
62
|
+
- ARK_API_KEY
|
|
62
63
|
- AZURE_AI_API_KEY
|
|
63
64
|
- AZURE_API_KEY
|
|
64
65
|
- AZURE_OPENAI_API_KEY
|
|
@@ -70,6 +71,7 @@ cog.out(''.join(lines))
|
|
|
70
71
|
- CO_API_KEY
|
|
71
72
|
- CODESTRAL_API_KEY
|
|
72
73
|
- COHERE_API_KEY
|
|
74
|
+
- COMPACTIFAI_API_KEY
|
|
73
75
|
- DASHSCOPE_API_KEY
|
|
74
76
|
- DATABRICKS_API_KEY
|
|
75
77
|
- DEEPINFRA_API_KEY
|
|
@@ -95,15 +97,19 @@ cog.out(''.join(lines))
|
|
|
95
97
|
- OPENAI_LIKE_API_KEY
|
|
96
98
|
- OPENROUTER_API_KEY
|
|
97
99
|
- OR_API_KEY
|
|
100
|
+
- OVHCLOUD_API_KEY
|
|
98
101
|
- PALM_API_KEY
|
|
99
102
|
- PERPLEXITYAI_API_KEY
|
|
100
103
|
- PREDIBASE_API_KEY
|
|
101
104
|
- PROVIDER_API_KEY
|
|
102
105
|
- REPLICATE_API_KEY
|
|
106
|
+
- SAMBANOVA_API_KEY
|
|
103
107
|
- TOGETHERAI_API_KEY
|
|
104
108
|
- USER_API_KEY
|
|
109
|
+
- VERCEL_AI_GATEWAY_API_KEY
|
|
105
110
|
- VOLCENGINE_API_KEY
|
|
106
111
|
- VOYAGE_API_KEY
|
|
112
|
+
- WANDB_API_KEY
|
|
107
113
|
- WATSONX_API_KEY
|
|
108
114
|
- WX_API_KEY
|
|
109
115
|
- XAI_API_KEY
|
|
@@ -64,6 +64,7 @@ cog.out(model_list)
|
|
|
64
64
|
- apac.anthropic.claude-3-5-sonnet-20241022-v2:0
|
|
65
65
|
- apac.anthropic.claude-sonnet-4-20250514-v1:0
|
|
66
66
|
- azure_ai/mistral-medium-2505
|
|
67
|
+
- bedrock/us.anthropic.claude-3-5-haiku-20241022-v1:0
|
|
67
68
|
- claude-3-5-haiku-20241022
|
|
68
69
|
- claude-3-5-haiku-latest
|
|
69
70
|
- claude-3-5-sonnet-20240620
|
|
@@ -126,7 +127,10 @@ cog.out(model_list)
|
|
|
126
127
|
- mistral/pixtral-large-latest
|
|
127
128
|
- openrouter/anthropic/claude-3.5-sonnet
|
|
128
129
|
- openrouter/anthropic/claude-3.7-sonnet
|
|
130
|
+
- openrouter/anthropic/claude-opus-4
|
|
131
|
+
- openrouter/anthropic/claude-opus-4.1
|
|
129
132
|
- openrouter/anthropic/claude-sonnet-4
|
|
133
|
+
- openrouter/deepseek/deepseek-chat-v3.1
|
|
130
134
|
- openrouter/deepseek/deepseek-r1
|
|
131
135
|
- openrouter/deepseek/deepseek-r1-0528
|
|
132
136
|
- us.anthropic.claude-3-5-haiku-20241022-v1:0
|
|
@@ -154,6 +158,8 @@ cog.out(model_list)
|
|
|
154
158
|
- vertex_ai/claude-opus-4@20250514
|
|
155
159
|
- vertex_ai/claude-sonnet-4
|
|
156
160
|
- vertex_ai/claude-sonnet-4@20250514
|
|
161
|
+
- vertex_ai/deepseek-ai/deepseek-r1-0528-maas
|
|
162
|
+
- vertex_ai/deepseek-ai/deepseek-v3.1-maas
|
|
157
163
|
<!--[[[end]]]-->
|
|
158
164
|
|
|
159
165
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: aider-ce
|
|
3
|
-
Version: 0.87.
|
|
3
|
+
Version: 0.87.11.dev0
|
|
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
|
|
@@ -161,7 +161,7 @@ cog.out(text)
|
|
|
161
161
|
<a href="https://github.com/Aider-AI/aider/stargazers"><img alt="GitHub Stars" title="Total number of GitHub stars the Aider project has received"
|
|
162
162
|
src="https://img.shields.io/github/stars/Aider-AI/aider?style=flat-square&logo=github&color=f1c40f&labelColor=555555"/></a>
|
|
163
163
|
<a href="https://pypi.org/project/aider-chat/"><img alt="PyPI Downloads" title="Total number of installations via pip from PyPI"
|
|
164
|
-
src="https://img.shields.io/badge/📦%20Installs-3.
|
|
164
|
+
src="https://img.shields.io/badge/📦%20Installs-3.4M-2ecc71?style=flat-square&labelColor=555555"/></a>
|
|
165
165
|
<img alt="Tokens per week" title="Number of tokens processed weekly by Aider users"
|
|
166
166
|
src="https://img.shields.io/badge/📈%20Tokens%2Fweek-15B-3498db?style=flat-square&labelColor=555555"/>
|
|
167
167
|
<a href="https://openrouter.ai/#options-menu"><img alt="OpenRouter Ranking" title="Aider's ranking among applications on the OpenRouter platform"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
aider/__init__.py,sha256=
|
|
1
|
+
aider/__init__.py,sha256=2c2lIaVnFyCMrCFC_P4eUQrvHqN-Q5fy6euNDJ41kjA,497
|
|
2
2
|
aider/__main__.py,sha256=Vdhw8YA1K3wPMlbJQYL5WqvRzAKVeZ16mZQFO9VRmCo,62
|
|
3
|
-
aider/_version.py,sha256=
|
|
3
|
+
aider/_version.py,sha256=Tm_2aSIT6-9mTVrkXHKyB-YIrPxTEHeQQV0Ac63NGhc,721
|
|
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,7 +22,7 @@ aider/linter.py,sha256=t5jwWZ1dvIzRtig1kTSjzl6u1LRfw0e19qwNIen2jAg,7998
|
|
|
22
22
|
aider/llm.py,sha256=fGCemP1X9MBwrDfsTKGJ_1sx-yKz3DyoOvxZYOkvGak,1103
|
|
23
23
|
aider/main.py,sha256=LyHwjkxz3_7tH_jerneLpDVzMY7svkkLW2NGXmfEzY8,45034
|
|
24
24
|
aider/mdstream.py,sha256=fS9iQUQmIJPEMo7o1psPGE2yYj31MI3m3msdN-jEzUw,7594
|
|
25
|
-
aider/models.py,sha256=
|
|
25
|
+
aider/models.py,sha256=mZnDnk6HLNyZULd1IZ93uTK_IUyQToYvzj9U8InD7kM,44819
|
|
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
|
|
@@ -115,7 +115,7 @@ aider/queries/tree-sitter-language-pack/rust-tags.scm,sha256=3rz1XqKaOPKPWRUNPTW
|
|
|
115
115
|
aider/queries/tree-sitter-language-pack/solidity-tags.scm,sha256=3uCJsbhwp-dVTiSsrGLt-PQ0uAnjmqUeHFPSEXd2JvM,1395
|
|
116
116
|
aider/queries/tree-sitter-language-pack/swift-tags.scm,sha256=ZvJcfjmUDZ9w14AXKSPPxf4gvpdE_qzBxDjfCczYrIQ,1439
|
|
117
117
|
aider/queries/tree-sitter-language-pack/udev-tags.scm,sha256=avj3u4prIR7o8hymHezOsqrOqjPSLGYo7C_lOL4Dxlg,417
|
|
118
|
-
aider/queries/tree-sitter-languages/README.md,sha256=
|
|
118
|
+
aider/queries/tree-sitter-languages/README.md,sha256=CvHuhoq0bYOuIfrOQtB-CiE6qhPhEgHMS_jx76CcQZo,2610
|
|
119
119
|
aider/queries/tree-sitter-languages/c-tags.scm,sha256=EIz45o5hBh8yEuck5ZR_4IpcGyWSeNrzxFmtkKZGt2k,461
|
|
120
120
|
aider/queries/tree-sitter-languages/c_sharp-tags.scm,sha256=wKyFtOFIk-kqIFB2yJBbu1VGRUhdkAnDpxo8sXubkjw,1025
|
|
121
121
|
aider/queries/tree-sitter-languages/cpp-tags.scm,sha256=cAFwtQk3ZKsvCVWrp1fmhSwOP8WGTCEDRR5CQuzLlY4,803
|
|
@@ -141,8 +141,8 @@ aider/queries/tree-sitter-languages/rust-tags.scm,sha256=9ljM1nzhfPs_ZTRw7cr2P9T
|
|
|
141
141
|
aider/queries/tree-sitter-languages/scala-tags.scm,sha256=UxQjz80JIrrJ7Pm56uUnQyThfmQNvwk7aQzPNypB-Ao,1761
|
|
142
142
|
aider/queries/tree-sitter-languages/typescript-tags.scm,sha256=OMdCeedPiA24ky82DpgTMKXK_l2ySTuF2zrQ2fJAi9E,1253
|
|
143
143
|
aider/resources/__init__.py,sha256=09npmZFptj6XR6ZeEuekpcK2stecKEjI59zR0Vz2JU8,142
|
|
144
|
-
aider/resources/model-metadata.json,sha256=
|
|
145
|
-
aider/resources/model-settings.yml,sha256=
|
|
144
|
+
aider/resources/model-metadata.json,sha256=z4fOl3fiRWQtVIULtjIs9FfhAExN88ybDeJdWb0_4OE,28703
|
|
145
|
+
aider/resources/model-settings.yml,sha256=bqpgKJRNZUcSlXyuZgTKFybf61kW5NRuoIVyOMZztwc,58325
|
|
146
146
|
aider/tools/__init__.py,sha256=LVV7Cp4C74O5BCKWzES4L1I2K0RSf25WnKb683mOHi8,1198
|
|
147
147
|
aider/tools/command.py,sha256=TxUByCebyNVpob3Or9pLmSuR9Q0XLvsE4wb9aH1-sk4,2604
|
|
148
148
|
aider/tools/command_interactive.py,sha256=dgq_XagpIQ9VV79v0lMS87lWcoOwy1bFUT0-EudBz1w,2135
|
|
@@ -185,18 +185,18 @@ aider/website/_includes/replit-pipx.md,sha256=9K06E2U7AT4fRkG00CMvoOI1DoNPRoKfbp
|
|
|
185
185
|
aider/website/_includes/works-best.md,sha256=bZU0inFkhHNRZcRz6DQVbuurq2-kRh-ZYSzAXjF3jYc,191
|
|
186
186
|
aider/website/_sass/custom/custom.scss,sha256=G_CNr2QNFpiycf_74pr6Qz8cxWtwTd0xspkToXw3-7A,1957
|
|
187
187
|
aider/website/docs/config.md,sha256=GAkiU8AfYWCnRdhw3KGOieC30pU_TZQ3a-Lmzae3IT8,749
|
|
188
|
-
aider/website/docs/faq.md,sha256
|
|
188
|
+
aider/website/docs/faq.md,sha256=-qirMmSst8N5HiF51rxmxvZocxIsBto6EDCmpV9PEuM,13835
|
|
189
189
|
aider/website/docs/git.md,sha256=FGnjUbh5eAhStVCzsdcC0my6NuKnc4s2E-JXdEG7z4w,3758
|
|
190
190
|
aider/website/docs/index.md,sha256=J0qH0e9Q98HtnZos0irBb8OlZTXPty6eTF8JMPWMpGM,1819
|
|
191
191
|
aider/website/docs/install.md,sha256=6C8JHzDDpuYlehgu6UyVGFw-rGxnu8Ic7_ovhSSCdzg,2882
|
|
192
|
-
aider/website/docs/languages.md,sha256=
|
|
192
|
+
aider/website/docs/languages.md,sha256=T0GEf4Q7V-DNYkUysHTqMxtGjKucTgZpJf5ScmpUKiI,16606
|
|
193
193
|
aider/website/docs/llms.md,sha256=fq0VL5uzXFBCbXRbltIcuH-AO5gB36Cw3k26nX5hcIA,1562
|
|
194
194
|
aider/website/docs/more-info.md,sha256=rNeoFIwC7bYcW78YaUFMnoWA8nowuNTGPo3RInPnU48,124
|
|
195
195
|
aider/website/docs/repomap.md,sha256=rEHIhD1mwEu1lRFVAVEY73AvEHQXvmLygMuJVbrx7sg,3900
|
|
196
196
|
aider/website/docs/scripting.md,sha256=Fj0J3BLUTUAoUFBMpk1Kayj1paU1c_fXyg-5ZlVFKIU,3123
|
|
197
197
|
aider/website/docs/troubleshooting.md,sha256=UYFgCP8zhJxGJqo4PI0-J-EB-zZ9HtRsIKfCP-qa9lg,218
|
|
198
198
|
aider/website/docs/usage.md,sha256=LMQpEDZ7rUYgmXN2HYbKg2W2h5sTASlkj89MRHw99rY,3592
|
|
199
|
-
aider/website/docs/config/adv-model-settings.md,sha256=
|
|
199
|
+
aider/website/docs/config/adv-model-settings.md,sha256=SGQ-64IUQv7w5uG6sSfrvXRmbik6tUyS4KvwI7Z3uhM,60372
|
|
200
200
|
aider/website/docs/config/aider_conf.md,sha256=n-FMGab3dKUMnBg0KVEWtvWJEUh5M4z9pvt0FssPw58,15591
|
|
201
201
|
aider/website/docs/config/api-keys.md,sha256=uOUd9oERvYN6VzKtcsjun_7tth15AYEfRMJXT5Ne0KU,2046
|
|
202
202
|
aider/website/docs/config/dotenv.md,sha256=za-5qU6jq8_0dETghtF4Ja8sa1vc13JPzk8L_VfrcvU,14845
|
|
@@ -224,13 +224,13 @@ aider/website/docs/llms/ollama.md,sha256=IncLyI8ertyAxawhv7JmT55zkRBrMdg0zPEkR4u
|
|
|
224
224
|
aider/website/docs/llms/openai-compat.md,sha256=7QxzrAaYH14X3S3LmAdfFV1Pa7YFv7ei0M6hsZ-BQq4,821
|
|
225
225
|
aider/website/docs/llms/openai.md,sha256=fhWAyM49rVmkoXqUohwg76DkVuIZydEM6r4XUSlb3qs,1519
|
|
226
226
|
aider/website/docs/llms/openrouter.md,sha256=j6Cfr5s8T327pecuQ14LeQ3YCe7QpqikpBqh7KDhePU,2248
|
|
227
|
-
aider/website/docs/llms/other.md,sha256=
|
|
227
|
+
aider/website/docs/llms/other.md,sha256=MHretHFVyJj5HpmKleu81OlwEap4M_LsbCAs6wniC7k,2718
|
|
228
228
|
aider/website/docs/llms/vertex.md,sha256=IocjqTEe0setDZNgpPzKTkyoJfN0y04bBVgSLSBC9Jg,1493
|
|
229
229
|
aider/website/docs/llms/warnings.md,sha256=FVhgQ8Taa3f-hyu-FVNuW2p2hWii4hRNplW3BUDYHV0,103
|
|
230
230
|
aider/website/docs/llms/xai.md,sha256=0VJ02dZQiKgVPFIcbR8fAB9W_DPKvxYTwF2R04mslrc,961
|
|
231
231
|
aider/website/docs/more/analytics.md,sha256=BzpBusCZ6i8J4p3U05_THfMasqL6UHMCP4SGzVR8Jpg,3933
|
|
232
232
|
aider/website/docs/more/edit-formats.md,sha256=DTxQgd7wVHh5gTQ59H5x3Jm0W7UmQRvyPpz2FWcGV_o,3067
|
|
233
|
-
aider/website/docs/more/infinite-output.md,sha256=
|
|
233
|
+
aider/website/docs/more/infinite-output.md,sha256=LmpRMsUSFmxZjpE14BOyBg_B64SS6Fg_z9jJRV3GVGg,5492
|
|
234
234
|
aider/website/docs/recordings/auto-accept-architect.md,sha256=TZf-RbX_bfPIPlZ5HRO9IDJpBfYLTsQ2Xm6hMrU2OjY,1131
|
|
235
235
|
aider/website/docs/recordings/dont-drop-original-read-files.md,sha256=5OKuv_nB2euf-Mxq7JX_oCSRxU_od0X1NKtRUMHcy5M,1196
|
|
236
236
|
aider/website/docs/recordings/index.md,sha256=Ie3lQAGA0KyGxld7CqxpWrjtfpHYYquVA-N4QpbNEUk,639
|
|
@@ -258,9 +258,9 @@ aider/website/docs/usage/tutorials.md,sha256=ZKBztbUtucHOiv9h8gvWiWTP6MTSsFyz4mA
|
|
|
258
258
|
aider/website/docs/usage/voice.md,sha256=BtX7pHRgHRWUmrNbS4JssC-SO8RrJ_OetBCtIYpO0pU,3452
|
|
259
259
|
aider/website/docs/usage/watch.md,sha256=OVF14lGtv1vhSXRE8PpxQ3YW-uXSifarUbmLBjmLRyA,7940
|
|
260
260
|
aider/website/share/index.md,sha256=P51aDw9AT8AVbsU7v6g1tWuMjly7y_plM_ZI1ScaT8Y,3172
|
|
261
|
-
aider_ce-0.87.
|
|
262
|
-
aider_ce-0.87.
|
|
263
|
-
aider_ce-0.87.
|
|
264
|
-
aider_ce-0.87.
|
|
265
|
-
aider_ce-0.87.
|
|
266
|
-
aider_ce-0.87.
|
|
261
|
+
aider_ce-0.87.11.dev0.dist-info/licenses/LICENSE.txt,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
|
262
|
+
aider_ce-0.87.11.dev0.dist-info/METADATA,sha256=40kjI2l1lUPRzx7OUFTW9lN32ie3BbZxBA71AIjdL4s,18429
|
|
263
|
+
aider_ce-0.87.11.dev0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
264
|
+
aider_ce-0.87.11.dev0.dist-info/entry_points.txt,sha256=OxI0JxfyJrc24nTmsdvpaWUx8Flz2huOij_-ifp-48w,69
|
|
265
|
+
aider_ce-0.87.11.dev0.dist-info/top_level.txt,sha256=uwOA6ycgSiRLrBsaRBcIeN_eBKAX78U01_KDEHR8mBk,6
|
|
266
|
+
aider_ce-0.87.11.dev0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|