jarvis-ai-assistant 0.1.102__tar.gz → 0.1.104__tar.gz

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.

Files changed (70) hide show
  1. {jarvis_ai_assistant-0.1.102/src/jarvis_ai_assistant.egg-info → jarvis_ai_assistant-0.1.104}/PKG-INFO +107 -32
  2. {jarvis_ai_assistant-0.1.102 → jarvis_ai_assistant-0.1.104}/README.md +95 -30
  3. {jarvis_ai_assistant-0.1.102 → jarvis_ai_assistant-0.1.104}/pyproject.toml +18 -3
  4. {jarvis_ai_assistant-0.1.102 → jarvis_ai_assistant-0.1.104}/setup.py +18 -3
  5. {jarvis_ai_assistant-0.1.102 → jarvis_ai_assistant-0.1.104}/src/jarvis/__init__.py +1 -1
  6. {jarvis_ai_assistant-0.1.102 → jarvis_ai_assistant-0.1.104}/src/jarvis/agent.py +138 -117
  7. jarvis_ai_assistant-0.1.104/src/jarvis/jarvis_code_agent/code_agent.py +234 -0
  8. {jarvis_ai_assistant-0.1.102/src/jarvis/jarvis_coder → jarvis_ai_assistant-0.1.104/src/jarvis/jarvis_code_agent}/file_select.py +19 -22
  9. jarvis_ai_assistant-0.1.104/src/jarvis/jarvis_code_agent/patch.py +120 -0
  10. jarvis_ai_assistant-0.1.104/src/jarvis/jarvis_code_agent/relevant_files.py +97 -0
  11. jarvis_ai_assistant-0.1.104/src/jarvis/jarvis_codebase/main.py +871 -0
  12. {jarvis_ai_assistant-0.1.102 → jarvis_ai_assistant-0.1.104}/src/jarvis/jarvis_platform/main.py +5 -3
  13. jarvis_ai_assistant-0.1.104/src/jarvis/jarvis_rag/main.py +818 -0
  14. {jarvis_ai_assistant-0.1.102 → jarvis_ai_assistant-0.1.104}/src/jarvis/jarvis_smart_shell/main.py +2 -2
  15. {jarvis_ai_assistant-0.1.102 → jarvis_ai_assistant-0.1.104}/src/jarvis/models/ai8.py +3 -1
  16. {jarvis_ai_assistant-0.1.102 → jarvis_ai_assistant-0.1.104}/src/jarvis/models/kimi.py +36 -30
  17. {jarvis_ai_assistant-0.1.102 → jarvis_ai_assistant-0.1.104}/src/jarvis/models/ollama.py +17 -11
  18. {jarvis_ai_assistant-0.1.102 → jarvis_ai_assistant-0.1.104}/src/jarvis/models/openai.py +15 -12
  19. {jarvis_ai_assistant-0.1.102 → jarvis_ai_assistant-0.1.104}/src/jarvis/models/oyi.py +24 -7
  20. {jarvis_ai_assistant-0.1.102 → jarvis_ai_assistant-0.1.104}/src/jarvis/models/registry.py +1 -25
  21. jarvis_ai_assistant-0.1.104/src/jarvis/tools/__init__.py +0 -0
  22. jarvis_ai_assistant-0.1.104/src/jarvis/tools/ask_codebase.py +96 -0
  23. {jarvis_ai_assistant-0.1.102 → jarvis_ai_assistant-0.1.104}/src/jarvis/tools/ask_user.py +1 -9
  24. {jarvis_ai_assistant-0.1.102 → jarvis_ai_assistant-0.1.104}/src/jarvis/tools/chdir.py +2 -37
  25. jarvis_ai_assistant-0.1.104/src/jarvis/tools/code_review.py +210 -0
  26. jarvis_ai_assistant-0.1.104/src/jarvis/tools/create_code_test_agent.py +115 -0
  27. jarvis_ai_assistant-0.1.104/src/jarvis/tools/create_ctags_agent.py +164 -0
  28. {jarvis_ai_assistant-0.1.102 → jarvis_ai_assistant-0.1.104}/src/jarvis/tools/create_sub_agent.py +2 -2
  29. {jarvis_ai_assistant-0.1.102 → jarvis_ai_assistant-0.1.104}/src/jarvis/tools/execute_shell.py +2 -2
  30. {jarvis_ai_assistant-0.1.102 → jarvis_ai_assistant-0.1.104}/src/jarvis/tools/file_operation.py +2 -2
  31. jarvis_ai_assistant-0.1.104/src/jarvis/tools/find_in_codebase.py +78 -0
  32. jarvis_ai_assistant-0.1.104/src/jarvis/tools/git_commiter.py +68 -0
  33. {jarvis_ai_assistant-0.1.102 → jarvis_ai_assistant-0.1.104}/src/jarvis/tools/methodology.py +3 -3
  34. jarvis_ai_assistant-0.1.104/src/jarvis/tools/rag.py +141 -0
  35. jarvis_ai_assistant-0.1.104/src/jarvis/tools/read_code.py +116 -0
  36. {jarvis_ai_assistant-0.1.102 → jarvis_ai_assistant-0.1.104}/src/jarvis/tools/read_webpage.py +1 -1
  37. {jarvis_ai_assistant-0.1.102 → jarvis_ai_assistant-0.1.104}/src/jarvis/tools/registry.py +47 -31
  38. {jarvis_ai_assistant-0.1.102 → jarvis_ai_assistant-0.1.104}/src/jarvis/tools/search.py +8 -6
  39. {jarvis_ai_assistant-0.1.102 → jarvis_ai_assistant-0.1.104}/src/jarvis/tools/select_code_files.py +4 -4
  40. jarvis_ai_assistant-0.1.104/src/jarvis/utils.py +604 -0
  41. {jarvis_ai_assistant-0.1.102 → jarvis_ai_assistant-0.1.104/src/jarvis_ai_assistant.egg-info}/PKG-INFO +107 -32
  42. {jarvis_ai_assistant-0.1.102 → jarvis_ai_assistant-0.1.104}/src/jarvis_ai_assistant.egg-info/SOURCES.txt +16 -12
  43. jarvis_ai_assistant-0.1.104/src/jarvis_ai_assistant.egg-info/entry_points.txt +11 -0
  44. jarvis_ai_assistant-0.1.104/src/jarvis_ai_assistant.egg-info/requires.txt +26 -0
  45. jarvis_ai_assistant-0.1.102/src/jarvis/jarvis_code_agent/main.py +0 -200
  46. jarvis_ai_assistant-0.1.102/src/jarvis/jarvis_coder/git_utils.py +0 -123
  47. jarvis_ai_assistant-0.1.102/src/jarvis/jarvis_coder/patch_handler.py +0 -340
  48. jarvis_ai_assistant-0.1.102/src/jarvis/jarvis_github/main.py +0 -232
  49. jarvis_ai_assistant-0.1.102/src/jarvis/tools/__init__.py +0 -6
  50. jarvis_ai_assistant-0.1.102/src/jarvis/tools/create_code_sub_agent.py +0 -56
  51. jarvis_ai_assistant-0.1.102/src/jarvis/tools/execute_code_modification.py +0 -70
  52. jarvis_ai_assistant-0.1.102/src/jarvis/tools/find_files.py +0 -119
  53. jarvis_ai_assistant-0.1.102/src/jarvis/tools/generate_tool.py +0 -174
  54. jarvis_ai_assistant-0.1.102/src/jarvis/tools/thinker.py +0 -151
  55. jarvis_ai_assistant-0.1.102/src/jarvis/utils.py +0 -314
  56. jarvis_ai_assistant-0.1.102/src/jarvis_ai_assistant.egg-info/entry_points.txt +0 -6
  57. jarvis_ai_assistant-0.1.102/src/jarvis_ai_assistant.egg-info/requires.txt +0 -16
  58. {jarvis_ai_assistant-0.1.102 → jarvis_ai_assistant-0.1.104}/LICENSE +0 -0
  59. {jarvis_ai_assistant-0.1.102 → jarvis_ai_assistant-0.1.104}/MANIFEST.in +0 -0
  60. {jarvis_ai_assistant-0.1.102 → jarvis_ai_assistant-0.1.104}/setup.cfg +0 -0
  61. {jarvis_ai_assistant-0.1.102 → jarvis_ai_assistant-0.1.104}/src/jarvis/jarvis_code_agent/__init__.py +0 -0
  62. {jarvis_ai_assistant-0.1.102/src/jarvis/jarvis_coder → jarvis_ai_assistant-0.1.104/src/jarvis/jarvis_codebase}/__init__.py +0 -0
  63. {jarvis_ai_assistant-0.1.102/src/jarvis/jarvis_github → jarvis_ai_assistant-0.1.104/src/jarvis/jarvis_platform}/__init__.py +0 -0
  64. {jarvis_ai_assistant-0.1.102/src/jarvis/jarvis_platform → jarvis_ai_assistant-0.1.104/src/jarvis/jarvis_rag}/__init__.py +0 -0
  65. {jarvis_ai_assistant-0.1.102 → jarvis_ai_assistant-0.1.104}/src/jarvis/jarvis_smart_shell/__init__.py +0 -0
  66. {jarvis_ai_assistant-0.1.102 → jarvis_ai_assistant-0.1.104}/src/jarvis/models/__init__.py +0 -0
  67. {jarvis_ai_assistant-0.1.102 → jarvis_ai_assistant-0.1.104}/src/jarvis/models/base.py +0 -0
  68. {jarvis_ai_assistant-0.1.102 → jarvis_ai_assistant-0.1.104}/src/jarvis/tools/base.py +0 -0
  69. {jarvis_ai_assistant-0.1.102 → jarvis_ai_assistant-0.1.104}/src/jarvis_ai_assistant.egg-info/dependency_links.txt +0 -0
  70. {jarvis_ai_assistant-0.1.102 → jarvis_ai_assistant-0.1.104}/src/jarvis_ai_assistant.egg-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.102
