auto-coder 0.1.259__py3-none-any.whl → 0.1.261__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.259.dist-info → auto_coder-0.1.261.dist-info}/METADATA +1 -1
- {auto_coder-0.1.259.dist-info → auto_coder-0.1.261.dist-info}/RECORD +36 -27
- autocoder/agent/auto_review_commit.py +51 -24
- autocoder/auto_coder.py +24 -1
- autocoder/chat_auto_coder.py +377 -399
- autocoder/chat_auto_coder_lang.py +20 -0
- autocoder/commands/__init__.py +0 -0
- autocoder/commands/auto_command.py +1174 -0
- autocoder/commands/tools.py +533 -0
- autocoder/common/__init__.py +8 -0
- autocoder/common/auto_coder_lang.py +61 -8
- autocoder/common/auto_configure.py +304 -0
- autocoder/common/code_auto_merge.py +2 -2
- autocoder/common/code_auto_merge_diff.py +2 -2
- autocoder/common/code_auto_merge_editblock.py +2 -2
- autocoder/common/code_auto_merge_strict_diff.py +2 -2
- autocoder/common/code_modification_ranker.py +8 -7
- autocoder/common/command_completer.py +557 -0
- autocoder/common/conf_validator.py +245 -0
- autocoder/common/conversation_pruner.py +131 -0
- autocoder/common/git_utils.py +82 -1
- autocoder/common/index_import_export.py +101 -0
- autocoder/common/result_manager.py +115 -0
- autocoder/common/shells.py +22 -6
- autocoder/common/utils_code_auto_generate.py +2 -2
- autocoder/dispacher/actions/action.py +45 -4
- autocoder/dispacher/actions/plugins/action_regex_project.py +13 -1
- autocoder/index/filter/quick_filter.py +22 -7
- autocoder/utils/auto_coder_utils/chat_stream_out.py +13 -6
- autocoder/utils/project_structure.py +15 -0
- autocoder/utils/thread_utils.py +4 -0
- autocoder/version.py +1 -1
- {auto_coder-0.1.259.dist-info → auto_coder-0.1.261.dist-info}/LICENSE +0 -0
- {auto_coder-0.1.259.dist-info → auto_coder-0.1.261.dist-info}/WHEEL +0 -0
- {auto_coder-0.1.259.dist-info → auto_coder-0.1.261.dist-info}/entry_points.txt +0 -0
- {auto_coder-0.1.259.dist-info → auto_coder-0.1.261.dist-info}/top_level.txt +0 -0
|
@@ -3,6 +3,7 @@ from byzerllm.utils import format_str_jinja2
|
|
|
3
3
|
|
|
4
4
|
MESSAGES = {
|
|
5
5
|
"en": {
|
|
6
|
+
"auto_command_analyzing": "Analyzing Command Request",
|
|
6
7
|
"mcp_remove_error": "Error removing MCP server: {error}",
|
|
7
8
|
"mcp_remove_success": "Successfully removed MCP server: {result}",
|
|
8
9
|
"mcp_list_running_error": "Error listing running MCP servers: {error}",
|
|
@@ -74,6 +75,14 @@ MESSAGES = {
|
|
|
74
75
|
"help_desc": "Show this help message",
|
|
75
76
|
"exclude_dirs_desc": "Add directories to exclude from project",
|
|
76
77
|
"shell_desc": "Execute a shell command",
|
|
78
|
+
"index_export_success": "Successfully exported index to {{ path }}",
|
|
79
|
+
"index_export_fail": "Failed to export index to {{ path }}",
|
|
80
|
+
"index_import_success": "Successfully imported index from {{ path }}",
|
|
81
|
+
"index_import_fail": "Failed to import index from {{ path }}",
|
|
82
|
+
"index_not_found": "Index file not found at {{ path }}",
|
|
83
|
+
"index_backup_success": "Backed up existing index to {{ path }}",
|
|
84
|
+
"index_convert_path_fail": "Could not convert path {{ path }}",
|
|
85
|
+
"index_error": "Error in index operation: {{ error }}",
|
|
77
86
|
"voice_input_desc": "Convert voice input to text",
|
|
78
87
|
"mode_desc": "Switch input mode",
|
|
79
88
|
"conf_key": "Key",
|
|
@@ -122,13 +131,16 @@ MESSAGES = {
|
|
|
122
131
|
"files_removed": "Files Removed",
|
|
123
132
|
"models_api_key_empty": "Warning : {{name}} API key is empty. Please set a valid API key.",
|
|
124
133
|
"commit_generating": "{{ model_name }} Generating commit message...",
|
|
134
|
+
"auto_command_reasoning_title": "Reply",
|
|
125
135
|
"commit_message": "{{ model_name }} Generated commit message: {{ message }}",
|
|
126
136
|
"commit_failed": "{{ model_name }} Failed to generate commit message: {{ error }}",
|
|
127
137
|
"confirm_execute": "Do you want to execute this script?",
|
|
128
138
|
"official_doc": "Official Documentation: https://uelng8wukz.feishu.cn/wiki/NhPNwSRcWimKFIkQINIckloBncI",
|
|
129
139
|
},
|
|
130
140
|
"zh": {
|
|
141
|
+
"auto_command_analyzing": "正在分析命令请求",
|
|
131
142
|
"commit_generating": "{{ model_name }} 正在生成提交信息...",
|
|
143
|
+
"auto_command_reasoning_title": "回复",
|
|
132
144
|
"commit_message": "{{ model_name }} 生成的提交信息: {{ message }}",
|
|
133
145
|
"commit_failed": "{{ model_name }} 生成提交信息失败: {{ error }}",
|
|
134
146
|
"mcp_remove_error": "移除 MCP 服务器时出错:{error}",
|
|
@@ -202,6 +214,14 @@ MESSAGES = {
|
|
|
202
214
|
"help_desc": "显示此帮助消息",
|
|
203
215
|
"exclude_dirs_desc": "添加要从项目中排除的目录",
|
|
204
216
|
"shell_desc": "执行shell命令",
|
|
217
|
+
"index_export_success": "成功导出索引到 {{ path }}",
|
|
218
|
+
"index_export_fail": "导出索引到 {{ path }} 失败",
|
|
219
|
+
"index_import_success": "成功从 {{ path }} 导入索引",
|
|
220
|
+
"index_import_fail": "从 {{ path }} 导入索引失败",
|
|
221
|
+
"index_not_found": "在 {{ path }} 未找到索引文件",
|
|
222
|
+
"index_backup_success": "已备份现有索引到 {{ path }}",
|
|
223
|
+
"index_convert_path_fail": "无法转换路径 {{ path }}",
|
|
224
|
+
"index_error": "索引操作出错:{{ error }}",
|
|
205
225
|
"voice_input_desc": "将语音输入转换为文本",
|
|
206
226
|
"mode_desc": "切换输入模式",
|
|
207
227
|
"lib_desc": "管理库",
|
|
File without changes
|