auto-coder 0.1.268__py3-none-any.whl → 0.1.270__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 auto-coder might be problematic. Click here for more details.
- {auto_coder-0.1.268.dist-info → auto_coder-0.1.270.dist-info}/METADATA +2 -2
- {auto_coder-0.1.268.dist-info → auto_coder-0.1.270.dist-info}/RECORD +23 -20
- autocoder/agent/auto_learn_from_commit.py +209 -0
- autocoder/auto_coder.py +4 -0
- autocoder/auto_coder_runner.py +2647 -0
- autocoder/chat_auto_coder.py +54 -2630
- autocoder/commands/auto_command.py +23 -33
- autocoder/common/__init__.py +6 -2
- autocoder/common/auto_coder_lang.py +21 -4
- autocoder/common/auto_configure.py +41 -30
- autocoder/common/code_modification_ranker.py +55 -11
- autocoder/common/command_templates.py +2 -3
- autocoder/common/context_pruner.py +214 -14
- autocoder/common/conversation_pruner.py +11 -10
- autocoder/index/entry.py +44 -22
- autocoder/index/index.py +1 -1
- autocoder/utils/auto_project_type.py +120 -0
- autocoder/utils/model_provider_selector.py +23 -23
- autocoder/version.py +1 -1
- {auto_coder-0.1.268.dist-info → auto_coder-0.1.270.dist-info}/LICENSE +0 -0
- {auto_coder-0.1.268.dist-info → auto_coder-0.1.270.dist-info}/WHEEL +0 -0
- {auto_coder-0.1.268.dist-info → auto_coder-0.1.270.dist-info}/entry_points.txt +0 -0
- {auto_coder-0.1.268.dist-info → auto_coder-0.1.270.dist-info}/top_level.txt +0 -0
|
@@ -25,8 +25,8 @@ PROVIDER_INFO_LIST = [
|
|
|
25
25
|
ProviderInfo(
|
|
26
26
|
name="volcano",
|
|
27
27
|
endpoint="https://ark.cn-beijing.volces.com/api/v3",
|
|
28
|
-
r1_model="",
|
|
29
|
-
v3_model="",
|
|
28
|
+
r1_model="deepseek-r1-250120",
|
|
29
|
+
v3_model="deepseek-v3-241226",
|
|
30
30
|
api_key="",
|
|
31
31
|
r1_input_price=2.0,
|
|
32
32
|
r1_output_price=8.0,
|
|
@@ -162,32 +162,32 @@ class ModelProviderSelector:
|
|
|
162
162
|
provider_info = provider
|
|
163
163
|
break
|
|
164
164
|
|
|
165
|
-
if result == "volcano":
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
165
|
+
# if result == "volcano":
|
|
166
|
+
# # Get R1 endpoint
|
|
167
|
+
# r1_endpoint = input_dialog(
|
|
168
|
+
# title=self.printer.get_message_from_key("model_provider_api_key_title"),
|
|
169
|
+
# text=self.printer.get_message_from_key("model_provider_volcano_r1_text"),
|
|
170
|
+
# validator=VolcanoEndpointValidator(),
|
|
171
|
+
# style=dialog_style
|
|
172
|
+
# ).run()
|
|
173
173
|
|
|
174
|
-
|
|
175
|
-
|
|
174
|
+
# if r1_endpoint is None:
|
|
175
|
+
# return None
|
|
176
176
|
|
|
177
|
-
|
|
177
|
+
# provider_info.r1_model = r1_endpoint
|
|
178
178
|
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
179
|
+
# # Get V3 endpoint
|
|
180
|
+
# v3_endpoint = input_dialog(
|
|
181
|
+
# title=self.printer.get_message_from_key("model_provider_api_key_title"),
|
|
182
|
+
# text=self.printer.get_message_from_key("model_provider_volcano_v3_text"),
|
|
183
|
+
# validator=VolcanoEndpointValidator(),
|
|
184
|
+
# style=dialog_style
|
|
185
|
+
# ).run()
|
|
186
186
|
|
|
187
|
-
|
|
188
|
-
|
|
187
|
+
# if v3_endpoint is None:
|
|
188
|
+
# return None
|
|
189
189
|
|
|
190
|
-
|
|
190
|
+
# provider_info.v3_model = v3_endpoint
|
|
191
191
|
|
|
192
192
|
# Get API key for all providers
|
|
193
193
|
api_key = input_dialog(
|
autocoder/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.1.
|
|
1
|
+
__version__ = "0.1.270"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|