3
+ Version: 0.1.104
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
@@ -45,10 +45,20 @@ Requires-Dist: colorama>=0.4.6
45
45
  Requires-Dist: prompt_toolkit>=3.0.0
46
46
  Requires-Dist: openai>=1.20.0
47
47
  Requires-Dist: playwright>=1.41.1
48
- Requires-Dist: numpy>=1.24.0
48
+ Requires-Dist: numpy>=1.17.4
49
+ Requires-Dist: faiss-cpu>=1.8.0
50
+ Requires-Dist: sentence-transformers>=2.2.2
49
51
  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
50
55
  Requires-Dist: tqdm>=4.65.0
56
+ Requires-Dist: docx>=0.2.4
51
57
  Requires-Dist: yaspin>=2.5.0
58
+ Requires-Dist: rich>=13.3.1
59
+ Requires-Dist: pygments>=2.15.0
60
+ Requires-Dist: fuzzywuzzy>=0.18.0
61
+ Requires-Dist: python-Levenshtein>=0.26.1
52
62
  Provides-Extra: dev
53
63
  Requires-Dist: pytest; extra == "dev"
54
64
  Requires-Dist: black; extra == "dev"
@@ -143,53 +153,118 @@ Jarvis supports configuration through environment variables that can be set in t
143
153
 
