auto-coder 0.1.398__py3-none-any.whl → 0.1.399__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.399.dist-info/METADATA +396 -0
- {auto_coder-0.1.398.dist-info → auto_coder-0.1.399.dist-info}/RECORD +62 -28
- {auto_coder-0.1.398.dist-info → auto_coder-0.1.399.dist-info}/WHEEL +1 -1
- {auto_coder-0.1.398.dist-info → auto_coder-0.1.399.dist-info}/entry_points.txt +2 -0
- autocoder/agent/base_agentic/base_agent.py +2 -2
- autocoder/agent/base_agentic/tools/replace_in_file_tool_resolver.py +1 -1
- autocoder/agent/entry_command_agent/__init__.py +29 -0
- autocoder/agent/entry_command_agent/auto_tool.py +61 -0
- autocoder/agent/entry_command_agent/chat.py +475 -0
- autocoder/agent/entry_command_agent/designer.py +53 -0
- autocoder/agent/entry_command_agent/generate_command.py +50 -0
- autocoder/agent/entry_command_agent/project_reader.py +58 -0
- autocoder/agent/entry_command_agent/voice2text.py +71 -0
- autocoder/auto_coder.py +23 -548
- autocoder/auto_coder_runner.py +510 -8
- autocoder/chat/rules_command.py +1 -1
- autocoder/chat_auto_coder.py +6 -1
- autocoder/common/ac_style_command_parser/__init__.py +15 -0
- autocoder/common/ac_style_command_parser/example.py +7 -0
- autocoder/{command_parser.py → common/ac_style_command_parser/parser.py} +1 -33
- autocoder/common/ac_style_command_parser/test_parser.py +516 -0
- autocoder/common/command_completer_v2.py +1 -1
- autocoder/common/command_file_manager/examples.py +22 -8
- autocoder/common/command_file_manager/manager.py +37 -6
- autocoder/common/conversations/get_conversation_manager.py +143 -0
- autocoder/common/conversations/manager.py +122 -11
- autocoder/common/conversations/storage/index_manager.py +89 -0
- autocoder/common/v2/agent/agentic_edit.py +131 -18
- autocoder/common/v2/agent/agentic_edit_types.py +10 -0
- autocoder/common/v2/code_auto_generate_editblock.py +10 -2
- autocoder/dispacher/__init__.py +10 -0
- autocoder/rags.py +0 -27
- autocoder/run_context.py +1 -0
- autocoder/sdk/__init__.py +188 -0
- autocoder/sdk/cli/__init__.py +15 -0
- autocoder/sdk/cli/__main__.py +26 -0
- autocoder/sdk/cli/completion_wrapper.py +38 -0
- autocoder/sdk/cli/formatters.py +211 -0
- autocoder/sdk/cli/handlers.py +174 -0
- autocoder/sdk/cli/install_completion.py +301 -0
- autocoder/sdk/cli/main.py +284 -0
- autocoder/sdk/cli/options.py +72 -0
- autocoder/sdk/constants.py +102 -0
- autocoder/sdk/core/__init__.py +20 -0
- autocoder/sdk/core/auto_coder_core.py +867 -0
- autocoder/sdk/core/bridge.py +497 -0
- autocoder/sdk/example.py +0 -0
- autocoder/sdk/exceptions.py +72 -0
- autocoder/sdk/models/__init__.py +19 -0
- autocoder/sdk/models/messages.py +209 -0
- autocoder/sdk/models/options.py +194 -0
- autocoder/sdk/models/responses.py +311 -0
- autocoder/sdk/session/__init__.py +32 -0
- autocoder/sdk/session/session.py +106 -0
- autocoder/sdk/session/session_manager.py +56 -0
- autocoder/sdk/utils/__init__.py +24 -0
- autocoder/sdk/utils/formatters.py +216 -0
- autocoder/sdk/utils/io_utils.py +302 -0
- autocoder/sdk/utils/validators.py +287 -0
- autocoder/version.py +2 -1
- auto_coder-0.1.398.dist-info/METADATA +0 -111
- autocoder/common/conversations/compatibility.py +0 -303
- autocoder/common/conversations/conversation_manager.py +0 -502
- autocoder/common/conversations/example.py +0 -152
- {auto_coder-0.1.398.dist-info → auto_coder-0.1.399.dist-info/licenses}/LICENSE +0 -0
- {auto_coder-0.1.398.dist-info → auto_coder-0.1.399.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,396 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: auto-coder
|
|
3
|
+
Version: 0.1.399
|
|
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.399.dist-info/licenses/LICENSE,sha256=HrhfyXIkWY2tGFK11kg7vPCqhgh5DcxleloqdhrpyMY,11558
|
|
1
2
|
autocoder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
autocoder/auto_coder.py,sha256=
|
|
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=
|
|
5
|
+
autocoder/auto_coder_runner.py,sha256=rxdIIwx_3g6fviayIumqndmerhUeZscxPSQ6JJD1dAc,134949
|
|
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=
|
|
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=
|
|
14
|
-
autocoder/run_context.py,sha256=
|
|
15
|
-
autocoder/version.py,sha256=
|
|
13
|
+
autocoder/rags.py,sha256=3hn8cUUdncE7FABV9RPNLxhRzLnIxC8IPcBXnEvE4g0,11955
|
|
14
|
+
autocoder/run_context.py,sha256=_IFy1OdnLasQvbDhlf1SUfQKJr4BPCaiRubldKFnVDo,1660
|
|
15
|
+
autocoder/version.py,sha256=cS5vpZvx9pqwNV2AK8SrcK1waB4WQiuCzAdvjdyqiaU,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=
|
|
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=
|
|
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=
|
|
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
|
|
@@ -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=
|
|
92
|
+
autocoder/common/command_completer_v2.py,sha256=Uqkg4XelH3wg7EyJMvxXRxYaKbWSev7ufSzYaKzcEOI,32371
|
|
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=j1FHh5e1--s77hlKN2g_KQDjbEvVkD4I6Vl1J1eLo4I,8853
|
|
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=
|
|
131
|
-
autocoder/common/command_file_manager/manager.py,sha256=
|
|
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/
|
|
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=
|
|
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
|
|
@@ -186,7 +195,7 @@ autocoder/common/v2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
|
|
|
186
195
|
autocoder/common/v2/code_agentic_editblock_manager.py,sha256=pAh918YMgmLenXmNKXlmDPgKyVJjOuk69901VEEQHm4,34980
|
|
187
196
|
autocoder/common/v2/code_auto_generate.py,sha256=PAySLU8ZnpdF8GelwSCiEbzv7sBbn-Vhakinf4i6udE,11646
|
|
188
197
|
autocoder/common/v2/code_auto_generate_diff.py,sha256=RWMJHxpQyD86ZOw0yYBFlKJLRsrrAWwRLJwu2rHfNXU,15213
|
|
189
|
-
autocoder/common/v2/code_auto_generate_editblock.py,sha256=
|
|
198
|
+
autocoder/common/v2/code_auto_generate_editblock.py,sha256=U2OBPA15C8LBNqpRtyd27XPD7BZYh_HBY-6LVZ073_s,16079
|
|
190
199
|
autocoder/common/v2/code_auto_generate_strict_diff.py,sha256=dbGyjBYWvjl_xT27Zxaq6Cgl7JuPZwYEGngPAyq3j9g,18066
|
|
191
200
|
autocoder/common/v2/code_auto_merge.py,sha256=FZHrIZyFUkFmv4EbproXfIIUfGx_L3EPfvjldsYlplI,9345
|
|
192
201
|
autocoder/common/v2/code_auto_merge_diff.py,sha256=DcljWrtlejq2cb9Gj-jBjvUQzRbCE2uMNGg8SBOhEnk,19271
|
|
@@ -197,8 +206,8 @@ autocoder/common/v2/code_editblock_manager.py,sha256=DMwJw-FAM6VyaBQV3p4xespHpgZ
|
|
|
197
206
|
autocoder/common/v2/code_manager.py,sha256=C403bS-f6urixwitlKHcml-J03hci-UyNwHJOqBiY6Q,9182
|
|
198
207
|
autocoder/common/v2/code_strict_diff_manager.py,sha256=Bys7tFAq4G03R1zUZuxrszBTvP4QB96jIw2y5BDLyRM,9424
|
|
199
208
|
autocoder/common/v2/agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
200
|
-
autocoder/common/v2/agent/agentic_edit.py,sha256=
|
|
201
|
-
autocoder/common/v2/agent/agentic_edit_types.py,sha256=
|
|
209
|
+
autocoder/common/v2/agent/agentic_edit.py,sha256=UZGFBUxh8DlAKmYmKSQIONBLJdtCguHDaWz11DRhNgc,136550
|
|
210
|
+
autocoder/common/v2/agent/agentic_edit_types.py,sha256=kkhNjDMnsPArdtBxDPeo_cZj-SWPqMGfYFbLL5WawLM,5322
|
|
202
211
|
autocoder/common/v2/agent/agentic_tool_display.py,sha256=-a-JTQLc4q03E_rdIILKMI0B6DHN-5gcGlrqq-mBYK4,7239
|
|
203
212
|
autocoder/common/v2/agent/agentic_edit_tools/__init__.py,sha256=5I_N3xeekdGQJtOI6TxZ4LkwwtP0CQ7stu6SBaF9UeQ,1417
|
|
204
213
|
autocoder/common/v2/agent/agentic_edit_tools/ask_followup_question_tool_resolver.py,sha256=-HFXo3RR6CH8xXjDaE2mYV4XasTLAmvXe6WutL7qbwA,3208
|
|
@@ -236,7 +245,7 @@ autocoder/data/byzerllm.md,sha256=SGCMpEaUQ0ysPxQsgzyyp5sgvEr8dZsxEGAfVcPBIq0,47
|
|
|
236
245
|
autocoder/data/tokenizer.json,sha256=7Lb5_DaYlDRvBRH0B0ynXO5c1fOwbQLxujX805-OEh0,7847602
|
|
237
246
|
autocoder/db/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
238
247
|
autocoder/db/store.py,sha256=tFT66bP2ZKIqZip-uhLkHRSLaaOAUUDZfozJwcqix3c,1908
|
|
239
|
-
autocoder/dispacher/__init__.py,sha256=
|
|
248
|
+
autocoder/dispacher/__init__.py,sha256=joonDLhct4pKgkGdc9F5JMqVHafUpzPo3fhl1DQicv8,1423
|
|
240
249
|
autocoder/dispacher/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
241
250
|
autocoder/dispacher/actions/action.py,sha256=lszFrNZOmmFMJC0QaIjS-OEE2du5i6a81NjuJaexamk,22765
|
|
242
251
|
autocoder/dispacher/actions/copilot.py,sha256=2nQzKt8Sr40mIDOizZWyl4ekCwaHYklvgGlVfvhOlFM,13106
|
|
@@ -338,6 +347,32 @@ autocoder/rag/tools/__init__.py,sha256=3U91ZI4wZh8UYYl_D11IyLxBLseemmPVfBnmh4ZzN
|
|
|
338
347
|
autocoder/rag/tools/recall_tool.py,sha256=z-EEyfeD1JR5Mdk9Obi3FJyW-5Q7ljH97Rtd_vlk-Tk,6487
|
|
339
348
|
autocoder/rag/tools/search_tool.py,sha256=HaIA-H66oJwUisk_mpDJQw28TgVHzNxA5JOBbX1y6q8,4702
|
|
340
349
|
autocoder/regexproject/__init__.py,sha256=QMXphSxjuv_LDIx0L_0jnnvCzMfmrOl0VMTVmXabeL0,8976
|
|
350
|
+
autocoder/sdk/__init__.py,sha256=nzpCcZk3RAwtwLmXRyyc4kJBjBKqvfT_xQ99kLQe68w,5256
|
|
351
|
+
autocoder/sdk/constants.py,sha256=7kD_Q_yJ0tTGPZN32UBec-ImhJsg-vafJ8WSM_N_A2Y,2195
|
|
352
|
+
autocoder/sdk/example.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
353
|
+
autocoder/sdk/exceptions.py,sha256=O7ow2qfTRuHMyIHmtmDcxHsAuT-a6bxjYPhMH12684k,1861
|
|
354
|
+
autocoder/sdk/cli/__init__.py,sha256=MlNo4WIkWZ5hTOpEIuHrlLt8WkO-HC7R9jpjR6MXN5w,364
|
|
355
|
+
autocoder/sdk/cli/__main__.py,sha256=nuyZUMX4eHbdbfSMqf25qZbqnBm0J-3aK8fjJiPA9pE,625
|
|
356
|
+
autocoder/sdk/cli/completion_wrapper.py,sha256=dvrY1tDvYwPXpbD6EXBxkb5ByhEdtHcm3QIBoeuR5yo,869
|
|
357
|
+
autocoder/sdk/cli/formatters.py,sha256=XsSr7lL1I5ySh9tNmOduHhJwLt3WB8LnUC0Ua5_qd0Y,6552
|
|
358
|
+
autocoder/sdk/cli/handlers.py,sha256=r3mdEqviIXjLYEt7XDpt54yFZAeasCnvAfUBIeH1AcQ,6063
|
|
359
|
+
autocoder/sdk/cli/install_completion.py,sha256=rjmbj5C0HCz_AqTpTe6mk5dVqCEq4O8AXD8RyC4YkVI,10741
|
|
360
|
+
autocoder/sdk/cli/main.py,sha256=KnkAuusr57lB4-FLWEeMKKB_G9TbBQG3JrCtlwa-Ir0,10323
|
|
361
|
+
autocoder/sdk/cli/options.py,sha256=AwDupKAePlkeWgh1BRfuoDYpL8cxxIT6LmfEnIFCh5w,2856
|
|
362
|
+
autocoder/sdk/core/__init__.py,sha256=sRY7QTYLef6TVc0uvip24U6gKn8WUBv6X8ZwkSC4Vm8,254
|
|
363
|
+
autocoder/sdk/core/auto_coder_core.py,sha256=4HLPO_3Tg1mIn5bs2m2287bmftP9DZVekiU2SI8z1f4,35515
|
|
364
|
+
autocoder/sdk/core/bridge.py,sha256=OnOfAMevrlf-qHDNHDItqYuDjD7pAjoe3EjXD0TLiXI,16833
|
|
365
|
+
autocoder/sdk/models/__init__.py,sha256=5YD4iKXzberhbrF587c1i9UmUbmK8QNRWZeDGM1Ktsk,307
|
|
366
|
+
autocoder/sdk/models/messages.py,sha256=lexCQlvy4doDvOJmJpK5xw8w85LDJ4xAYvJFEiGJ068,6454
|
|
367
|
+
autocoder/sdk/models/options.py,sha256=hxOJYF3LWCZp02eUzUn92DWT_T5NLOyyIifi_ZuOKoE,6512
|
|
368
|
+
autocoder/sdk/models/responses.py,sha256=EYenSbaXi1dg5Qkj9hHwyD5L3LK427lhHrExT_mEHRo,9612
|
|
369
|
+
autocoder/sdk/session/__init__.py,sha256=-M3XzeIF0jOdnZLL2IX0u82iatnTQnTF8agZzC4ffpk,263
|
|
370
|
+
autocoder/sdk/session/session.py,sha256=GjyiySEiJxH227wBJa-w1hopU3l_dAKVd64uOdDFGqk,2427
|
|
371
|
+
autocoder/sdk/session/session_manager.py,sha256=CoX0EwZFfjcxlwxdavbk92OnB0ltiwKcybwvebiMmXo,1041
|
|
372
|
+
autocoder/sdk/utils/__init__.py,sha256=7qSvI9_pYt2rcQKWficsOMr_YF-EbhUszIboV98XNnM,470
|
|
373
|
+
autocoder/sdk/utils/formatters.py,sha256=b_Dy507eZ-olQBxBtLmdDPSPMT-1lG3hDONy4mxB8DE,5404
|
|
374
|
+
autocoder/sdk/utils/io_utils.py,sha256=fV2pIm1yEhDoeHpUIocN5PxaI0qXtQqIRJJ64enVc2I,5609
|
|
375
|
+
autocoder/sdk/utils/validators.py,sha256=3Z2qSKTJmmKlMizb3KRrJI6b2-HmTAlidE8gTAxMA28,7252
|
|
341
376
|
autocoder/shadows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
342
377
|
autocoder/shadows/shadow_manager.py,sha256=atY6d9Si4twe3pqQ56SjMje5W1VxamPSZs_WzQtAQvM,19165
|
|
343
378
|
autocoder/suffixproject/__init__.py,sha256=Rew-M9W4pgO9cvw9UCdrc6QVCPdBhVcIpPBnJxrLJ3M,10374
|
|
@@ -364,9 +399,8 @@ autocoder/utils/types.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
364
399
|
autocoder/utils/auto_coder_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
365
400
|
autocoder/utils/auto_coder_utils/chat_stream_out.py,sha256=t902pKxQ5xM7zgIHiAOsTPLwxhE6VuvXAqPy751S7fg,14096
|
|
366
401
|
autocoder/utils/chat_auto_coder_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
367
|
-
auto_coder-0.1.
|
|
368
|
-
auto_coder-0.1.
|
|
369
|
-
auto_coder-0.1.
|
|
370
|
-
auto_coder-0.1.
|
|
371
|
-
auto_coder-0.1.
|
|
372
|
-
auto_coder-0.1.398.dist-info/RECORD,,
|
|
402
|
+
auto_coder-0.1.399.dist-info/METADATA,sha256=bDaUnu8rfmqphW1fECHmCK-NZWuVBVUuFxkhGnwEK2w,7935
|
|
403
|
+
auto_coder-0.1.399.dist-info/WHEEL,sha256=lTU6B6eIfYoiQJTZNc-fyaR6BpL6ehTzU3xGYxn2n8k,91
|
|
404
|
+
auto_coder-0.1.399.dist-info/entry_points.txt,sha256=8lbxiJQDA1WWkn9FHNri1V2HJhEc7oCfBzAV_EkGrZ0,430
|
|
405
|
+
auto_coder-0.1.399.dist-info/top_level.txt,sha256=Jqc0_uJSw2GwoFQAa9iJxYns-2mWla-9ok_Y3Gcznjk,10
|
|
406
|
+
auto_coder-0.1.399.dist-info/RECORD,,
|
|
@@ -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
|
-
"
|
|
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"
|
|
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
|
-
# 变更跟踪,回调
|
|
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)
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Entry Command Agent 模块
|
|
3
|
+
|
|
4
|
+
该模块包含各种入口命令的代理实现,用于处理不同类型的用户命令。
|
|
5
|
+
|
|
6
|
+
目前包含的代理:
|
|
7
|
+
- ChatAgent: 处理聊天命令的代理
|
|
8
|
+
- ProjectReaderAgent: 处理项目阅读命令的代理
|
|
9
|
+
- Voice2TextAgent: 处理语音转文字命令的代理
|
|
10
|
+
- GenerateCommandAgent: 处理命令生成的代理
|
|
11
|
+
- AutoToolAgent: 处理自动工具命令的代理
|
|
12
|
+
- DesignerAgent: 处理设计命令的代理
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
from .chat import ChatAgent
|
|
16
|
+
from .project_reader import ProjectReaderAgent
|
|
17
|
+
from .voice2text import Voice2TextAgent
|
|
18
|
+
from .generate_command import GenerateCommandAgent
|
|
19
|
+
from .auto_tool import AutoToolAgent
|
|
20
|
+
from .designer import DesignerAgent
|
|
21
|
+
|
|
22
|
+
__all__ = [
|
|
23
|
+
'ChatAgent',
|
|
24
|
+
'ProjectReaderAgent',
|
|
25
|
+
'Voice2TextAgent',
|
|
26
|
+
'GenerateCommandAgent',
|
|
27
|
+
'AutoToolAgent',
|
|
28
|
+
'DesignerAgent'
|
|
29
|
+
]
|