jarvis-ai-assistant 0.1.161__py3-none-any.whl → 0.1.163__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 jarvis-ai-assistant might be problematic. Click here for more details.
- jarvis/__init__.py +1 -1
- jarvis/jarvis_agent/__init__.py +24 -6
- jarvis/jarvis_agent/jarvis.py +1 -2
- jarvis/jarvis_code_agent/code_agent.py +126 -159
- jarvis/jarvis_dev/main.py +17 -4
- jarvis/jarvis_git_details/main.py +2 -1
- jarvis/jarvis_git_utils/git_commiter.py +2 -3
- jarvis/jarvis_multi_agent/__init__.py +2 -3
- jarvis/jarvis_platform/base.py +0 -2
- jarvis/jarvis_platform/yuanbao.py +1 -0
- jarvis/jarvis_tools/edit_file.py +279 -0
- jarvis/jarvis_tools/file_operation.py +0 -2
- jarvis/jarvis_tools/read_code.py +0 -2
- jarvis/jarvis_tools/rewrite_file.py +183 -0
- jarvis/jarvis_utils/git_utils.py +144 -0
- jarvis/jarvis_utils/globals.py +0 -29
- jarvis/jarvis_utils/methodology.py +15 -9
- {jarvis_ai_assistant-0.1.161.dist-info → jarvis_ai_assistant-0.1.163.dist-info}/METADATA +3 -1
- {jarvis_ai_assistant-0.1.161.dist-info → jarvis_ai_assistant-0.1.163.dist-info}/RECORD +23 -22
- {jarvis_ai_assistant-0.1.161.dist-info → jarvis_ai_assistant-0.1.163.dist-info}/WHEEL +1 -1
- jarvis/jarvis_agent/patch.py +0 -617
- {jarvis_ai_assistant-0.1.161.dist-info → jarvis_ai_assistant-0.1.163.dist-info}/entry_points.txt +0 -0
- {jarvis_ai_assistant-0.1.161.dist-info → jarvis_ai_assistant-0.1.163.dist-info}/licenses/LICENSE +0 -0
- {jarvis_ai_assistant-0.1.161.dist-info → jarvis_ai_assistant-0.1.163.dist-info}/top_level.txt +0 -0
jarvis/jarvis_utils/globals.py
CHANGED
|
@@ -17,7 +17,6 @@ colorama.init()
|
|
|
17
17
|
os.environ["TOKENIZERS_PARALLELISM"] = "false"
|
|
18
18
|
# 全局代理管理
|
|
19
19
|
global_agents: Set[str] = set()
|
|
20
|
-
global_read_files: Dict[str, Dict[str, int]] = {}
|
|
21
20
|
current_agent_name: str = ""
|
|
22
21
|
# 使用自定义主题配置rich控制台
|
|
23
22
|
custom_theme = Theme({
|
|
@@ -81,31 +80,3 @@ def delete_agent(agent_name: str) -> None:
|
|
|
81
80
|
global_agents.remove(agent_name)
|
|
82
81
|
global current_agent_name
|
|
83
82
|
current_agent_name = ""
|
|
84
|
-
|
|
85
|
-
def add_read_file_record(file_path: str):
|
|
86
|
-
if current_agent_name not in global_read_files:
|
|
87
|
-
global_read_files[current_agent_name] = {}
|
|
88
|
-
global_read_files[current_agent_name][file_path] = 10 # 初始计数设为10
|
|
89
|
-
|
|
90
|
-
def has_read_file(file_path: str) -> bool:
|
|
91
|
-
return not os.path.exists(file_path) or (
|
|
92
|
-
current_agent_name in global_read_files
|
|
93
|
-
and file_path in global_read_files[current_agent_name]
|
|
94
|
-
)
|
|
95
|
-
|
|
96
|
-
def clear_read_file_record():
|
|
97
|
-
global_read_files.pop(current_agent_name, None)
|
|
98
|
-
|
|
99
|
-
def decrease_read_file_counts():
|
|
100
|
-
"""减少当前agent的所有文件读取计数,删除计数为0的记录"""
|
|
101
|
-
if current_agent_name in global_read_files:
|
|
102
|
-
to_delete = []
|
|
103
|
-
for file_path, count in global_read_files[current_agent_name].items():
|
|
104
|
-
count -= 1
|
|
105
|
-
if count <= 0:
|
|
106
|
-
to_delete.append(file_path)
|
|
107
|
-
else:
|
|
108
|
-
global_read_files[current_agent_name][file_path] = count
|
|
109
|
-
|
|
110
|
-
for file_path in to_delete:
|
|
111
|
-
global_read_files[current_agent_name].pop(file_path, None)
|
|
@@ -135,14 +135,16 @@ def load_methodology(user_input: str) -> str:
|
|
|
135
135
|
|
|
136
136
|
# 添加用户输入和输出要求
|
|
137
137
|
full_content += f"""
|
|
138
|
-
|
|
138
|
+
请根据以上方法论内容,规划/总结出以下用户需求的执行步骤: {user_input}
|
|
139
139
|
|
|
140
140
|
请按以下格式回复:
|
|
141
141
|
### 与该任务/需求相关的方法论
|
|
142
142
|
1. [方法论名字]
|
|
143
143
|
2. [方法论名字]
|
|
144
|
-
###
|
|
145
|
-
[
|
|
144
|
+
### 根据以上方法论,规划/总结出执行步骤
|
|
145
|
+
1. [步骤1]
|
|
146
|
+
2. [步骤2]
|
|
147
|
+
3. [步骤3]
|
|
146
148
|
|
|
147
149
|
如果没有匹配的方法论,请输出:没有历史方法论可参考
|
|
148
150
|
除以上要求外,不要输出任何内容
|
|
@@ -172,14 +174,16 @@ def load_methodology(user_input: str) -> str:
|
|
|
172
174
|
if upload_success:
|
|
173
175
|
# 使用上传的文件生成摘要
|
|
174
176
|
return platform.chat_until_success(base_prompt + f"""
|
|
175
|
-
|
|
177
|
+
请根据已上传的方法论文件内容,规划/总结出以下用户需求的执行步骤: {user_input}
|
|
176
178
|
|
|
177
179
|
请按以下格式回复:
|
|
178
180
|
### 与该任务/需求相关的方法论
|
|
179
181
|
1. [方法论名字]
|
|
180
182
|
2. [方法论名字]
|
|
181
|
-
###
|
|
182
|
-
[
|
|
183
|
+
### 根据以上方法论,规划/总结出执行步骤
|
|
184
|
+
1. [步骤1]
|
|
185
|
+
2. [步骤2]
|
|
186
|
+
3. [步骤3]
|
|
183
187
|
|
|
184
188
|
如果没有匹配的方法论,请输出:没有历史方法论可参考
|
|
185
189
|
除以上要求外,不要输出任何内容
|
|
@@ -187,14 +191,16 @@ def load_methodology(user_input: str) -> str:
|
|
|
187
191
|
elif hasattr(platform, 'chat_big_content'):
|
|
188
192
|
# 如果上传失败但支持大内容处理,使用chat_big_content
|
|
189
193
|
return platform.chat_big_content(full_content, base_prompt + f"""
|
|
190
|
-
|
|
194
|
+
请根据以上方法论内容,规划/总结出以下用户需求的执行步骤: {user_input}
|
|
191
195
|
|
|
192
196
|
请按以下格式回复:
|
|
193
197
|
### 与该任务/需求相关的方法论
|
|
194
198
|
1. [方法论名字]
|
|
195
199
|
2. [方法论名字]
|
|
196
|
-
###
|
|
197
|
-
[
|
|
200
|
+
### 根据以上方法论,规划/总结出执行步骤
|
|
201
|
+
1. [步骤1]
|
|
202
|
+
2. [步骤2]
|
|
203
|
+
3. [步骤3]
|
|
198
204
|
|
|
199
205
|
如果没有匹配的方法论,请输出:没有历史方法论可参考
|
|
200
206
|
除以上要求外,不要输出任何内容
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: jarvis-ai-assistant
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.163
|
|
4
4
|
Summary: Jarvis: An AI assistant that uses tools to interact with the system
|
|
5
5
|
Home-page: https://github.com/skyfireitdiy/Jarvis
|
|
6
6
|
Author: skyfire
|
|
@@ -216,6 +216,8 @@ jarvis-methodology --help
|
|
|
216
216
|
| ask_codebase | 智能代码库查询和分析,用于定位功能所在文件和理解单点实现,适合查询特定功能位置和实现原理 |
|
|
217
217
|
| ask_user | 交互式用户输入收集 |
|
|
218
218
|
| chdir | 更改当前工作目录 |
|
|
219
|
+
| rewrite_file | 文件重写工具,用于完全重写或创建文件,提供完整的文件内容替换 |
|
|
220
|
+
| edit_file | 代码编辑工具,用于精确修改文件内容,支持搜索替换方式编辑 |
|
|
219
221
|
| code_plan | 理解需求并制定详细的代码修改计划,在修改前获取用户确认 |
|
|
220
222
|
| create_code_agent | 代码开发工具,当需要修改代码时使用 |
|
|
221
223
|
| create_sub_agent | 创建子代理以处理特定任务,子代理将生成任务总结报告 |
|
|
@@ -1,14 +1,13 @@
|
|
|
1
|
-
jarvis/__init__.py,sha256=
|
|
2
|
-
jarvis/jarvis_agent/__init__.py,sha256=
|
|
1
|
+
jarvis/__init__.py,sha256=P6iAjduKUrS0ylTRp0t78ffHOL40GFLlKQOFhIlYX5U,50
|
|
2
|
+
jarvis/jarvis_agent/__init__.py,sha256=7rNz-HE8vDZMifWXgCiOLGwUQ4LIgC7If6Axl9UKUvM,25343
|
|
3
3
|
jarvis/jarvis_agent/builtin_input_handler.py,sha256=3rRA-7v_VUSFG1s7tTKhriq9vv0nsa3t69ReV0xH5gs,1505
|
|
4
4
|
jarvis/jarvis_agent/file_input_handler.py,sha256=88VqJLe3oO9GtIRsqyx3KwZl10Apob2ddFMH3HQ2RMg,3413
|
|
5
|
-
jarvis/jarvis_agent/jarvis.py,sha256=
|
|
5
|
+
jarvis/jarvis_agent/jarvis.py,sha256=EQDK7CEfoJXg-KkZ7DGDi0lALauFR4tPRvW2O-CxJAQ,5795
|
|
6
6
|
jarvis/jarvis_agent/main.py,sha256=Jlw_Tofh2C-sMVnkeOZBrwWJOWNH3IhsKDUn-WBlgU8,2602
|
|
7
7
|
jarvis/jarvis_agent/output_handler.py,sha256=4limQ-Kf-YYvQjT5SMjJIyyvD1DVG8tINv1A_qbv4ho,405
|
|
8
|
-
jarvis/jarvis_agent/patch.py,sha256=9wUPtnH_C1WYHWnWBT_it6pI2-zrhGIb0xYyNkLgbFI,23744
|
|
9
8
|
jarvis/jarvis_agent/shell_input_handler.py,sha256=9IoGQCe6FF4HA2V5S11q63AtnWDZFpNeRd3hcqCAlBw,1237
|
|
10
9
|
jarvis/jarvis_code_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
jarvis/jarvis_code_agent/code_agent.py,sha256=
|
|
10
|
+
jarvis/jarvis_code_agent/code_agent.py,sha256=V8DTvmno0OqQoX9P1NwkQT2q8Fis0i7xOKkdiXLxXG4,18007
|
|
12
11
|
jarvis/jarvis_code_analysis/code_review.py,sha256=gB9Xo0-FT6zciDzZb3jF6zxxWA_Aj8QU5008Tmu_Tr4,30192
|
|
13
12
|
jarvis/jarvis_code_analysis/checklists/__init__.py,sha256=PCjlyxLa939613cAzS7pfEPgP57setO-1RvcdzzPivw,54
|
|
14
13
|
jarvis/jarvis_code_analysis/checklists/c_cpp.py,sha256=8lfWmhImAxeTBdHPOgVXDjMllaq280Qki1ZOOSDBnvk,1293
|
|
@@ -30,12 +29,12 @@ jarvis/jarvis_code_analysis/checklists/shell.py,sha256=UBtGhi3d5sIhyUSGmDckYOXwp
|
|
|
30
29
|
jarvis/jarvis_code_analysis/checklists/sql.py,sha256=-bGfYhaFJyHrbcJrUMbkMyPCNVbk8UljNqebqVJJKxM,2331
|
|
31
30
|
jarvis/jarvis_code_analysis/checklists/swift.py,sha256=d-zPPbM_J1G8fgZ2M2-ASQbIxEocsdL1owL4Z2PCnOc,2542
|
|
32
31
|
jarvis/jarvis_code_analysis/checklists/web.py,sha256=phdvLGqRHNijA0OyEwVtgHgz1Hi4ldtJJscOhEQvbSQ,3919
|
|
33
|
-
jarvis/jarvis_dev/main.py,sha256=
|
|
32
|
+
jarvis/jarvis_dev/main.py,sha256=n3FAE08MKulZQFBSFmPIgRMBrpVtjAPGn6kqDf7kLTU,42928
|
|
34
33
|
jarvis/jarvis_git_details/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
35
|
-
jarvis/jarvis_git_details/main.py,sha256=
|
|
34
|
+
jarvis/jarvis_git_details/main.py,sha256=r-fbLt-k_-2MtnDDETsj7XIKUALtj9jvQtTq7UsKFqs,6152
|
|
36
35
|
jarvis/jarvis_git_squash/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
37
36
|
jarvis/jarvis_git_squash/main.py,sha256=xBNkAl7_8_pQC-C6RcUImA1mEU4KTqhjtA57rG_mMJ8,2179
|
|
38
|
-
jarvis/jarvis_git_utils/git_commiter.py,sha256=
|
|
37
|
+
jarvis/jarvis_git_utils/git_commiter.py,sha256=T94R496xYx17sjh4P3RtLqVYZkjB3xz8so8Q1aaei64,11963
|
|
39
38
|
jarvis/jarvis_lsp/base.py,sha256=f-76xgNijfQ4G3Q0t8IfOGtCu-q2TSQ7a_in6XwDb_8,2030
|
|
40
39
|
jarvis/jarvis_lsp/cpp.py,sha256=ekci2M9_UtkCSEe9__72h26Gat93r9_knL2VmFr8X5M,3141
|
|
41
40
|
jarvis/jarvis_lsp/go.py,sha256=sSypuQSP5X2YtrVMC8XCc5nXkgfG93SO7sC89lHzoR8,3458
|
|
@@ -46,14 +45,14 @@ jarvis/jarvis_mcp/__init__.py,sha256=gi74_Yz5nsEFhrAyCg1Ovxsj-hLweLjMGoOaceL2yx4
|
|
|
46
45
|
jarvis/jarvis_mcp/sse_mcp_client.py,sha256=Qd09ymgZmxQvaFUzz8I3AI46v6AqmMbGaF0iBbExAGY,23459
|
|
47
46
|
jarvis/jarvis_mcp/stdio_mcp_client.py,sha256=DtRO4dqBoxI8W0H0rVR5zxZLR0theKxRAQ-qzQE9qPg,11806
|
|
48
47
|
jarvis/jarvis_methodology/main.py,sha256=JrUqWKN0gQeiO_tY2Tn14pnT_jClqlNgpbBfoc-q8SM,11812
|
|
49
|
-
jarvis/jarvis_multi_agent/__init__.py,sha256=
|
|
48
|
+
jarvis/jarvis_multi_agent/__init__.py,sha256=NUhIadyIveGY95oaqG2VnWdY8WcWbFwGJ86jv7W0YKM,4319
|
|
50
49
|
jarvis/jarvis_multi_agent/main.py,sha256=aGuUC3YQmahabqwDwZXJjfQLYsZ3KIZdf8DZDlVNMe4,1543
|
|
51
50
|
jarvis/jarvis_platform/__init__.py,sha256=oD9i4ugZ2q6Hys3noLOvzPUUHqE2PJ_Je1r2dLLTscw,80
|
|
52
|
-
jarvis/jarvis_platform/base.py,sha256=
|
|
51
|
+
jarvis/jarvis_platform/base.py,sha256=SAWRl-WDjaBfcisvug3QHuTFRXe41iWRs0aoBe4QU_I,3989
|
|
53
52
|
jarvis/jarvis_platform/human.py,sha256=WCzvBtQUMN7ys4rQl6UT7Zdp4x5RaGv1U4vBx7ROxfo,2438
|
|
54
53
|
jarvis/jarvis_platform/kimi.py,sha256=Wno9PFZ92v9fjBHS29sFUwoc6gk6akD7yelVaWOpp-Q,16667
|
|
55
54
|
jarvis/jarvis_platform/registry.py,sha256=wvXTKXqAoW6GPaLKCPYhRB9QhVe1xfoVbVPBZAxl_uA,7716
|
|
56
|
-
jarvis/jarvis_platform/yuanbao.py,sha256=
|
|
55
|
+
jarvis/jarvis_platform/yuanbao.py,sha256=GVc5opeblu4CrPdxP0dnDr7v5ZtIaUHulaCMJnvQYrs,21812
|
|
57
56
|
jarvis/jarvis_platform_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
58
57
|
jarvis/jarvis_platform_manager/main.py,sha256=xJM86DQFyYDysMyQEJDAwB2oSYcWg_zi1mFld0zyquM,22572
|
|
59
58
|
jarvis/jarvis_smart_shell/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -66,15 +65,17 @@ jarvis/jarvis_tools/chdir.py,sha256=do_OdtabiH3lZcT_ynjSAX66XgH2gPl9mYiS7dMMDa8,
|
|
|
66
65
|
jarvis/jarvis_tools/code_plan.py,sha256=jNa2rs4J3Fam8Q_RHE2_QvVch21TPp-Zfv-W6iQ3D_0,7729
|
|
67
66
|
jarvis/jarvis_tools/create_code_agent.py,sha256=SRiQXZf57ViIDh6YSEmJkcoSKft0-y3iDfWF8f1bvZU,3387
|
|
68
67
|
jarvis/jarvis_tools/create_sub_agent.py,sha256=wGiHukvi58wb1AKW5beP7R8VvApOn8TOeGmtXsmcETE,3001
|
|
68
|
+
jarvis/jarvis_tools/edit_file.py,sha256=q5Sfvg8KS8cveQEDUn-O7CKqRQ1cr9D7iFrP608EgRI,12417
|
|
69
69
|
jarvis/jarvis_tools/execute_script.py,sha256=AeuC3yZIg-nBq_LTIyqxu-lG_uLG63lvwO28A6dRDYA,5715
|
|
70
70
|
jarvis/jarvis_tools/file_analyzer.py,sha256=EVl7WqGgZoaQXqEX8vLynpqZDE3aug1hVBJbycT7YiY,4844
|
|
71
|
-
jarvis/jarvis_tools/file_operation.py,sha256=
|
|
71
|
+
jarvis/jarvis_tools/file_operation.py,sha256=G2hTp569O-IYX_LEz7BCNlJ6QPK58Ofut5Zjg9ThPmE,9020
|
|
72
72
|
jarvis/jarvis_tools/find_methodology.py,sha256=TIUrezAql6wY3-wqnOPfGrO0tqS5N_-eU6YimCzaepM,2268
|
|
73
73
|
jarvis/jarvis_tools/lsp_get_diagnostics.py,sha256=IYqv8jQwSK71sZpDBRolSDnYii8t0M7fzLthhMYTeGk,5322
|
|
74
74
|
jarvis/jarvis_tools/methodology.py,sha256=gnlJojY4Dg5v9AAB5xcpKqpPIHs0tOYVtzTHkwOrWk0,5214
|
|
75
|
-
jarvis/jarvis_tools/read_code.py,sha256=
|
|
75
|
+
jarvis/jarvis_tools/read_code.py,sha256=ePlvWs9Xn6QR2wJcB0t2c5RrE1xwFUEd8cP1nwS_Zdk,5937
|
|
76
76
|
jarvis/jarvis_tools/read_webpage.py,sha256=ECcMnPnUpIeiSA1IRdUf7uLWMe34Ian9pExSxekwpcg,2025
|
|
77
77
|
jarvis/jarvis_tools/registry.py,sha256=6md5Fm-Uv0dhTHj0qubHRj0VQkNIcNn0A1cshBOQY5o,27109
|
|
78
|
+
jarvis/jarvis_tools/rewrite_file.py,sha256=0a8qycO7wSL7ls8f3oAwhc1HDFPa7vZsnuDWnDCQjEs,6973
|
|
78
79
|
jarvis/jarvis_tools/search_web.py,sha256=p1oahjSmSeBO9ZzgWkxIHsfcAGah22ju0xipXmuqnzg,759
|
|
79
80
|
jarvis/jarvis_tools/virtual_tty.py,sha256=Rpn9VXUG17LQsY87F_O6UCjN_opXB05mpwozxYf-xVI,16372
|
|
80
81
|
jarvis/jarvis_utils/__init__.py,sha256=KMg-KY5rZIhGTeOD5e2Xo5CU7DX1DUz4ULWAaTQ-ZNw,825
|
|
@@ -82,16 +83,16 @@ jarvis/jarvis_utils/builtin_replace_map.py,sha256=Dt8YL4Sk5uALTMPT_n-lhshRWvFWPR
|
|
|
82
83
|
jarvis/jarvis_utils/config.py,sha256=iKlaVzwkSltjtFNGDrANt1PETYED6pDKrDphh3yD1eE,4059
|
|
83
84
|
jarvis/jarvis_utils/embedding.py,sha256=_Q-VurYHQZSsyISClTFjadDaNqNPBMqJe58lMM6bsVs,6991
|
|
84
85
|
jarvis/jarvis_utils/file_processors.py,sha256=oNtVlz2JHcQ60NS6sgI-VsvYXOnsQgFUEVenznCXHC4,2952
|
|
85
|
-
jarvis/jarvis_utils/git_utils.py,sha256=
|
|
86
|
-
jarvis/jarvis_utils/globals.py,sha256=
|
|
86
|
+
jarvis/jarvis_utils/git_utils.py,sha256=YOvtxZbM1DAsOoFIj06aEaAFG-npqg5yr1dHzOS3lX0,9956
|
|
87
|
+
jarvis/jarvis_utils/globals.py,sha256=JZFhOUae33_IGTQ3MHB5Fu3PT3dVXk0uHFm7QAzC4X0,2251
|
|
87
88
|
jarvis/jarvis_utils/input.py,sha256=3mQO_Ys1DGQQWCrw_zD9hnTF4Xd6vyQUrer8IastzvQ,7408
|
|
88
|
-
jarvis/jarvis_utils/methodology.py,sha256=
|
|
89
|
+
jarvis/jarvis_utils/methodology.py,sha256=SiCHhv9n23njOwznMIpesdsbTPfUbWsoWDTta-ga5GI,7795
|
|
89
90
|
jarvis/jarvis_utils/output.py,sha256=BmWdB1bmizv0xfU4Z___9p_xQodorriIcEgADVq9fk0,8416
|
|
90
91
|
jarvis/jarvis_utils/tag.py,sha256=YtXBYuZWy8j8YbeQX2qRrHRQl6Gp2Vt7W4p-2yjo0a4,405
|
|
91
92
|
jarvis/jarvis_utils/utils.py,sha256=neokG_C9Djw6shwLcBxpQmRF5KFp9P6v52bMJMEFozg,4487
|
|
92
|
-
jarvis_ai_assistant-0.1.
|
|
93
|
-
jarvis_ai_assistant-0.1.
|
|
94
|
-
jarvis_ai_assistant-0.1.
|
|
95
|
-
jarvis_ai_assistant-0.1.
|
|
96
|
-
jarvis_ai_assistant-0.1.
|
|
97
|
-
jarvis_ai_assistant-0.1.
|
|
93
|
+
jarvis_ai_assistant-0.1.163.dist-info/licenses/LICENSE,sha256=AGgVgQmTqFvaztRtCAXsAMryUymB18gZif7_l2e1XOg,1063
|
|
94
|
+
jarvis_ai_assistant-0.1.163.dist-info/METADATA,sha256=KAGj-vobdMm-nbK6HoSQxkPgYUaPPQX5V_ryvqocvPY,12880
|
|
95
|
+
jarvis_ai_assistant-0.1.163.dist-info/WHEEL,sha256=DnLRTWE75wApRYVsjgc6wsVswC54sMSJhAEd4xhDpBk,91
|
|
96
|
+
jarvis_ai_assistant-0.1.163.dist-info/entry_points.txt,sha256=cKz_9SEpOvElTubKPMZMAdskD4GHz-NyKWRNssIVAWE,973
|
|
97
|
+
jarvis_ai_assistant-0.1.163.dist-info/top_level.txt,sha256=1BOxyWfzOP_ZXj8rVTDnNCJ92bBGB0rwq8N1PCpoMIs,7
|
|
98
|
+
jarvis_ai_assistant-0.1.163.dist-info/RECORD,,
|