144
154
  ## 🎯 Usage
145
155
 
146
- ### Main Assistant
156
+ ### Code Modification
147
157
  ```bash
158
+ # Using main agent
148
159
  jarvis
160
+
161
+ # Using code agent directly
162
+ jarvis-code-agent
163
+ ```
164
+
165
+ ### Codebase Query
166
+ ```bash
167
+ # Ask questions about the codebase
168
+ jarvis-codebase ask "your question"
169
+ ```
170
+
171
+ ### Document Analysis (RAG)
172
+ ```bash
173
+ # Build document index
174
+ jarvis-rag --dir /path/to/documents --build
175
+
176
+ # Ask questions about documents
177
+ jarvis-rag --query "your question"
178
+ ```
179
+
180
+ ### Smart Shell
181
+ ```bash
182
+ # Using full name
183
+ jarvis-smart-shell "describe what you want to do"
184
+
185
+ # Using shorthand
186
+ jss "describe what you want to do"
149
187
  ```
150
188
 
151
- ### Search Tool
189
+ ### Development Tools
152
190
  ```bash
153
- # Basic search
154
- jarvis-search "your query"
191
+ # Manage git commits
192
+ jarvis-git-commit
155
193
 
156
- # Show only URLs
157
- jarvis-search "your query" --url-only
194
+ # Generate and manage ctags
195
+ jarvis-ctags
158
196
 
159
- # Limit results
160
- jarvis-search "your query" --max 3
197
+ # Manage AI platforms
198
+ jarvis-platform
199
+ ```
200
+
201
+ Each command supports `--help` flag for detailed usage information:
202
+ ```bash
203
+ jarvis --help
204
+ jarvis-code-agent --help
205
+ jarvis-codebase --help
206
+ jarvis-rag --help
207
+ jarvis-smart-shell --help
208
+ jarvis-platform --help
209
+ jarvis-git-commit --help
210
+ jarvis-ctags --help
161
211
  ```
