jarvis-ai-assistant 0.1.101__py3-none-any.whl → 0.1.102__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/agent.py +3 -24
- jarvis/jarvis_code_agent/main.py +1 -3
- jarvis/jarvis_github/main.py +232 -0
- jarvis/models/ai8.py +2 -3
- jarvis/models/oyi.py +1 -3
- jarvis/tools/registry.py +48 -40
- jarvis/utils.py +9 -124
- {jarvis_ai_assistant-0.1.101.dist-info → jarvis_ai_assistant-0.1.102.dist-info}/METADATA +1 -47
- {jarvis_ai_assistant-0.1.101.dist-info → jarvis_ai_assistant-0.1.102.dist-info}/RECORD +15 -20
- {jarvis_ai_assistant-0.1.101.dist-info → jarvis_ai_assistant-0.1.102.dist-info}/entry_points.txt +0 -3
- jarvis/jarvis_codebase/main.py +0 -875
- jarvis/jarvis_coder/main.py +0 -241
- jarvis/jarvis_coder/plan_generator.py +0 -145
- jarvis/jarvis_rag/__init__.py +0 -0
- jarvis/jarvis_rag/main.py +0 -822
- jarvis/tools/rag.py +0 -138
- /jarvis/{jarvis_codebase → jarvis_github}/__init__.py +0 -0
- {jarvis_ai_assistant-0.1.101.dist-info → jarvis_ai_assistant-0.1.102.dist-info}/LICENSE +0 -0
- {jarvis_ai_assistant-0.1.101.dist-info → jarvis_ai_assistant-0.1.102.dist-info}/WHEEL +0 -0
- {jarvis_ai_assistant-0.1.101.dist-info → jarvis_ai_assistant-0.1.102.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: jarvis-ai-assistant
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.102
|
|
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
|
|
@@ -46,14 +46,8 @@ Requires-Dist: prompt_toolkit>=3.0.0
|
|
|
46
46
|
Requires-Dist: openai>=1.20.0
|
|
47
47
|
Requires-Dist: playwright>=1.41.1
|
|
48
48
|
Requires-Dist: numpy>=1.24.0
|
|
49
|
-
Requires-Dist: faiss-cpu>=1.8.0
|
|
50
|
-
Requires-Dist: sentence-transformers>=2.2.2
|
|
51
49
|
Requires-Dist: bs4>=0.0.1
|
|
52
|
-
Requires-Dist: PyMuPDF>=1.21.0
|
|
53
|
-
Requires-Dist: python-docx>=0.8.11
|
|
54
|
-
Requires-Dist: tiktoken>=0.3.0
|
|
55
50
|
Requires-Dist: tqdm>=4.65.0
|
|
56
|
-
Requires-Dist: docx>=0.2.4
|
|
57
51
|
Requires-Dist: yaspin>=2.5.0
|
|
58
52
|
Provides-Extra: dev
|
|
59
53
|
Requires-Dist: pytest; extra == "dev"
|
|
@@ -154,27 +148,6 @@ Jarvis supports configuration through environment variables that can be set in t
|
|
|
154
148
|
jarvis
|
|
155
149
|
```
|
|
156
150
|
|
|
157
|
-
### Codebase Search
|
|
158
|
-
```bash
|
|
159
|
-
# Generate codebase index
|
|
160
|
-
jarvis-codebase --generate
|
|
161
|
-
|
|
162
|
-
# Search similar code
|
|
163
|
-
jarvis-codebase --search "your search query"
|
|
164
|
-
|
|
165
|
-
# Ask questions about codebase
|
|
166
|
-
jarvis-codebase --ask "your question"
|
|
167
|
-
```
|
|
168
|
-
|
|
169
|
-
### Document Analysis (RAG)
|
|
170
|
-
```bash
|
|
171
|
-
# Build document index
|
|
172
|
-
jarvis-rag --dir /path/to/documents --build
|
|
173
|
-
|
|
174
|
-
# Search documents
|
|
175
|
-
jarvis-rag --query "your search query"
|
|
176
|
-
```
|
|
177
|
-
|
|
178
151
|
### Search Tool
|
|
179
152
|
```bash
|
|
180
153
|
# Basic search
|
|
@@ -189,19 +162,6 @@ jarvis-search "your query" --max 3
|
|
|
189
162
|
|
|
190
163
|
## 🛠️ Tools
|
|
191
164
|
|
|
192
|
-
|
|
193
|
-
### Built-in Tools
|
|
194
|
-
|
|
195
|
-
| Tool | Description |
|
|
196
|
-
|------|-------------|
|
|
197
|
-
| execute_shell | Execute system commands and capture output |
|
|
198
|
-
| file_operation | File operations (read/write/append/delete) |
|
|
199
|
-
| generate_tool | AI-powered tool generation and integration |
|
|
200
|
-
| methodology | Experience accumulation and methodology management |
|
|
201
|
-
| create_sub_agent | Create specialized sub-agents for specific tasks |
|
|
202
|
-
| coder | Automatic code modification and generation tool |
|
|
203
|
-
| codebase | Codebase management and search tool |
|
|
204
|
-
|
|
205
165
|
### Tool Locations
|
|
206
166
|
- Built-in tools: `src/jarvis/tools/`
|
|
207
167
|
- User tools: `~/.jarvis/tools/`
|
|
@@ -214,27 +174,21 @@ jarvis-search "your query" --max 3
|
|
|
214
174
|
- Automatic code generation and integration
|
|
215
175
|
- Dynamic capability expansion through sub-agents
|
|
216
176
|
- Automatic code modification with version control
|
|
217
|
-
- Codebase indexing and semantic search
|
|
218
177
|
|
|
219
178
|
#### 2. Methodology Learning
|
|
220
179
|
- Automatic experience accumulation from interactions
|
|
221
180
|
- Pattern recognition and methodology extraction
|
|
222
181
|
- Continuous refinement through usage
|
|
223
182
|
- Code modification history tracking
|
|
224
|
-
- Codebase analysis and documentation generation
|
|
225
183
|
|
|
226
184
|
#### 3. Adaptive Problem Solving
|
|
227
185
|
- Context-aware sub-agent creation
|
|
228
186
|
- Dynamic tool composition
|
|
229
187
|
- Learning from execution feedback
|
|
230
|
-
- Codebase-aware problem solving
|
|
231
188
|
- Multi-model collaboration for complex tasks
|
|
232
189
|
|
|
233
190
|
#### 4. Code Intelligence
|
|
234
|
-
- Automatic codebase indexing
|
|
235
|
-
- Semantic code search
|
|
236
191
|
- Code modification with git integration
|
|
237
|
-
- Code analysis and documentation
|
|
238
192
|
- Multi-model code generation
|
|
239
193
|
|
|
240
194
|
## 🎯 Extending Jarvis
|
|
@@ -1,29 +1,25 @@
|
|
|
1
|
-
jarvis/__init__.py,sha256=
|
|
2
|
-
jarvis/agent.py,sha256=
|
|
3
|
-
jarvis/utils.py,sha256=
|
|
1
|
+
jarvis/__init__.py,sha256=Gi4_qXeI7FimxfYp4-9b34vvlAoyygoTuOD13Jxxb4U,51
|
|
2
|
+
jarvis/agent.py,sha256=sQdOpttUvXYM1jFNjlhXNrNbpFaKAzt5et2VvB2XluU,19899
|
|
3
|
+
jarvis/utils.py,sha256=Y_p-nVwQ43WDuTFyrE7wPNMHlrJ2rZwfTc4Gnd1cjyg,11306
|
|
4
4
|
jarvis/jarvis_code_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
-
jarvis/jarvis_code_agent/main.py,sha256=
|
|
6
|
-
jarvis/jarvis_codebase/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
-
jarvis/jarvis_codebase/main.py,sha256=rnA4rSyRmtVsKQ5HkQnNc57sZnT5sCBcmQFLWdzYJv8,36854
|
|
5
|
+
jarvis/jarvis_code_agent/main.py,sha256=jd9r6lpUF4kWeOvye8CjKLhAQm5H_Lq1m3xOXq_vDzQ,6939
|
|
8
6
|
jarvis/jarvis_coder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
7
|
jarvis/jarvis_coder/file_select.py,sha256=BobNj5Kirr6jSwy59LOghC3o8Uff1CwTXNtlTO-idEo,8475
|
|
10
8
|
jarvis/jarvis_coder/git_utils.py,sha256=R83iDYkDHIntQCd6p9g8Nne9oR5TVNhM-frd_2qR8Jo,5021
|
|
11
|
-
jarvis/jarvis_coder/main.py,sha256=jicy9IN_94Dp8hDubOJX8t5h3vAmciAiS3v34WrvJZc,8469
|
|
12
9
|
jarvis/jarvis_coder/patch_handler.py,sha256=NTNlVZ85uvVmtNNdwnQDPuCUYqEJJFL95ryZZauD2Dg,14876
|
|
13
|
-
jarvis/
|
|
10
|
+
jarvis/jarvis_github/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
jarvis/jarvis_github/main.py,sha256=yUvtNU9BqUSGbb4UxbiNcLcqzvNKEP0MAv_N-IaYunk,8671
|
|
14
12
|
jarvis/jarvis_platform/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
13
|
jarvis/jarvis_platform/main.py,sha256=h08SaaIRBhqX8yIp_mG9vSKZYVBrBVfcC9gDK4A45RQ,4961
|
|
16
|
-
jarvis/jarvis_rag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
|
-
jarvis/jarvis_rag/main.py,sha256=tp9skDCrassVTHRlbWJmA880CoF8OZTSFCiknoHRirU,33605
|
|
18
14
|
jarvis/jarvis_smart_shell/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
15
|
jarvis/jarvis_smart_shell/main.py,sha256=G03M39Bfwq8ieNZ8zoDbn0QeDs8Z9h2A0TxP8Hqf9GY,3951
|
|
20
16
|
jarvis/models/__init__.py,sha256=mrOt67nselz_H1gX9wdAO4y2DY5WPXzABqJbr5Des8k,63
|
|
21
|
-
jarvis/models/ai8.py,sha256=
|
|
17
|
+
jarvis/models/ai8.py,sha256=vEeORfmRzuIT9fQR4vuE4OIOga0ie3syUxQsD822q2w,11793
|
|
22
18
|
jarvis/models/base.py,sha256=nQ-rsJL1Z-gMev3TPoY7tYdwxhCJY8LG6_gtJ-maiW0,2181
|
|
23
19
|
jarvis/models/kimi.py,sha256=JSjSp_Hmmj_3bn0jxArE4lpG8jkQwhWx8qosjRMHdZE,16391
|
|
24
20
|
jarvis/models/ollama.py,sha256=LzEA4kbkw1KflQ1T__hkmXu4--6xUPho2NTnj_ZQe6k,5761
|
|
25
21
|
jarvis/models/openai.py,sha256=7AYKM0CKlI-tU5NtNdVaw5gobhgqSrXwGQLo5b2MJ7c,4404
|
|
26
|
-
jarvis/models/oyi.py,sha256=
|
|
22
|
+
jarvis/models/oyi.py,sha256=BFpf0RTIipwITAEOyVD2sG_3VKF4Q1FL2HWLrFirh0g,14344
|
|
27
23
|
jarvis/models/registry.py,sha256=SM-jPu9TMommz0Fr_WrXpQE4X24QGyH39h0FwEQ-CWU,9448
|
|
28
24
|
jarvis/tools/__init__.py,sha256=7Rqyj5hBAv5cWDVr5T9ZTZASO7ssBHeQNm2_4ZARdkA,72
|
|
29
25
|
jarvis/tools/ask_user.py,sha256=cSxFn8cOZGQYHtfBtXlbdVQ7mlgC1JZCFBylparWShE,2102
|
|
@@ -37,15 +33,14 @@ jarvis/tools/file_operation.py,sha256=Aq1EJA59AHR9XomxuxNiyLNon4p8w-Gk9iionl--od
|
|
|
37
33
|
jarvis/tools/find_files.py,sha256=MTqijsXO6uFghb79pGaHWsa1NTgjP07p333BvUgMt5s,3696
|
|
38
34
|
jarvis/tools/generate_tool.py,sha256=qhk73UFEPtMC-QfiWBUxnMhkgZMZM-esd0TdcFhWSmc,6181
|
|
39
35
|
jarvis/tools/methodology.py,sha256=f6rF6vw-qaSIuJUrLbZdsLqzXMmAaw1aCwvJuezRX8k,5586
|
|
40
|
-
jarvis/tools/rag.py,sha256=m_G4ct6SBLKKdUXfPkokK-qVlWeFCJ2B9J5IZhHXBXQ,4879
|
|
41
36
|
jarvis/tools/read_webpage.py,sha256=AqE9Og_OzwFYIHZDTnCe_gB-szcUXbVZh-xZat4WgOU,2467
|
|
42
|
-
jarvis/tools/registry.py,sha256=
|
|
37
|
+
jarvis/tools/registry.py,sha256=A0oF4LmUM2prGTTOiht-y9rGETH90brGhnGC5gDtLvU,11384
|
|
43
38
|
jarvis/tools/search.py,sha256=qf39Zm2Ad9-z4EyZKJrBCvZg1uqMeLuLQ9Zu8WB-TvI,9230
|
|
44
39
|
jarvis/tools/select_code_files.py,sha256=hJwfh_CnyOn4QOBuNpKh9AD7-iH92mj7FP-6EifSH0w,1875
|
|
45
40
|
jarvis/tools/thinker.py,sha256=-aWbjOjV3tGmYeIgAmyKVjd0teFs4ZK7mzPBA09R7hE,4847
|
|
46
|
-
jarvis_ai_assistant-0.1.
|
|
47
|
-
jarvis_ai_assistant-0.1.
|
|
48
|
-
jarvis_ai_assistant-0.1.
|
|
49
|
-
jarvis_ai_assistant-0.1.
|
|
50
|
-
jarvis_ai_assistant-0.1.
|
|
51
|
-
jarvis_ai_assistant-0.1.
|
|
41
|
+
jarvis_ai_assistant-0.1.102.dist-info/LICENSE,sha256=AGgVgQmTqFvaztRtCAXsAMryUymB18gZif7_l2e1XOg,1063
|
|
42
|
+
jarvis_ai_assistant-0.1.102.dist-info/METADATA,sha256=nrb2u09-wYl8oXVQVdv_fboHGDahaHPXWmz-G9YzShw,11473
|
|
43
|
+
jarvis_ai_assistant-0.1.102.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
44
|
+
jarvis_ai_assistant-0.1.102.dist-info/entry_points.txt,sha256=644e3D9ej4jGcfhYDuUjdU3VNel0H7VkZKGaRhHvvJI,250
|
|
45
|
+
jarvis_ai_assistant-0.1.102.dist-info/top_level.txt,sha256=1BOxyWfzOP_ZXj8rVTDnNCJ92bBGB0rwq8N1PCpoMIs,7
|
|
46
|
+
jarvis_ai_assistant-0.1.102.dist-info/RECORD,,
|
{jarvis_ai_assistant-0.1.101.dist-info → jarvis_ai_assistant-0.1.102.dist-info}/entry_points.txt
RENAMED
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
[console_scripts]
|
|
2
2
|
jarvis = jarvis.agent:main
|
|
3
3
|
jarvis-code-agent = jarvis.jarvis_code_agent.main:main
|
|
4
|
-
jarvis-codebase = jarvis.jarvis_codebase.main:main
|
|
5
|
-
jarvis-coder = jarvis.jarvis_coder.main:main
|
|
6
4
|
jarvis-platform = jarvis.jarvis_platform.main:main
|
|
7
|
-
jarvis-rag = jarvis.jarvis_rag.main:main
|
|
8
5
|
jarvis-smart-shell = jarvis.jarvis_smart_shell.main:main
|
|
9
6
|
jss = jarvis.jarvis_smart_shell.main:main
|