auto-coder 0.1.398__py3-none-any.whl → 0.1.400__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.

Files changed (86) hide show
  1. auto_coder-0.1.400.dist-info/METADATA +396 -0
  2. {auto_coder-0.1.398.dist-info → auto_coder-0.1.400.dist-info}/RECORD +82 -29
  3. {auto_coder-0.1.398.dist-info → auto_coder-0.1.400.dist-info}/WHEEL +1 -1
  4. {auto_coder-0.1.398.dist-info → auto_coder-0.1.400.dist-info}/entry_points.txt +2 -0
  5. autocoder/agent/base_agentic/base_agent.py +2 -2
  6. autocoder/agent/base_agentic/tools/replace_in_file_tool_resolver.py +1 -1
  7. autocoder/agent/entry_command_agent/__init__.py +29 -0
  8. autocoder/agent/entry_command_agent/auto_tool.py +61 -0
  9. autocoder/agent/entry_command_agent/chat.py +475 -0
  10. autocoder/agent/entry_command_agent/designer.py +53 -0
  11. autocoder/agent/entry_command_agent/generate_command.py +50 -0
  12. autocoder/agent/entry_command_agent/project_reader.py +58 -0
  13. autocoder/agent/entry_command_agent/voice2text.py +71 -0
  14. autocoder/auto_coder.py +23 -548
  15. autocoder/auto_coder_runner.py +511 -8
  16. autocoder/chat/rules_command.py +1 -1
  17. autocoder/chat_auto_coder.py +6 -1
  18. autocoder/common/ac_style_command_parser/__init__.py +15 -0
  19. autocoder/common/ac_style_command_parser/example.py +7 -0
  20. autocoder/{command_parser.py → common/ac_style_command_parser/parser.py} +28 -45
  21. autocoder/common/ac_style_command_parser/test_parser.py +516 -0
  22. autocoder/common/auto_coder_lang.py +78 -0
  23. autocoder/common/command_completer_v2.py +1 -1
  24. autocoder/common/command_file_manager/examples.py +22 -8
  25. autocoder/common/command_file_manager/manager.py +37 -6
  26. autocoder/common/conversations/get_conversation_manager.py +143 -0
  27. autocoder/common/conversations/manager.py +122 -11
  28. autocoder/common/conversations/storage/index_manager.py +89 -0
  29. autocoder/common/pull_requests/__init__.py +256 -0
  30. autocoder/common/pull_requests/base_provider.py +191 -0
  31. autocoder/common/pull_requests/config.py +66 -0
  32. autocoder/common/pull_requests/example.py +1 -0
  33. autocoder/common/pull_requests/exceptions.py +46 -0
  34. autocoder/common/pull_requests/manager.py +201 -0
  35. autocoder/common/pull_requests/models.py +164 -0
  36. autocoder/common/pull_requests/providers/__init__.py +23 -0
  37. autocoder/common/pull_requests/providers/gitcode_provider.py +19 -0
  38. autocoder/common/pull_requests/providers/gitee_provider.py +20 -0
  39. autocoder/common/pull_requests/providers/github_provider.py +214 -0
  40. autocoder/common/pull_requests/providers/gitlab_provider.py +29 -0
  41. autocoder/common/pull_requests/test_module.py +1 -0
  42. autocoder/common/pull_requests/utils.py +344 -0
  43. autocoder/common/tokens/__init__.py +62 -0
  44. autocoder/common/tokens/counter.py +211 -0
  45. autocoder/common/tokens/file_detector.py +105 -0
  46. autocoder/common/tokens/filters.py +111 -0
  47. autocoder/common/tokens/models.py +28 -0
  48. autocoder/common/v2/agent/agentic_edit.py +312 -85
  49. autocoder/common/v2/agent/agentic_edit_types.py +11 -0
  50. autocoder/common/v2/code_auto_generate_editblock.py +10 -2
  51. autocoder/dispacher/__init__.py +10 -0
  52. autocoder/rags.py +0 -27
  53. autocoder/run_context.py +1 -0
  54. autocoder/sdk/__init__.py +188 -0
  55. autocoder/sdk/cli/__init__.py +15 -0
  56. autocoder/sdk/cli/__main__.py +26 -0
  57. autocoder/sdk/cli/completion_wrapper.py +38 -0
  58. autocoder/sdk/cli/formatters.py +211 -0
  59. autocoder/sdk/cli/handlers.py +175 -0
  60. autocoder/sdk/cli/install_completion.py +301 -0
  61. autocoder/sdk/cli/main.py +286 -0
  62. autocoder/sdk/cli/options.py +73 -0
  63. autocoder/sdk/constants.py +102 -0
  64. autocoder/sdk/core/__init__.py +20 -0
  65. autocoder/sdk/core/auto_coder_core.py +880 -0
  66. autocoder/sdk/core/bridge.py +500 -0
  67. autocoder/sdk/example.py +0 -0
  68. autocoder/sdk/exceptions.py +72 -0
  69. autocoder/sdk/models/__init__.py +19 -0
  70. autocoder/sdk/models/messages.py +209 -0
  71. autocoder/sdk/models/options.py +196 -0
  72. autocoder/sdk/models/responses.py +311 -0
  73. autocoder/sdk/session/__init__.py +32 -0
  74. autocoder/sdk/session/session.py +106 -0
  75. autocoder/sdk/session/session_manager.py +56 -0
  76. autocoder/sdk/utils/__init__.py +24 -0
  77. autocoder/sdk/utils/formatters.py +216 -0
  78. autocoder/sdk/utils/io_utils.py +302 -0
  79. autocoder/sdk/utils/validators.py +287 -0
  80. autocoder/version.py +2 -1
  81. auto_coder-0.1.398.dist-info/METADATA +0 -111
  82. autocoder/common/conversations/compatibility.py +0 -303
  83. autocoder/common/conversations/conversation_manager.py +0 -502
  84. autocoder/common/conversations/example.py +0 -152
  85. {auto_coder-0.1.398.dist-info → auto_coder-0.1.400.dist-info/licenses}/LICENSE +0 -0
  86. {auto_coder-0.1.398.dist-info → auto_coder-0.1.400.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,396 @@
1
+ Metadata-Version: 2.4
2
+ Name: auto-coder
3
+ Version: 0.1.400
4
+ Summary: AutoCoder: AutoCoder
5
+ Author: allwefantasy
6
+ Classifier: Programming Language :: Python :: 3.10
7
+ Classifier: Programming Language :: Python :: 3.11
8
+ Classifier: Programming Language :: Python :: 3.12
9
+ Description-Content-Type: text/markdown
10
+ License-File: LICENSE
11
+ Requires-Dist: contextlib2
12
+ Requires-Dist: ninja
13
+ Requires-Dist: jinja2
14
+ Requires-Dist: rich
15
+ Requires-Dist: paramiko
16
+ Requires-Dist: tqdm
17
+ Requires-Dist: loguru
18
+ Requires-Dist: pyjava>=0.6.21
19
+ Requires-Dist: fastapi
20
+ Requires-Dist: uvicorn
21
+ Requires-Dist: retrying
22
+ Requires-Dist: zhipuai
23
+ Requires-Dist: dashscope
24
+ Requires-Dist: tiktoken
25
+ Requires-Dist: tabulate
26
+ Requires-Dist: jupyter_client
27
+ Requires-Dist: prompt-toolkit
28
+ Requires-Dist: tokenizers
29
+ Requires-Dist: aiofiles
30
+ Requires-Dist: readerwriterlock
31
+ Requires-Dist: byzerllm[saas]>=0.1.190
32
+ Requires-Dist: patch
33
+ Requires-Dist: diff_match_patch
34
+ Requires-Dist: GitPython
35
+ Requires-Dist: openai>=1.14.3
36
+ Requires-Dist: anthropic
37
+ Requires-Dist: google-generativeai
38
+ Requires-Dist: protobuf
39
+ Requires-Dist: azure-cognitiveservices-speech
40
+ Requires-Dist: real_agent
41
+ Requires-Dist: duckdb
42
+ Requires-Dist: python-docx
43
+ Requires-Dist: docx2txt
44
+ Requires-Dist: pdf2image
45
+ Requires-Dist: docx2pdf
46
+ Requires-Dist: pypdf
47
+ Requires-Dist: pyperclip
48
+ Requires-Dist: colorama
49
+ Requires-Dist: pylint
50
+ Requires-Dist: reportlab
51
+ Requires-Dist: pathspec
52
+ Requires-Dist: openpyxl
53
+ Requires-Dist: python-pptx
54
+ Requires-Dist: watchfiles
55
+ Requires-Dist: cairosvg
56
+ Requires-Dist: matplotlib
57
+ Requires-Dist: mammoth
58
+ Requires-Dist: markdownify
59
+ Requires-Dist: pdfminer.six
60
+ Requires-Dist: puremagic
61
+ Requires-Dist: pydub
62
+ Requires-Dist: youtube-transcript-api
63
+ Requires-Dist: SpeechRecognition
64
+ Requires-Dist: pathvalidate
65
+ Requires-Dist: pexpect
66
+ Requires-Dist: mcp; python_version >= "3.10"
67
+ Requires-Dist: setuptools
68
+ Requires-Dist: filelock
69
+ Requires-Dist: argcomplete
70
+ Dynamic: author
71
+ Dynamic: classifier
72
+ Dynamic: description
73
+ Dynamic: description-content-type
74
+ Dynamic: license-file
75
+ Dynamic: requires-dist
76
+ Dynamic: summary
77
+
78
+ <p align="center">
79
+ <picture>
80
+ <img alt="auto-coder" src="./logo/auto-coder.jpeg" width=55%>
81
+ </picture>
82
+ </p>
83
+
84
+ <h3 align="center">
85
+ Auto-Coder (powered by Byzer-LLM)
86
+ </h3>
87
+
88
+ <p align="center">
89
+ <a href="https://uelng8wukz.feishu.cn/wiki/QIpkwpQo2iSdkwk9nP6cNSPlnPc"><b>中文</b></a> |
90
+
91
+ </p>
92
+
93
+ ---
94
+
95
+ *Latest News* 🔥
96
+ - [2025/01] Release Auto-Coder 0.1.208
97
+ - [2024/09] Release Auto-Coder 0.1.163
98
+ - [2024/08] Release Auto-Coder 0.1.143
99
+ - [2024/07] Release Auto-Coder 0.1.115
100
+ - [2024/06] Release Auto-Coder 0.1.82
101
+ - [2024/05] Release Auto-Coder 0.1.73
102
+ - [2024/04] Release Auto-Coder 0.1.46
103
+ - [2024/03] Release Auto-Coder 0.1.25
104
+ - [2024/03] Release Auto-Coder 0.1.24
105
+
106
+ ---
107
+
108
+ ## 安装
109
+
110
+ ### 方法一:使用 pip 安装(推荐)
111
+
112
+ ```shell
113
+ # 创建虚拟环境(推荐)
114
+ conda create --name autocoder python=3.10.11
115
+ conda activate autocoder
116
+
117
+ # 或者使用 venv
118
+ python -m venv autocoder
119
+ source autocoder/bin/activate # Linux/macOS
120
+ # autocoder\Scripts\activate # Windows
121
+
122
+ # 安装 auto-coder
123
+ pip install -U auto-coder
124
+ ```
125
+
126
+ ### 方法二:从源码安装
127
+
128
+ ```shell
129
+ # 克隆仓库
130
+ git clone https://github.com/allwefantasy/auto-coder.git
131
+ cd auto-coder
132
+
133
+ # 创建虚拟环境
134
+ conda create --name autocoder python=3.10.11
135
+ conda activate autocoder
136
+
137
+ # 安装依赖
138
+ pip install -r requirements.txt
139
+
140
+ # 安装项目
141
+ pip install -e .
142
+ ```
143
+
144
+ ### 系统要求
145
+
146
+ - Python 3.10, 3.11 或 3.12
147
+ - 操作系统:Windows、macOS、Linux
148
+ - 内存:建议 4GB 以上
149
+ - 磁盘空间:建议 2GB 以上
150
+
151
+ ### 验证安装
152
+
153
+ 安装完成后,可以通过以下命令验证安装是否成功:
154
+
155
+ ```shell
156
+ # 检查版本
157
+ auto-coder --version
158
+
159
+ # 启动聊天模式
160
+ auto-coder.chat
161
+
162
+ # 运行单次命令
163
+ auto-coder.run -p "Hello, Auto-Coder!"
164
+ ```
165
+
166
+ ## 使用指南
167
+
168
+ ### 1. 聊天模式(推荐新手使用)
169
+
170
+ ```shell
171
+ # 启动交互式聊天界面
172
+ auto-coder.chat
173
+
174
+ # 或者使用别名
175
+ chat-auto-coder
176
+ ```
177
+
178
+ 聊天模式提供友好的交互界面,支持:
179
+ - 实时对话
180
+ - 代码生成和修改
181
+ - 文件操作
182
+ - 项目管理
183
+
184
+ ### 2. 命令行模式
185
+
186
+ #### 单次运行模式
187
+
188
+ ```shell
189
+ # 基本用法
190
+ auto-coder.run -p "编写一个计算斐波那契数列的函数"
191
+
192
+ # 从管道读取输入
193
+ echo "解释这段代码的功能" | auto-coder.run -p
194
+
195
+ # 指定输出格式
196
+ auto-coder.run -p "生成一个 Hello World 函数" --output-format json
197
+
198
+ # 使用详细输出
199
+ auto-coder.run -p "创建一个简单的网页" --verbose
200
+ ```
201
+
202
+ #### 会话模式
203
+
204
+ ```shell
205
+ # 继续最近的对话
206
+ auto-coder.run --continue
207
+
208
+ # 恢复特定会话
209
+ auto-coder.run --resume 550e8400-e29b-41d4-a716-446655440000
210
+ ```
211
+
212
+ #### 高级选项
213
+
214
+ ```shell
215
+ # 限制对话轮数
216
+ auto-coder.run -p "优化这个算法" --max-turns 5
217
+
218
+ # 指定系统提示
219
+ auto-coder.run -p "写代码" --system-prompt "你是一个专业的Python开发者"
220
+
221
+ # 限制可用工具
222
+ auto-coder.run -p "读取文件内容" --allowed-tools read_file write_to_file
223
+
224
+ # 设置权限模式
225
+ auto-coder.run -p "修改代码" --permission-mode acceptEdits
226
+ ```
227
+
228
+ ### 3. 核心模式
229
+
230
+ ```shell
231
+ # 启动核心模式(传统命令行界面)
232
+ auto-coder
233
+
234
+ # 或者使用别名
235
+ auto-coder.core
236
+ ```
237
+
238
+ ### 4. 服务器模式
239
+
240
+ ```shell
241
+ # 启动 Web 服务器
242
+ auto-coder.serve
243
+
244
+ # 或者使用别名
245
+ auto-coder-serve
246
+ ```
247
+
248
+ ### 5. RAG 模式
249
+
250
+ ```shell
251
+ # 启动 RAG(检索增强生成)模式
252
+ auto-coder.rag
253
+ ```
254
+
255
+ ### 常用命令示例
256
+
257
+ ```shell
258
+ # 代码生成
259
+ auto-coder.run -p "创建一个 Flask Web 应用"
260
+
261
+ # 代码解释
262
+ auto-coder.run -p "解释这个函数的作用" < code.py
263
+
264
+ # 代码重构
265
+ auto-coder.run -p "重构这段代码,提高可读性"
266
+
267
+ # 错误修复
268
+ auto-coder.run -p "修复这个 bug" --verbose
269
+
270
+ # 文档生成
271
+ auto-coder.run -p "为这个项目生成 README 文档"
272
+
273
+ # 测试生成
274
+ auto-coder.run -p "为这个函数编写单元测试"
275
+ ```
276
+
277
+ ### 自动补全
278
+
279
+ Auto-Coder 支持命令行自动补全功能:
280
+
281
+ ```shell
282
+ # 安装自动补全(bash)
283
+ echo 'eval "$(register-python-argcomplete auto-coder.run)"' >> ~/.bashrc
284
+ source ~/.bashrc
285
+
286
+ # 安装自动补全(zsh)
287
+ echo 'eval "$(register-python-argcomplete auto-coder.run)"' >> ~/.zshrc
288
+ source ~/.zshrc
289
+ ```
290
+
291
+ ## 卸载
292
+
293
+ ### 完全卸载
294
+
295
+ ```shell
296
+ # 卸载 auto-coder
297
+ pip uninstall auto-coder
298
+
299
+ # 删除虚拟环境(如果使用了虚拟环境)
300
+ conda remove --name autocoder --all
301
+ # 或者
302
+ rm -rf autocoder # 如果使用 venv 创建的环境
303
+
304
+ # 清理缓存文件(可选)
305
+ rm -rf ~/.autocoder # 用户配置和缓存目录
306
+ ```
307
+
308
+ ### 重新安装
309
+
310
+ ```shell
311
+ # 卸载旧版本
312
+ pip uninstall auto-coder
313
+
314
+ # 清理缓存
315
+ pip cache purge
316
+
317
+ # 安装最新版本
318
+ pip install -U auto-coder
319
+ ```
320
+
321
+ ## 配置
322
+
323
+ ### 环境变量
324
+
325
+ ```shell
326
+ # 设置 API 密钥
327
+ export OPENAI_API_KEY="your-api-key"
328
+ export ANTHROPIC_API_KEY="your-api-key"
329
+
330
+ # 设置模型配置
331
+ export AUTOCODER_MODEL="gpt-4"
332
+ export AUTOCODER_BASE_URL="https://api.openai.com/v1"
333
+ ```
334
+
335
+ ### 配置文件
336
+
337
+ Auto-Coder 支持多种配置方式:
338
+
339
+ - `.autocoderrc`:项目级配置
340
+ - `~/.autocoder/config.yaml`:用户级配置
341
+ - 环境变量:系统级配置
342
+
343
+ ## 故障排除
344
+
345
+ ### 常见问题
346
+
347
+ 1. **安装失败**
348
+ ```shell
349
+ # 升级 pip
350
+ pip install --upgrade pip
351
+
352
+ # 清理缓存重新安装
353
+ pip cache purge
354
+ pip install auto-coder
355
+ ```
356
+
357
+ 2. **权限错误**
358
+ ```shell
359
+ # 使用用户安装
360
+ pip install --user auto-coder
361
+ ```
362
+
363
+ 3. **依赖冲突**
364
+ ```shell
365
+ # 使用虚拟环境
366
+ python -m venv autocoder_env
367
+ source autocoder_env/bin/activate
368
+ pip install auto-coder
369
+ ```
370
+
371
+ 4. **命令未找到**
372
+ ```shell
373
+ # 检查 PATH
374
+ echo $PATH
375
+
376
+ # 重新安装
377
+ pip uninstall auto-coder
378
+ pip install auto-coder
379
+ ```
380
+
381
+ ### 获取帮助
382
+
383
+ ```shell
384
+ # 查看帮助信息
385
+ auto-coder.run --help
386
+
387
+ # 查看版本信息
388
+ auto-coder --version
389
+
390
+ # 启用详细输出进行调试
391
+ auto-coder.run -p "test" --verbose
392
+ ```
393
+
394
+ ## 教程
395
+
396
+ 0. [Auto-Coder.Chat: 通向智能编程之路](https://uelng8wukz.feishu.cn/wiki/QIpkwpQo2iSdkwk9nP6cNSPlnPc)
@@ -1,18 +1,18 @@
1
+ auto_coder-0.1.400.dist-info/licenses/LICENSE,sha256=HrhfyXIkWY2tGFK11kg7vPCqhgh5DcxleloqdhrpyMY,11558
1
2
  autocoder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- autocoder/auto_coder.py,sha256=MuRePVZ94VUXukENzVKfvXnqrtmvIC_O_152zYh-H0U,69554
3
+ autocoder/auto_coder.py,sha256=giCjH2IJhNicfvx45LxBcOakj6LnJKi7S-GAQT3QenA,46262
3
4
  autocoder/auto_coder_rag.py,sha256=nniuWo2DCRtttAm59ef8C_9xFZzD5nKi3gSSPJMJHbM,43696
4
- autocoder/auto_coder_runner.py,sha256=3kjlxvCgnOd-_P7VqPVcBYU_xqTdW515c-XFwuXUgdI,115789
5
+ autocoder/auto_coder_runner.py,sha256=rjzZgBYIJVY2NneCSaTdt9KnSxvri9utbWVBP1WDLK4,134995
5
6
  autocoder/auto_coder_server.py,sha256=bLORGEclcVdbBVfM140JCI8WtdrU0jbgqdJIVVupiEU,20578
6
7
  autocoder/benchmark.py,sha256=Ypomkdzd1T3GE6dRICY3Hj547dZ6_inqJbBJIp5QMco,4423
7
- autocoder/chat_auto_coder.py,sha256=d6ApMKJmg9Ji2Mzgkwz2b90zMQcAdP1CmHRyB5wz2dI,26894
8
+ autocoder/chat_auto_coder.py,sha256=i858TLkWKKnEmHfrXH25Tl4oPkv4ywc6fd_vQoUoVNE,27087
8
9
  autocoder/chat_auto_coder_lang.py,sha256=ylLr1GskchU6kIUJY2TiznrBg-ckc1o-8fDsKZZ0iQU,29337
9
10
  autocoder/command_args.py,sha256=HxflngkYtTrV17Vfgk6lyUyiG68jP2ftSc7FYr9AXwY,30585
10
- autocoder/command_parser.py,sha256=fx1g9E6GaM273lGTcJqaFQ-hoksS_Ik2glBMnVltPCE,10013
11
11
  autocoder/lang.py,sha256=PFtATuOhHRnfpqHQkXr6p4C893JvpsgwTMif3l-GEi0,14321
12
12
  autocoder/models.py,sha256=pD5u6gcMKRwWaLxeVin18g25k-ERyeHOFsRpOgO_Ae0,13788
13
- autocoder/rags.py,sha256=4DNVdGwIAzsf_t6efhkSI_qb1h-iJDVR4jmLVCNYWNs,12691
14
- autocoder/run_context.py,sha256=IUfSO6_gp2Wt1blFWAmOpN0b0nDrTTk4LmtCYUBIoro,1643
15
- autocoder/version.py,sha256=OItrNEXi2IoqGX7N6aRKJ0AjqkpJOSRuW44eQDm2Fpw,24
13
+ autocoder/rags.py,sha256=3hn8cUUdncE7FABV9RPNLxhRzLnIxC8IPcBXnEvE4g0,11955
14
+ autocoder/run_context.py,sha256=_IFy1OdnLasQvbDhlf1SUfQKJr4BPCaiRubldKFnVDo,1660
15
+ autocoder/version.py,sha256=2DCGpt_wtDWMwJr9cUbY3wT_m5uM3ZIaUgtd9-6kid0,25
16
16
  autocoder/agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
17
  autocoder/agent/agentic_filter.py,sha256=zlInIRhawKIYTJjCiJBWqPCOV5UtMbh5VnvszfTy2vo,39824
18
18
  autocoder/agent/auto_demand_organizer.py,sha256=URAq0gSEiHeV_W4zwhOI_83kHz0Ryfj1gcfh5jwCv_w,6501
@@ -30,7 +30,7 @@ autocoder/agent/base_agentic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NM
30
30
  autocoder/agent/base_agentic/agent_hub.py,sha256=3Al9rCKu-SRgAs1kvnMe4VIIErTIw85QTkhfFu5omO8,5605
31
31
  autocoder/agent/base_agentic/agentic_lang.py,sha256=UCq1NY9USaYJakTWc-3cv_MeHxAb6se1PI4lsSwGrPM,3657
32
32
  autocoder/agent/base_agentic/agentic_tool_display.py,sha256=UnAq8ovvpu88KLk19Ff0TW-Dq-k7YiRwZiIJgcYPwiY,6989
33
- autocoder/agent/base_agentic/base_agent.py,sha256=kBVnqYV2qJa3HYo2ZKb7eaaAg3IimYJRiLh6U2_mwHs,93428
33
+ autocoder/agent/base_agentic/base_agent.py,sha256=uIG_63TqQ20bSG1efSikury83cLLGIfKDVtGSXmTYtE,93420
34
34
  autocoder/agent/base_agentic/default_tools.py,sha256=gCzw6pJA95ERXWwSlAm1SVxmzAvJmi-O6nrmLcNStCc,34200
35
35
  autocoder/agent/base_agentic/test_base_agent.py,sha256=jok9f-DoEagzZRWjk-Zpy3gKw2ztZrsNzEc0XlvE7HU,2804
36
36
  autocoder/agent/base_agentic/tool_registry.py,sha256=YFnUXJ78y7g3pm3yGgrhZ-0mx-C1ctdcA0r_ljGiE6o,14292
@@ -45,16 +45,23 @@ autocoder/agent/base_agentic/tools/execute_command_tool_resolver.py,sha256=w-_8N
45
45
  autocoder/agent/base_agentic/tools/list_files_tool_resolver.py,sha256=SCAYAiqmgwuCLMwRwroUQFfVS_hbcuAoG9-jIJxiB1c,8061
46
46
  autocoder/agent/base_agentic/tools/plan_mode_respond_tool_resolver.py,sha256=hiLdMRknR_Aljd7Ic2bOWZKs11aFHdhkRTKTlP3IIgw,1461
47
47
  autocoder/agent/base_agentic/tools/read_file_tool_resolver.py,sha256=egcxrXv32stvhB3QawE2k62-9W5U3TNuY3qoTyKKhs0,5076
48
- autocoder/agent/base_agentic/tools/replace_in_file_tool_resolver.py,sha256=rc1tVaCMfhtpB0qxep4SBFSklRYHgfOATEPlIEFT_G8,12745
48
+ autocoder/agent/base_agentic/tools/replace_in_file_tool_resolver.py,sha256=6TRoZ-ct6oDLBuMzmhFLkd8f0uTY1-Q__fUQfISbNz8,12739
49
49
  autocoder/agent/base_agentic/tools/search_files_tool_resolver.py,sha256=cMcfA_3swonPvQiDl_73fPgcQgr5BaUVwMJfj2Btqak,9528
50
50
  autocoder/agent/base_agentic/tools/talk_to_group_tool_resolver.py,sha256=uf_KGvL4xo6Aj4D03xvR95jpF6nzpSsymb7D74mMqBI,3549
51
51
  autocoder/agent/base_agentic/tools/talk_to_tool_resolver.py,sha256=1uEtR2e0Eq5ckOPqHn6K0BKgyZL6Lk-BP0V4-awvNhg,2790
52
52
  autocoder/agent/base_agentic/tools/use_mcp_tool_resolver.py,sha256=Ph63zm6973nxRdRINV3ME0rhDWqtaEveHqLjEEMN02I,1554
53
53
  autocoder/agent/base_agentic/tools/write_to_file_tool_resolver.py,sha256=ZvNt6HIBHo0KhYbrGa_-2LOntjsXFKUIrmy8V-rIMfs,7996
54
+ autocoder/agent/entry_command_agent/__init__.py,sha256=7SHnGHmLJhmB-kmCskf-qIeIzouq6Sc7pWyeU4jtnn4,848
55
+ autocoder/agent/entry_command_agent/auto_tool.py,sha256=Wf-zHL4lCWkggjQ-hEP4L3dJ8cqo8Y2Fl2gDmdzFKzM,1505
56
+ autocoder/agent/entry_command_agent/chat.py,sha256=XUeJdmz3Jaa8FQ2BHxWehuKV1Ql8Gl7wniJEijlnxOI,19722
57
+ autocoder/agent/entry_command_agent/designer.py,sha256=iCPRJIK-aVpbcdDuUBjCBYq97TgamDTU30TVhik4HBA,1427
58
+ autocoder/agent/entry_command_agent/generate_command.py,sha256=VmYPzkY-5ikxJ6nl_tPg4WaVwfBJ3Z6oKXNKBOmgLQE,1145
59
+ autocoder/agent/entry_command_agent/project_reader.py,sha256=wPoMCrTaByYcUnxpgHFLRCaNLwc8pSjNGORIHz3W9Bw,1871
60
+ autocoder/agent/entry_command_agent/voice2text.py,sha256=0TngAmVf0RzcZgjynCF7_-wMEkdu1RLy30fynRcH1S4,1851
54
61
  autocoder/chat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
55
62
  autocoder/chat/conf_command.py,sha256=sqsZEjFXUCaCydXbqLU_ockpwQ7efQCicEd-hjD29ts,11353
56
63
  autocoder/chat/models_command.py,sha256=yISjvqNbKHVapGcXMcsIwRFfPruJ5ruSqR_e8TqhaPw,20105
57
- autocoder/chat/rules_command.py,sha256=V9-Om7N7c_6siudtZMWuALxe2GNMkgqorWAP4P_Wl4k,17396
64
+ autocoder/chat/rules_command.py,sha256=btA6Od0t2e7iMOFIkR4cfhy95AdE81ffqfUrabU1QCQ,17412
58
65
  autocoder/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
59
66
  autocoder/commands/auto_command.py,sha256=gqJlTeFoMzzQSb5POw9rd0O1iGL0cim5DlQaulElx1o,65724
60
67
  autocoder/commands/auto_web.py,sha256=K0Gv7lil5UqmExr_sAJNOcwNxw_q1vhvre1jjQ7tA3w,39050
@@ -66,7 +73,7 @@ autocoder/common/action_yml_file_manager.py,sha256=DdF5P1R_B_chCnnqoA2IgogakWLZk
66
73
  autocoder/common/anything2images.py,sha256=0ILBbWzY02M-CiWB-vzuomb_J1hVdxRcenAfIrAXq9M,25283
67
74
  autocoder/common/anything2img.py,sha256=iZQmg8srXlD7N5uGl5b_ONKJMBjYoW8kPmokkG6ISF0,10118
68
75
  autocoder/common/audio.py,sha256=Kn9nWKQddWnUrAz0a_ZUgjcu4VUU_IcZBigT7n3N3qc,7439
69
- autocoder/common/auto_coder_lang.py,sha256=J8VufijeqBKjF7UJrwf8KppjOtIuQgST4MY1p5xuye4,43023
76
+ autocoder/common/auto_coder_lang.py,sha256=J8cGOm8qVI4uOyweb3KcF0oVYYZNQC41yYv_-06HdcY,45197
70
77
  autocoder/common/auto_configure.py,sha256=D4N-fl9v8bKM5-Ds-uhkC2uGDmHH_ZjLJ759F8KXMKs,13129
71
78
  autocoder/common/buildin_tokenizer.py,sha256=L7d5t39ZFvUd6EoMPXUhYK1toD0FHlRH1jtjKRGokWU,1236
72
79
  autocoder/common/chunk_validation.py,sha256=BrR_ZWavW8IANuueEE7hS8NFAwEvm8TX34WnPx_1hs8,3030
@@ -82,7 +89,7 @@ autocoder/common/code_auto_merge_editblock.py,sha256=5PLH8Ey4GYsPNMGn36pSy_IgwgZ
82
89
  autocoder/common/code_auto_merge_strict_diff.py,sha256=C35pFxhkgypsm50VDAFOBAT6YXMtzKTvIpEUH1GjZZg,13209
83
90
  autocoder/common/code_modification_ranker.py,sha256=RwswmKhYae9ZPQHUFPUI-ZW51K5NNtwhFBdOH2I65ic,13592
84
91
  autocoder/common/command_completer.py,sha256=MiQiJZZbtGUvREH3gUrQe9b1ElXnPTYh9uuVcUsNlTc,38659
85
- autocoder/common/command_completer_v2.py,sha256=bnBjYAvo56mxzDleH-O3UxBYGjkcbwFZGZA5lh5uXmo,32337
92
+ autocoder/common/command_completer_v2.py,sha256=fwj8kfh6Uo0SEvgnCGATeUJKvC_WPMEn0Ss4fdkgXEM,32389
86
93
  autocoder/common/command_generator.py,sha256=YwB_E818vx0fQDOpLD61GivsSgLnrIoxKrY22ka49JU,2797
87
94
  autocoder/common/command_templates.py,sha256=HjI-lo7H-XeQGsHKUtEI3vnhFH1QFibW9X7fahim8oE,8259
88
95
  autocoder/common/computer_use.py,sha256=Z5RL-DgkcbF55YDsqnJ37loXGcm_1tzTheukjTTayJM,35816
@@ -126,19 +133,21 @@ autocoder/common/text.py,sha256=KGRQq314GHBmY4MWG8ossRoQi1_DTotvhxchpn78c-k,1003
126
133
  autocoder/common/token_cost_caculate.py,sha256=MSWJtl7YpQSUt-gFQoqUcJMblyPqHXe2ZioiZOFkV80,10085
127
134
  autocoder/common/types.py,sha256=Cw_4RH-rGmAgQE-Ck69maMAMqlPCDA4Yj37QmuUY0mQ,713
128
135
  autocoder/common/utils_code_auto_generate.py,sha256=sqtLmVxRveRwqLwJ8UlDgwngwmh2AAo3vgl-I-ALcDQ,4597
136
+ autocoder/common/ac_style_command_parser/__init__.py,sha256=RljOGlR15wlsqKpXh6pVtU3BVBqv4cwJkgfZnzNw5Og,246
137
+ autocoder/common/ac_style_command_parser/example.py,sha256=e7Iwg901f2yzpNkUlUKimrknOAM_3Qkt_BTvIvYgiQA,168
138
+ autocoder/common/ac_style_command_parser/parser.py,sha256=fefkQWtjYD_M7h7eI90wEBYaPKyNBxl9dBbuaZT5434,9892
139
+ autocoder/common/ac_style_command_parser/test_parser.py,sha256=pw3szwU6egQW5bzB-FpDD_EgPvgGLRw9FuTSZOo_65M,16552
129
140
  autocoder/common/command_file_manager/__init__.py,sha256=ardiG_iuWhurfbN6RO4wij2U7Dmafnxn2vgWYYxKqDM,970
130
- autocoder/common/command_file_manager/examples.py,sha256=kWNVK_iDvQn5NtA8D791Oxkj8xP5DWSD72PcMYIgwBQ,4067
131
- autocoder/common/command_file_manager/manager.py,sha256=TrwtAbtvaxnjOBdaHMBnAOffe1_pvL1xkpibsfGUB68,5934
141
+ autocoder/common/command_file_manager/examples.py,sha256=DSpRTvkky0_1C3e3e43wDTJ85Vziii0tCce8j33XKT0,4587
142
+ autocoder/common/command_file_manager/manager.py,sha256=pHEEVqtD7f1HkQkm5vUcaVYcXNJmF51z5fl0j4wJ760,7382
132
143
  autocoder/common/command_file_manager/models.py,sha256=cDYRSQGK5O4nFI0GGHQvHcPeNKUxKePZQCgy7Mfw3kU,3471
133
144
  autocoder/common/command_file_manager/utils.py,sha256=OA9OhB1VnkvnFGof9p6jGfIVx31usUcqucXZCkqNm4I,3488
134
145
  autocoder/common/conversations/__init__.py,sha256=03_wR4yW77H3j9rVBRfeBqeQWjWPf3LRnvmCJoYi_Es,1777
135
- autocoder/common/conversations/compatibility.py,sha256=WuBXB4-dw5X9LUMsB16VWbihvRZQ1tT99m6zuBwDfqE,9606
136
146
  autocoder/common/conversations/config.py,sha256=BJOYfR62AFIi5i4ZFD92GY6xFDjbIfo_wMIj8ZUsf_g,7132
137
- autocoder/common/conversations/conversation_manager.py,sha256=ZhuhfSdOTncqgy3nHPoEU7Cg0dCsSl-VPcvLbUlL2Tk,18295
138
- autocoder/common/conversations/example.py,sha256=Pz_EhO6qneUFMfHZiDmGAClZ6b0V4T1sbC8tIMxX2RM,5437
139
147
  autocoder/common/conversations/exceptions.py,sha256=0K9zzXz5M3xBhrH0jUooRmS4ND8e6pc0M9E4oaUJOjc,2420
140
148
  autocoder/common/conversations/file_locker.py,sha256=hexTI16KmaZ0j5s5bXBMsDOP-Qv--jm3gX6-6LtBnn4,5043
141
- autocoder/common/conversations/manager.py,sha256=BmjWCpE535pGuBa30z5bqNTWGvkx86YEwVVgM-aqWIA,33519
149
+ autocoder/common/conversations/get_conversation_manager.py,sha256=sZLduSle9cRsMOS176m4gPFVsmzha-lvkatqgeGSyKw,4622
150
+ autocoder/common/conversations/manager.py,sha256=MbKWPH4r5SNHFoyagiA3mFXq5kNN8TSCkx2sYYveYqw,37283
142
151
  autocoder/common/conversations/models.py,sha256=minsZR0u_grcg9HBj0ATqSwBXr-wcbuynq4oC0MJNaY,5220
143
152
  autocoder/common/conversations/backup/__init__.py,sha256=XL8tOfInJ6JyCtW-00y9NmKarYzTjVoeDfU5yt7y5PA,372
144
153
  autocoder/common/conversations/backup/backup_manager.py,sha256=RlDFXxF_6nBwDyIsj9T1l8WPnTTwTu8rtFMYuU4VzKw,21070
@@ -153,7 +162,7 @@ autocoder/common/conversations/search/text_searcher.py,sha256=bRjTF6hyxn429DCtQ3
153
162
  autocoder/common/conversations/storage/__init__.py,sha256=ZPDsonA8iCErM-0ngRCwAmSVpU9BCzNPXSHUTZaAjps,374
154
163
  autocoder/common/conversations/storage/base_storage.py,sha256=L0GAkFaZI1puBwLDqHICRmh7yooa-n5bRGtE8lpdjBg,2050
155
164
  autocoder/common/conversations/storage/file_storage.py,sha256=GZ_mwFlb9KtGeC9UYIjpWD_6i8tGtU11aruhhCj9bE0,8043
156
- autocoder/common/conversations/storage/index_manager.py,sha256=kLED60W2HmF53Bw4xoQgDK0ZMXuxwq-3qt_ktIHJB9k,9854
165
+ autocoder/common/conversations/storage/index_manager.py,sha256=AhhR4zbvxGob_qQrFWx2X3xXJwTb2y7gUFBSWZAj0uY,12605
157
166
  autocoder/common/directory_cache/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
158
167
  autocoder/common/directory_cache/cache.py,sha256=Jknygb_U6DkF04_SX04IwsOcQdd-2QQ4d6k9Ucc9OZ0,9358
159
168
  autocoder/common/directory_cache/test_cache.py,sha256=0iQkHaZQPhZBwSS6dwK_je93QMLbYGY0BYrTSt45Cao,6610
@@ -178,15 +187,34 @@ autocoder/common/ignorefiles/test_ignore_file_utils.py,sha256=EydHG6E2iPsnbt-Jt8
178
187
  autocoder/common/mcp_servers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
179
188
  autocoder/common/mcp_servers/mcp_server_gpt4o_mini_search.py,sha256=TApShxgoozLluobXHOK1-oAE1zm0-9jdRoPLQB1qwMI,5688
180
189
  autocoder/common/mcp_servers/mcp_server_perplexity.py,sha256=CIC26UkfH1lYoVCjfyY5xGGYVx8h0oz0Uj1c7YJ3OPw,5560
190
+ autocoder/common/pull_requests/__init__.py,sha256=dfl_GPLnwRYiby0Jjt2CspfWeIQppa3YjG1ei4uQYio,8351
191
+ autocoder/common/pull_requests/base_provider.py,sha256=X5ynD-RLDfhzY4-RUaqhrWWyN48ZbZhoIM3_sz-rsV4,7541
192
+ autocoder/common/pull_requests/config.py,sha256=z9hExfs85ATN1h_OrC0rWr-siao9ct9tbpHRwBWuKGM,1617
193
+ autocoder/common/pull_requests/example.py,sha256=Nqnn8clbgv-5l0PgxcTOldg8mkMKrFn4TvPL-rYUUGg,1
194
+ autocoder/common/pull_requests/exceptions.py,sha256=3Lz3zPMsQ6y_k37-7OvhLGK3X_48EOLvMoBEwIk5Dlk,1132
195
+ autocoder/common/pull_requests/manager.py,sha256=mUpTVe-EO8zRHnV4kCY-5DQdFdYHKzfvLKBUf3EBcvY,6887
196
+ autocoder/common/pull_requests/models.py,sha256=tpuXUNW34UHvW7Ck50BHt_v4RsWSEEXimctvBDIpFvY,4307
197
+ autocoder/common/pull_requests/test_module.py,sha256=Nqnn8clbgv-5l0PgxcTOldg8mkMKrFn4TvPL-rYUUGg,1
198
+ autocoder/common/pull_requests/utils.py,sha256=SoOg0J4QnT5YJe6w-62Rhc7gDMhqVCVsCQnw-h7sP7s,10414
199
+ autocoder/common/pull_requests/providers/__init__.py,sha256=-zehjpwQRHJ-OjFZ72NQI5NbqyLvw95pn4GkXh1EOEA,492
200
+ autocoder/common/pull_requests/providers/gitcode_provider.py,sha256=XGccofjqfckgXp0AmaqDLqis-gBiz9QA0xWkU4qwEv4,601
201
+ autocoder/common/pull_requests/providers/gitee_provider.py,sha256=Juh738yX7dOJw44CYR7MoHmvyD_go6xEiMiCzrXFlBA,628
202
+ autocoder/common/pull_requests/providers/github_provider.py,sha256=r3XMPEXccIkIMDgFLW_Xhq70nPq6i8K8je6a7aPLBio,7599
203
+ autocoder/common/pull_requests/providers/gitlab_provider.py,sha256=wRkzoTzqjJbTaKaAQ3lLGzjAUI6L1fhpb0_nfrGQkfM,928
181
204
  autocoder/common/rag_manager/__init__.py,sha256=PR2LIdyFdF3XOFewd2VYuEFNp5ZUMrwAstYn8OOJX-Y,77
182
205
  autocoder/common/rag_manager/rag_manager.py,sha256=958DTIHgXN_tw-vMLtuUL1TnhbZbPL0pZior_gYjgR0,5990
183
206
  autocoder/common/rulefiles/__init__.py,sha256=babSbPdFaXk1NvdHtH2zrJLb_tWd7d2ELIyS8NApY_Y,221
184
207
  autocoder/common/rulefiles/autocoderrules_utils.py,sha256=TvzKt41wa1uPnYXHkUaJRCuxCJL9IB-Zx6FsEwdSExg,19454
208
+ autocoder/common/tokens/__init__.py,sha256=IC-_YUWnEqEH7Z2N1LIYd6tRbnqhHQC7fS8vPc7tvKk,1496
209
+ autocoder/common/tokens/counter.py,sha256=Z9e9tQ-iMFPcwW6Oe1hDglwrIdSvlMZLQIq1dwVuTv8,7102
210
+ autocoder/common/tokens/file_detector.py,sha256=AKMy-9kCWUl2NVeJtsXj5J7UJ4YPP-8t_bTbDWAJtVw,3483
211
+ autocoder/common/tokens/filters.py,sha256=g0kC6LDmiYZCZVr8RN9ing6njSpjyXzEs1GfKfsF1CE,3477
212
+ autocoder/common/tokens/models.py,sha256=JCuV1sRLRSwluwDv7OulDgCqqdx3LAosPCGB7NiKcmg,610
185
213
  autocoder/common/v2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
186
214
  autocoder/common/v2/code_agentic_editblock_manager.py,sha256=pAh918YMgmLenXmNKXlmDPgKyVJjOuk69901VEEQHm4,34980
187
215
  autocoder/common/v2/code_auto_generate.py,sha256=PAySLU8ZnpdF8GelwSCiEbzv7sBbn-Vhakinf4i6udE,11646
188
216
  autocoder/common/v2/code_auto_generate_diff.py,sha256=RWMJHxpQyD86ZOw0yYBFlKJLRsrrAWwRLJwu2rHfNXU,15213
189
- autocoder/common/v2/code_auto_generate_editblock.py,sha256=cqj8eExUiITbTC8GJG53a5VjZq2DgTPNyOhFjplsPRU,15783
217
+ autocoder/common/v2/code_auto_generate_editblock.py,sha256=U2OBPA15C8LBNqpRtyd27XPD7BZYh_HBY-6LVZ073_s,16079
190
218
  autocoder/common/v2/code_auto_generate_strict_diff.py,sha256=dbGyjBYWvjl_xT27Zxaq6Cgl7JuPZwYEGngPAyq3j9g,18066
191
219
  autocoder/common/v2/code_auto_merge.py,sha256=FZHrIZyFUkFmv4EbproXfIIUfGx_L3EPfvjldsYlplI,9345
192
220
  autocoder/common/v2/code_auto_merge_diff.py,sha256=DcljWrtlejq2cb9Gj-jBjvUQzRbCE2uMNGg8SBOhEnk,19271
@@ -197,8 +225,8 @@ autocoder/common/v2/code_editblock_manager.py,sha256=DMwJw-FAM6VyaBQV3p4xespHpgZ
197
225
  autocoder/common/v2/code_manager.py,sha256=C403bS-f6urixwitlKHcml-J03hci-UyNwHJOqBiY6Q,9182
198
226
  autocoder/common/v2/code_strict_diff_manager.py,sha256=Bys7tFAq4G03R1zUZuxrszBTvP4QB96jIw2y5BDLyRM,9424
199
227
  autocoder/common/v2/agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
200
- autocoder/common/v2/agent/agentic_edit.py,sha256=iy7jqzLcjc37sHHqTXI5Nbhx_w2UGaAGE6KQay94EEc,130191
201
- autocoder/common/v2/agent/agentic_edit_types.py,sha256=rN3MuPES2Gwp8b5vrpp9v4eUkAlLA4AY7PEZ7LoUgvQ,5005
228
+ autocoder/common/v2/agent/agentic_edit.py,sha256=MBASLrOYgCfkCSrzpZIcOC6iJo-yaI5qwVF02lP2ORg,141595
229
+ autocoder/common/v2/agent/agentic_edit_types.py,sha256=QSNxxnMfeuJr5Ob0pgTvzaOPUjilstxDcadN9mQLCwY,5353
202
230
  autocoder/common/v2/agent/agentic_tool_display.py,sha256=-a-JTQLc4q03E_rdIILKMI0B6DHN-5gcGlrqq-mBYK4,7239
203
231
  autocoder/common/v2/agent/agentic_edit_tools/__init__.py,sha256=5I_N3xeekdGQJtOI6TxZ4LkwwtP0CQ7stu6SBaF9UeQ,1417
204
232
  autocoder/common/v2/agent/agentic_edit_tools/ask_followup_question_tool_resolver.py,sha256=-HFXo3RR6CH8xXjDaE2mYV4XasTLAmvXe6WutL7qbwA,3208
@@ -236,7 +264,7 @@ autocoder/data/byzerllm.md,sha256=SGCMpEaUQ0ysPxQsgzyyp5sgvEr8dZsxEGAfVcPBIq0,47
236
264
  autocoder/data/tokenizer.json,sha256=7Lb5_DaYlDRvBRH0B0ynXO5c1fOwbQLxujX805-OEh0,7847602
237
265
  autocoder/db/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
238
266
  autocoder/db/store.py,sha256=tFT66bP2ZKIqZip-uhLkHRSLaaOAUUDZfozJwcqix3c,1908
239
- autocoder/dispacher/__init__.py,sha256=GTGpU9KbyAu3QMsbecnETYHMoIDBfKKP8iEVsU8gKcg,957
267
+ autocoder/dispacher/__init__.py,sha256=joonDLhct4pKgkGdc9F5JMqVHafUpzPo3fhl1DQicv8,1423
240
268
  autocoder/dispacher/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
241
269
  autocoder/dispacher/actions/action.py,sha256=lszFrNZOmmFMJC0QaIjS-OEE2du5i6a81NjuJaexamk,22765
242
270
  autocoder/dispacher/actions/copilot.py,sha256=2nQzKt8Sr40mIDOizZWyl4ekCwaHYklvgGlVfvhOlFM,13106
@@ -338,6 +366,32 @@ autocoder/rag/tools/__init__.py,sha256=3U91ZI4wZh8UYYl_D11IyLxBLseemmPVfBnmh4ZzN
338
366
  autocoder/rag/tools/recall_tool.py,sha256=z-EEyfeD1JR5Mdk9Obi3FJyW-5Q7ljH97Rtd_vlk-Tk,6487
339
367
  autocoder/rag/tools/search_tool.py,sha256=HaIA-H66oJwUisk_mpDJQw28TgVHzNxA5JOBbX1y6q8,4702
340
368
  autocoder/regexproject/__init__.py,sha256=QMXphSxjuv_LDIx0L_0jnnvCzMfmrOl0VMTVmXabeL0,8976
369
+ autocoder/sdk/__init__.py,sha256=nzpCcZk3RAwtwLmXRyyc4kJBjBKqvfT_xQ99kLQe68w,5256
370
+ autocoder/sdk/constants.py,sha256=7kD_Q_yJ0tTGPZN32UBec-ImhJsg-vafJ8WSM_N_A2Y,2195
371
+ autocoder/sdk/example.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
372
+ autocoder/sdk/exceptions.py,sha256=O7ow2qfTRuHMyIHmtmDcxHsAuT-a6bxjYPhMH12684k,1861
373
+ autocoder/sdk/cli/__init__.py,sha256=MlNo4WIkWZ5hTOpEIuHrlLt8WkO-HC7R9jpjR6MXN5w,364
374
+ autocoder/sdk/cli/__main__.py,sha256=nuyZUMX4eHbdbfSMqf25qZbqnBm0J-3aK8fjJiPA9pE,625
375
+ autocoder/sdk/cli/completion_wrapper.py,sha256=dvrY1tDvYwPXpbD6EXBxkb5ByhEdtHcm3QIBoeuR5yo,869
376
+ autocoder/sdk/cli/formatters.py,sha256=XsSr7lL1I5ySh9tNmOduHhJwLt3WB8LnUC0Ua5_qd0Y,6552
377
+ autocoder/sdk/cli/handlers.py,sha256=YtAmrmIAeyUt1VFwbKrbChWzIkRY5hMKu-BVDG1d5LA,6095
378
+ autocoder/sdk/cli/install_completion.py,sha256=rjmbj5C0HCz_AqTpTe6mk5dVqCEq4O8AXD8RyC4YkVI,10741
379
+ autocoder/sdk/cli/main.py,sha256=3RfZwshtYf4j9yOBPOebWXoPAluHtaS99HCkLILgcQM,10454
380
+ autocoder/sdk/cli/options.py,sha256=mbShv36ytTWvxS84hHvIiH3B3lXkCWfiDWCa4ONwN0k,2970
381
+ autocoder/sdk/core/__init__.py,sha256=sRY7QTYLef6TVc0uvip24U6gKn8WUBv6X8ZwkSC4Vm8,254
382
+ autocoder/sdk/core/auto_coder_core.py,sha256=d7Rcaa9LxG5Xve9Iz0v-9bGxltWzMjG0v4VLXzOW77w,36029
383
+ autocoder/sdk/core/bridge.py,sha256=NyRdseW7jpsKYAQMUOK-VVcUYc6MgAG2rbO_36ZaOe4,16918
384
+ autocoder/sdk/models/__init__.py,sha256=5YD4iKXzberhbrF587c1i9UmUbmK8QNRWZeDGM1Ktsk,307
385
+ autocoder/sdk/models/messages.py,sha256=lexCQlvy4doDvOJmJpK5xw8w85LDJ4xAYvJFEiGJ068,6454
386
+ autocoder/sdk/models/options.py,sha256=aspVyCmJhDDSUVpcHthhCxKtiUVIxykj26bo0Y3kjz0,6696
387
+ autocoder/sdk/models/responses.py,sha256=EYenSbaXi1dg5Qkj9hHwyD5L3LK427lhHrExT_mEHRo,9612
388
+ autocoder/sdk/session/__init__.py,sha256=-M3XzeIF0jOdnZLL2IX0u82iatnTQnTF8agZzC4ffpk,263
389
+ autocoder/sdk/session/session.py,sha256=GjyiySEiJxH227wBJa-w1hopU3l_dAKVd64uOdDFGqk,2427
390
+ autocoder/sdk/session/session_manager.py,sha256=CoX0EwZFfjcxlwxdavbk92OnB0ltiwKcybwvebiMmXo,1041
391
+ autocoder/sdk/utils/__init__.py,sha256=7qSvI9_pYt2rcQKWficsOMr_YF-EbhUszIboV98XNnM,470
392
+ autocoder/sdk/utils/formatters.py,sha256=b_Dy507eZ-olQBxBtLmdDPSPMT-1lG3hDONy4mxB8DE,5404
393
+ autocoder/sdk/utils/io_utils.py,sha256=fV2pIm1yEhDoeHpUIocN5PxaI0qXtQqIRJJ64enVc2I,5609
394
+ autocoder/sdk/utils/validators.py,sha256=3Z2qSKTJmmKlMizb3KRrJI6b2-HmTAlidE8gTAxMA28,7252
341
395
  autocoder/shadows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
342
396
  autocoder/shadows/shadow_manager.py,sha256=atY6d9Si4twe3pqQ56SjMje5W1VxamPSZs_WzQtAQvM,19165
343
397
  autocoder/suffixproject/__init__.py,sha256=Rew-M9W4pgO9cvw9UCdrc6QVCPdBhVcIpPBnJxrLJ3M,10374
@@ -364,9 +418,8 @@ autocoder/utils/types.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
364
418
  autocoder/utils/auto_coder_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
365
419
  autocoder/utils/auto_coder_utils/chat_stream_out.py,sha256=t902pKxQ5xM7zgIHiAOsTPLwxhE6VuvXAqPy751S7fg,14096
366
420
  autocoder/utils/chat_auto_coder_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
367
- auto_coder-0.1.398.dist-info/LICENSE,sha256=HrhfyXIkWY2tGFK11kg7vPCqhgh5DcxleloqdhrpyMY,11558
368
- auto_coder-0.1.398.dist-info/METADATA,sha256=gMl3uQJzGp-7yiM6mShw2dN8LEh-axSSYERvX70RKtU,2796
369
- auto_coder-0.1.398.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
370
- auto_coder-0.1.398.dist-info/entry_points.txt,sha256=0nzHtHH4pNcM7xq4EBA2toS28Qelrvcbrr59GqD_0Ak,350
371
- auto_coder-0.1.398.dist-info/top_level.txt,sha256=Jqc0_uJSw2GwoFQAa9iJxYns-2mWla-9ok_Y3Gcznjk,10
372
- auto_coder-0.1.398.dist-info/RECORD,,
421
+ auto_coder-0.1.400.dist-info/METADATA,sha256=Na15y0ac7sMBJHwYsmqXXYpSxYpWRAi2Ui7uuNaheLY,7935
422
+ auto_coder-0.1.400.dist-info/WHEEL,sha256=lTU6B6eIfYoiQJTZNc-fyaR6BpL6ehTzU3xGYxn2n8k,91
423
+ auto_coder-0.1.400.dist-info/entry_points.txt,sha256=8lbxiJQDA1WWkn9FHNri1V2HJhEc7oCfBzAV_EkGrZ0,430
424
+ auto_coder-0.1.400.dist-info/top_level.txt,sha256=Jqc0_uJSw2GwoFQAa9iJxYns-2mWla-9ok_Y3Gcznjk,10
425
+ auto_coder-0.1.400.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.1.0)
2
+ Generator: setuptools (78.1.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -2,7 +2,9 @@
2
2
  auto-coder = autocoder.auto_coder:main
3
3
  auto-coder-serve = autocoder.auto_coder_server:main
4
4
  auto-coder.chat = autocoder.chat_auto_coder:main
5
+ auto-coder.cli = autocoder.sdk.cli:main
5
6
  auto-coder.core = autocoder.auto_coder:main
6
7
  auto-coder.rag = autocoder.auto_coder_rag:main
8
+ auto-coder.run = autocoder.sdk.cli:main
7
9
  auto-coder.serve = autocoder.auto_coder_server:main
8
10
  chat-auto-coder = autocoder.chat_auto_coder:main
@@ -847,7 +847,7 @@ class BaseAgent(ABC):
847
847
  logger.info(f"Completion result: {tool_obj.result[:50]}...")
848
848
  completion_event = CompletionEvent(completion=tool_obj, completion_xml=tool_xml)
849
849
  logger.info(
850
- "AgenticEdit analyze loop finished due to AttemptCompletion.")
850
+ "Agentic analyze loop finished due to AttemptCompletion.")
851
851
  save_formatted_log(self.args.source_dir, json.dumps(conversations, ensure_ascii=False), "agentic_conversation")
852
852
  mark_event_should_finish = True
853
853
  should_yield_completion_event = True
@@ -965,7 +965,7 @@ class BaseAgent(ABC):
965
965
  logger.info("Continuing the LLM interaction loop without breaking")
966
966
  continue
967
967
 
968
- logger.info(f"AgenticEdit analyze loop finished after {iteration_count} iterations.")
968
+ logger.info(f"Agentic analyze loop finished after {iteration_count} iterations.")
969
969
  save_formatted_log(self.args.source_dir, json.dumps(conversations, ensure_ascii=False), "agentic_conversation")
970
970
 
971
971
  def stream_and_parse_llm_response(
@@ -227,7 +227,7 @@ class ReplaceInFileToolResolver(BaseToolResolver):
227
227
  total=len(parsed_blocks),
228
228
  file_path=file_path)
229
229
 
230
- # 变更跟踪,回调AgenticEdit
230
+ # 变更跟踪,回调Agent
231
231
  if self.agent:
232
232
  rel_path = os.path.relpath(abs_file_path, abs_project_dir)
233
233
  self.agent.record_file_change(rel_path, "modified", diff=diff_content, content=current_content)