162
212
 
163
213
  ## 🛠️ Tools
164
214
 
215
+ ### Built-in Tools
216
+
217
+ | Tool | Description |
218
+ |------|-------------|
219
+ | read_code | Read code files with line numbers and range support |
220
+ | execute_shell | Execute system commands and capture output |
221
+ | search | Web search for development related queries |
222
+ | ask_user | Interactive user input collection |
223
+ | ask_codebase | Intelligent codebase querying and analysis |
224
+ | code_review | Automated code review with multi-dimensional analysis |
225
+ | file_operation | Basic file operations (read/exists) |
226
+ | git_commiter | Automated git commit handling |
227
+
165
228
  ### Tool Locations
166
229
  - Built-in tools: `src/jarvis/tools/`
167
230
  - User tools: `~/.jarvis/tools/`
168
231
 
169
-
170
232
  ### Key Features
171
233
 
172
- #### 1. Self-Extending Capabilities
173
- - Tool generation through natural language description
174
- - Automatic code generation and integration
175
- - Dynamic capability expansion through sub-agents
176
- - Automatic code modification with version control
177
-
178
- #### 2. Methodology Learning
179
- - Automatic experience accumulation from interactions
180
- - Pattern recognition and methodology extraction
181
- - Continuous refinement through usage
182
- - Code modification history tracking
183
-
184
- #### 3. Adaptive Problem Solving
185
- - Context-aware sub-agent creation
186
- - Dynamic tool composition
187
- - Learning from execution feedback
188
- - Multi-model collaboration for complex tasks
189
-
190
- #### 4. Code Intelligence
191
- - Code modification with git integration
192
- - Multi-model code generation
234
+ #### 1. Code Intelligence
235
+ - Smart file selection and analysis based on requirements
236
+ - Semantic codebase search and querying
237
+ - Efficient handling of large files with context-aware reading
238
+ - Precise patch-based code modifications
239
+ - Automated git commit management
240
+
241
+ #### 2. Multi-Model Architecture
242
+ - Support for multiple AI platforms (Kimi/OpenAI/AI8/OYI/Ollama)
243
+ - Platform-specific optimizations for different tasks
244
+ - Specialized models for code generation, thinking, and general tasks
245
+ - Streaming response support for better interaction
246
+ - Automatic model fallback and retry mechanisms
247
+
248
+ #### 3. RAG Capabilities
249
+ - Document indexing and semantic search
250
+ - Smart context management for large documents
251
+ - Automatic file change detection
252
+ - Efficient caching mechanisms
253
+ - Multi-format document support
254
+
255
+ #### 4. Development Tools
256
+ - Interactive shell command generation
257
+ - Code review with multi-dimensional analysis
258
+ - Codebase-aware problem solving
259
+ - File operations with safety checks
260
+ - Progress tracking and error handling
261
+
262
+ #### 5. User Experience
263
+ - Beautiful console output with color support
264
+ - Interactive multi-line input
265
+ - Progress indicators for long operations
266
+ - Clear error messages and handling
267
+ - Context-aware response formatting
193
268
 
194
269
  ## 🎯 Extending Jarvis
195
270
 
@@ -83,53 +83,118 @@ Jarvis supports configuration through environment variables that can be set in t
83
83
 
84
84
  ## 🎯 Usage
85
85
 
86
- ### Main Assistant
86
+ ### Code Modification
87
87
  ```bash
88
+ # Using main agent
88
89
  jarvis
90
+
91
+ # Using code agent directly
92
+ jarvis-code-agent
93
+ ```
94
+
95
+ ### Codebase Query
96
+ ```bash
97
+ # Ask questions about the codebase
98
+ jarvis-codebase ask "your question"
99
+ ```
100
+
101
+ ### Document Analysis (RAG)
102
+ ```bash
103
+ # Build document index
104
+ jarvis-rag --dir /path/to/documents --build
105
+
106
+ # Ask questions about documents
107
+ jarvis-rag --query "your question"
108
+ ```
109
+
110
+ ### Smart Shell
111
+ ```bash
112
+ # Using full name
113
+ jarvis-smart-shell "describe what you want to do"
114
+
115
+ # Using shorthand
116
+ jss "describe what you want to do"
89
117
  ```
90
118
 
91
- ### Search Tool
119
+ ### Development Tools
92
120
  ```bash
93
- # Basic search
94
- jarvis-search "your query"
121
+ # Manage git commits
122
+ jarvis-git-commit
95
123
 
96
- # Show only URLs
97
- jarvis-search "your query" --url-only
124
+ # Generate and manage ctags
125
+ jarvis-ctags
98
126
 
99
- # Limit results
100
- jarvis-search "your query" --max 3
127
+ # Manage AI platforms
128
+ jarvis-platform
129
+ ```
130
+
131
+ Each command supports `--help` flag for detailed usage information:
132
+ ```bash
133
+ jarvis --help
134
+ jarvis-code-agent --help
135
+ jarvis-codebase --help
136
+ jarvis-rag --help
137
+ jarvis-smart-shell --help
138
+ jarvis-platform --help
139
+ jarvis-git-commit --help
140
+ jarvis-ctags --help
101
141
  ```
102
142
 
103
143
  ## 🛠️ Tools
104
144
 
145
+ ### Built-in Tools
146
+
147
+ | Tool | Description |
148
+ |------|-------------|
149
+ | read_code | Read code files with line numbers and range support |
150
+ | execute_shell | Execute system commands and capture output |
151
+ | search | Web search for development related queries |
152
+ | ask_user | Interactive user input collection |
153
+ | ask_codebase | Intelligent codebase querying and analysis |
154
+ | code_review | Automated code review with multi-dimensional analysis |
155
+ | file_operation | Basic file operations (read/exists) |
156
+ | git_commiter | Automated git commit handling |
157
+
105
158
  ### Tool Locations
106
159
  - Built-in tools: `src/jarvis/tools/`
107
160
  - User tools: `~/.jarvis/tools/`
108
161
 
109
-
110
162
  ### Key Features
111
163
 
112
- #### 1. Self-Extending Capabilities
113
- - Tool generation through natural language description
114
- - Automatic code generation and integration
115
- - Dynamic capability expansion through sub-agents
116
- - Automatic code modification with version control
117
-
118
- #### 2. Methodology Learning
119
- - Automatic experience accumulation from interactions
120
- - Pattern recognition and methodology extraction
121
- - Continuous refinement through usage
122
- - Code modification history tracking
123
-
124
- #### 3. Adaptive Problem Solving
125
- - Context-aware sub-agent creation
126
- - Dynamic tool composition
127
- - Learning from execution feedback
128
- - Multi-model collaboration for complex tasks
129
-
130
- #### 4. Code Intelligence
131
- - Code modification with git integration
132
- - Multi-model code generation
164
+ #### 1. Code Intelligence
165
+ - Smart file selection and analysis based on requirements
166
+ - Semantic codebase search and querying
167
+ - Efficient handling of large files with context-aware reading
168
+ - Precise patch-based code modifications
169
+ - Automated git commit management
170
+
171
+ #### 2. Multi-Model Architecture
172
+ - Support for multiple AI platforms (Kimi/OpenAI/AI8/OYI/Ollama)
173
+ - Platform-specific optimizations for different tasks
174
+ - Specialized models for code generation, thinking, and general tasks
175
+ - Streaming response support for better interaction
176
+ - Automatic model fallback and retry mechanisms
177
+
178
+ #### 3. RAG Capabilities
179
+ - Document indexing and semantic search
180
+ - Smart context management for large documents
181
+ - Automatic file change detection
182
+ - Efficient caching mechanisms
183
+ - Multi-format document support
184
+
185
+ #### 4. Development Tools
186
+ - Interactive shell command generation
187
+ - Code review with multi-dimensional analysis
188
+ - Codebase-aware problem solving
189
+ - File operations with safety checks
190
+ - Progress tracking and error handling
191
+
192
+ #### 5. User Experience
193
+ - Beautiful console output with color support
194
+ - Interactive multi-line input
195
+ - Progress indicators for long operations
196
+ - Clear error messages and handling
197
+ - Context-aware response formatting
133
198
 
134
199
  ## 🎯 Extending Jarvis
135
200
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "jarvis-ai-assistant"
7
- version = "0.1.102"
7
+ version = "0.1.104"
8
8
  description = "Jarvis: An AI assistant that uses tools to interact with the system"
9
9
  readme = "README.md"
10
10
  authors = [{ name = "Your Name", email = "your.email@example.com" }]
@@ -27,10 +27,20 @@ dependencies = [
27
27
  "prompt_toolkit>=3.0.0",
28
28
  "openai>=1.20.0",
29
29
  "playwright>=1.41.1",
30
- "numpy>=1.24.0",
30
+ "numpy>=1.17.4",
31
+ "faiss-cpu>=1.8.0",
32
+ "sentence-transformers>=2.2.2",
31
33
  "bs4>=0.0.1",
34
+ "PyMuPDF>=1.21.0",
35
+ "python-docx>=0.8.11",
36
+ "tiktoken>=0.3.0",
32
37
  "tqdm>=4.65.0",
38
+ "docx>=0.2.4",
33
39
  "yaspin>=2.5.0",
40
+ "rich>=13.3.1",
41
+ "pygments>=2.15.0",
42
+ "fuzzywuzzy>=0.18.0",
43
+ "python-Levenshtein>=0.26.1",
34
44
  ]
35
45
  requires-python = ">=3.8"
36
46
 
@@ -42,7 +52,12 @@ Homepage = "https://github.com/skyfireitdiy/Jarvis"
42
52
 
43
53
  [project.scripts]
44
54
  jarvis = "jarvis.agent:main"
45
- jarvis-code-agent = "jarvis.jarvis_code_agent.main:main"
55
+ jarvis-code-agent = "jarvis.jarvis_code_agent.code_agent:main"
56
+ jarvis-codebase = "jarvis.jarvis_codebase.main:main"
57
+ jarvis-rag = "jarvis.jarvis_rag.main:main"
46
58
  jarvis-smart-shell = "jarvis.jarvis_smart_shell.main:main"
47
59
  jss = "jarvis.jarvis_smart_shell.main:main"
48
60
  jarvis-platform = "jarvis.jarvis_platform.main:main"
61
+ jarvis-git-commit = "jarvis.tools.git_commiter:main"
62
+ jarvis-ctags = "jarvis.tools.create_ctags_agent:main"
63
+ jarvis-code-review = "jarvis.tools.code_review:main"
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="jarvis-ai-assistant",
5
- version="0.1.102",
5
+ version="0.1.104",
6
6
  author="skyfire",
7
7
  author_email="skyfireitdiy@hotmail.com",
8
8
  description="An AI assistant that uses various tools to interact with the system",
@@ -19,18 +19,33 @@ setup(
19
19
  "prompt_toolkit>=3.0.0",
20
20
  "openai>=1.20.0",
21
21
  "playwright>=1.41.1",
22
- "numpy>=1.24.0",
22
+ "numpy==1.17.4",
23
+ "faiss-cpu>=1.8.0",
24
+ "sentence-transformers>=2.2.2",
23
25
  "bs4>=0.0.1",
26
+ "PyMuPDF>=1.21.0",
27
+ "python-docx>=0.8.11",
28
+ "tiktoken>=0.3.0",
24
29
  "tqdm>=4.65.0",
30
+ "docx>=0.2.4",
25
31
  "yaspin>=2.5.0",
32
+ "rich>=13.3.1",
33
+ "pygments>=2.15.0",
34
+ "fuzzywuzzy>=0.18.0",
35
+ "python-Levenshtein>=0.26.1",
26
36
  ],
27
37
  entry_points={
28
38
  "console_scripts": [
29
39
  "jarvis=jarvis.agent:main",
30
- "jarvis-code-agent=jarvis.jarvis_code_agent.main:main",
40
+ "jarvis-code-agent=jarvis.jarvis_code_agent.code_agent:main",
41
+ "jarvis-codebase=jarvis.jarvis_codebase.main:main",
42
+ "jarvis-rag=jarvis.jarvis_rag.main:main",
31
43
  "jarvis-smart-shell=jarvis.jarvis_smart_shell.main:main",
32
44
  "jss=jarvis.jarvis_smart_shell.main:main",
33
45
  "jarvis-platform=jarvis.jarvis_platform.main:main",
46
+ "jarvis-git-commit=jarvis.tools.git_commiter:main",
47
+ "jarvis-ctags=jarvis.tools.create_ctags_agent:main",
48
+ "jarvis-code-review=jarvis.tools.code_review:main",
34
49
  ],
35
50
  },
36
51
  python_requires=">=3.8",
@@ -1,3 +1,3 @@
1
1
  """Jarvis AI Assistant"""
2
2
 
3
- __version__ = "0.1.102"
3
+ __version__ = "0.1.104"