jarvis-ai-assistant 0.1.130__py3-none-any.whl → 0.1.131__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 +23 -9
- jarvis/jarvis_agent/builtin_input_handler.py +73 -0
- jarvis/{jarvis_code_agent → jarvis_agent}/file_input_handler.py +1 -1
- jarvis/jarvis_agent/main.py +1 -1
- jarvis/{jarvis_code_agent → jarvis_agent}/patch.py +23 -19
- jarvis/{jarvis_code_agent → jarvis_agent}/shell_input_handler.py +0 -1
- jarvis/jarvis_code_agent/code_agent.py +20 -16
- jarvis/jarvis_codebase/main.py +5 -5
- jarvis/jarvis_dev/main.py +1 -1
- jarvis/jarvis_git_squash/main.py +1 -1
- jarvis/jarvis_lsp/base.py +2 -26
- jarvis/jarvis_lsp/cpp.py +2 -14
- jarvis/jarvis_lsp/go.py +0 -13
- jarvis/jarvis_lsp/python.py +1 -30
- jarvis/jarvis_lsp/registry.py +10 -14
- jarvis/jarvis_lsp/rust.py +0 -12
- jarvis/jarvis_multi_agent/__init__.py +1 -1
- jarvis/jarvis_platform/registry.py +1 -1
- jarvis/jarvis_platform_manager/main.py +3 -3
- jarvis/jarvis_rag/main.py +1 -1
- jarvis/jarvis_tools/ask_codebase.py +40 -20
- jarvis/jarvis_tools/code_review.py +180 -143
- jarvis/jarvis_tools/create_code_agent.py +76 -72
- jarvis/jarvis_tools/create_sub_agent.py +32 -15
- jarvis/jarvis_tools/execute_shell.py +2 -2
- jarvis/jarvis_tools/execute_shell_script.py +1 -1
- jarvis/jarvis_tools/file_operation.py +2 -2
- jarvis/jarvis_tools/git_commiter.py +87 -68
- jarvis/jarvis_tools/lsp_find_definition.py +83 -67
- jarvis/jarvis_tools/lsp_find_references.py +62 -46
- jarvis/jarvis_tools/lsp_get_diagnostics.py +90 -74
- jarvis/jarvis_tools/methodology.py +3 -3
- jarvis/jarvis_tools/read_code.py +1 -1
- jarvis/jarvis_tools/search_web.py +18 -20
- jarvis/jarvis_tools/tool_generator.py +1 -1
- jarvis/jarvis_tools/treesitter_analyzer.py +331 -0
- jarvis/jarvis_treesitter/README.md +104 -0
- jarvis/jarvis_treesitter/__init__.py +20 -0
- jarvis/jarvis_treesitter/database.py +258 -0
- jarvis/jarvis_treesitter/example.py +115 -0
- jarvis/jarvis_treesitter/grammar_builder.py +182 -0
- jarvis/jarvis_treesitter/language.py +117 -0
- jarvis/jarvis_treesitter/symbol.py +31 -0
- jarvis/jarvis_treesitter/tools_usage.md +121 -0
- jarvis/jarvis_utils/git_utils.py +10 -2
- jarvis/jarvis_utils/input.py +3 -1
- jarvis/jarvis_utils/methodology.py +1 -1
- jarvis/jarvis_utils/utils.py +3 -3
- {jarvis_ai_assistant-0.1.130.dist-info → jarvis_ai_assistant-0.1.131.dist-info}/METADATA +2 -4
- jarvis_ai_assistant-0.1.131.dist-info/RECORD +85 -0
- jarvis/jarvis_c2rust/c2rust.yaml +0 -734
- jarvis/jarvis_code_agent/builtin_input_handler.py +0 -43
- jarvis/jarvis_tools/lsp_get_document_symbols.py +0 -87
- jarvis/jarvis_tools/lsp_prepare_rename.py +0 -130
- jarvis_ai_assistant-0.1.130.dist-info/RECORD +0 -79
- {jarvis_ai_assistant-0.1.130.dist-info → jarvis_ai_assistant-0.1.131.dist-info}/LICENSE +0 -0
- {jarvis_ai_assistant-0.1.130.dist-info → jarvis_ai_assistant-0.1.131.dist-info}/WHEEL +0 -0
- {jarvis_ai_assistant-0.1.130.dist-info → jarvis_ai_assistant-0.1.131.dist-info}/entry_points.txt +0 -0
- {jarvis_ai_assistant-0.1.130.dist-info → jarvis_ai_assistant-0.1.131.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"""Symbol-related classes for the tree-sitter code database."""
|
|
2
|
+
|
|
3
|
+
from dataclasses import dataclass
|
|
4
|
+
from enum import Enum
|
|
5
|
+
from typing import Optional
|
|
6
|
+
|
|
7
|
+
class SymbolType(Enum):
|
|
8
|
+
"""Types of symbols that can be stored in the database."""
|
|
9
|
+
FUNCTION = "function"
|
|
10
|
+
CLASS = "class"
|
|
11
|
+
VARIABLE = "variable"
|
|
12
|
+
REFERENCE = "reference"
|
|
13
|
+
FUNCTION_CALL = "function_call"
|
|
14
|
+
|
|
15
|
+
@dataclass
|
|
16
|
+
class SymbolLocation:
|
|
17
|
+
"""Location information for a symbol in source code."""
|
|
18
|
+
file_path: str
|
|
19
|
+
start_line: int
|
|
20
|
+
start_column: int
|
|
21
|
+
end_line: int
|
|
22
|
+
end_column: int
|
|
23
|
+
|
|
24
|
+
@dataclass
|
|
25
|
+
class Symbol:
|
|
26
|
+
"""Represents a symbol in the code database."""
|
|
27
|
+
name: str
|
|
28
|
+
type: SymbolType
|
|
29
|
+
location: SymbolLocation
|
|
30
|
+
scope: Optional[str] = None # Optional scope information
|
|
31
|
+
parent: Optional['Symbol'] = None # Optional parent symbol (e.g., class for methods)
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
# Tree-sitter 分析工具使用指南
|
|
2
|
+
|
|
3
|
+
本文档说明如何使用 Jarvis 的 Tree-sitter 分析工具来查找代码中的符号定义、引用和调用关系。
|
|
4
|
+
|
|
5
|
+
## 概述
|
|
6
|
+
|
|
7
|
+
Tree-sitter 分析工具 (`treesitter_analyzer`) 可以帮助你快速分析代码库,查找符号的定义位置、引用位置和调用关系,支持多种编程语言,包括:
|
|
8
|
+
|
|
9
|
+
- Python
|
|
10
|
+
- C
|
|
11
|
+
- C++
|
|
12
|
+
- Go
|
|
13
|
+
- Rust
|
|
14
|
+
|
|
15
|
+
## 功能特点
|
|
16
|
+
|
|
17
|
+
- **自动下载语法文件**:工具会自动下载和编译需要的语法文件,保存在 `~/.jarvis/treesitter` 目录
|
|
18
|
+
- **多语言支持**:支持多种常用编程语言
|
|
19
|
+
- **符号查找**:查找函数、类、变量等符号的定义位置
|
|
20
|
+
- **引用查找**:查找符号的所有引用位置
|
|
21
|
+
- **调用关系**:查找函数的所有调用位置
|
|
22
|
+
- **自动索引**:每次操作前会自动索引指定目录的代码
|
|
23
|
+
|
|
24
|
+
## 使用方法
|
|
25
|
+
|
|
26
|
+
在 Jarvis 中,可以通过工具调用格式来使用这个工具:
|
|
27
|
+
|
|
28
|
+
```yaml
|
|
29
|
+
<TOOL_CALL>
|
|
30
|
+
name: treesitter_analyzer
|
|
31
|
+
arguments:
|
|
32
|
+
action: find_symbol
|
|
33
|
+
symbol_name: main
|
|
34
|
+
directory: /path/to/code
|
|
35
|
+
extensions: [".c", ".h"]
|
|
36
|
+
max_results: 10
|
|
37
|
+
</TOOL_CALL>
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## 支持的操作
|
|
41
|
+
|
|
42
|
+
Tree-sitter 分析工具支持以下操作类型:
|
|
43
|
+
|
|
44
|
+
1. **查找符号** (`find_symbol`):查找符号的定义位置
|
|
45
|
+
2. **查找引用** (`find_references`):查找符号的引用位置
|
|
46
|
+
3. **查找调用者** (`find_callers`):查找函数的调用位置
|
|
47
|
+
|
|
48
|
+
**注意**:每个操作前都会自动先索引指定目录下的代码文件,不需要单独执行索引步骤。
|
|
49
|
+
|
|
50
|
+
## 参数说明
|
|
51
|
+
|
|
52
|
+
工具接受以下参数:
|
|
53
|
+
|
|
54
|
+
- `action`:**必需**,操作类型,可选值:`find_symbol`、`find_references`、`find_callers`
|
|
55
|
+
- `symbol_name`:**必需**,符号名称,如函数名、类名、变量名
|
|
56
|
+
- `directory`:**必需**,要索引的代码目录,默认为当前目录
|
|
57
|
+
- `extensions`:可选,要索引的文件扩展名列表,如 `[".py", ".c"]`,不指定则索引所有支持的文件类型
|
|
58
|
+
- `max_results`:可选,最大返回结果数量,默认为 20
|
|
59
|
+
|
|
60
|
+
## 使用示例
|
|
61
|
+
|
|
62
|
+
### 查找符号定义
|
|
63
|
+
|
|
64
|
+
```yaml
|
|
65
|
+
<TOOL_CALL>
|
|
66
|
+
name: treesitter_analyzer
|
|
67
|
+
arguments:
|
|
68
|
+
action: find_symbol
|
|
69
|
+
symbol_name: main
|
|
70
|
+
directory: /path/to/code
|
|
71
|
+
</TOOL_CALL>
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
### 查找符号引用
|
|
75
|
+
|
|
76
|
+
```yaml
|
|
77
|
+
<TOOL_CALL>
|
|
78
|
+
name: treesitter_analyzer
|
|
79
|
+
arguments:
|
|
80
|
+
action: find_references
|
|
81
|
+
symbol_name: add_user
|
|
82
|
+
directory: /path/to/code
|
|
83
|
+
extensions: [".py"]
|
|
84
|
+
</TOOL_CALL>
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
### 查找函数调用者
|
|
88
|
+
|
|
89
|
+
```yaml
|
|
90
|
+
<TOOL_CALL>
|
|
91
|
+
name: treesitter_analyzer
|
|
92
|
+
arguments:
|
|
93
|
+
action: find_callers
|
|
94
|
+
symbol_name: process_data
|
|
95
|
+
directory: /path/to/code
|
|
96
|
+
max_results: 50
|
|
97
|
+
</TOOL_CALL>
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
## 返回结果
|
|
101
|
+
|
|
102
|
+
工具返回的结果包含以下字段:
|
|
103
|
+
|
|
104
|
+
- `success`:操作是否成功
|
|
105
|
+
- `stdout`:操作的输出信息,包括索引摘要和查询结果
|
|
106
|
+
- `stderr`:操作的错误信息(如果有)
|
|
107
|
+
|
|
108
|
+
此外,不同操作还会返回其他特定字段:
|
|
109
|
+
|
|
110
|
+
- `find_symbol`:返回 `symbols` 列表
|
|
111
|
+
- `find_references`:返回 `symbol` 和 `references` 列表
|
|
112
|
+
- `find_callers`:返回 `function` 和 `callers` 列表
|
|
113
|
+
- 所有操作都会包含 `indexed_files` 和 `skipped_files` 的信息
|
|
114
|
+
|
|
115
|
+
## 注意事项
|
|
116
|
+
|
|
117
|
+
1. 首次使用时,工具会自动下载和编译语法文件,可能需要一些时间
|
|
118
|
+
2. 大型代码库索引可能较慢,请耐心等待
|
|
119
|
+
3. 为提高性能,可以使用 `extensions` 参数限制索引的文件类型
|
|
120
|
+
4. 工具会缓存索引结果,后续查询同一代码库速度会更快
|
|
121
|
+
5. 每次操作都会重新索引目录,确保分析结果基于最新的代码
|
jarvis/jarvis_utils/git_utils.py
CHANGED
|
@@ -14,9 +14,17 @@ import subprocess
|
|
|
14
14
|
from typing import List, Tuple, Dict
|
|
15
15
|
from jarvis.jarvis_utils.output import PrettyOutput, OutputType
|
|
16
16
|
def find_git_root(start_dir="."):
|
|
17
|
-
"""切换到给定路径的Git
|
|
17
|
+
"""切换到给定路径的Git根目录,如果不是Git仓库则初始化"""
|
|
18
18
|
os.chdir(start_dir)
|
|
19
|
-
|
|
19
|
+
try:
|
|
20
|
+
git_root = os.popen("git rev-parse --show-toplevel").read().strip()
|
|
21
|
+
if not git_root:
|
|
22
|
+
subprocess.run(["git", "init"], check=True)
|
|
23
|
+
git_root = os.path.abspath(".")
|
|
24
|
+
except subprocess.CalledProcessError:
|
|
25
|
+
# 如果不是Git仓库,初始化一个新的
|
|
26
|
+
subprocess.run(["git", "init"], check=True)
|
|
27
|
+
git_root = os.path.abspath(".")
|
|
20
28
|
os.chdir(git_root)
|
|
21
29
|
return git_root
|
|
22
30
|
def has_uncommitted_changes():
|
jarvis/jarvis_utils/input.py
CHANGED
|
@@ -77,7 +77,9 @@ class FileCompleter(Completer):
|
|
|
77
77
|
default_suggestions = [
|
|
78
78
|
('<CodeBase>', '查询代码库'),
|
|
79
79
|
('<Web>', '网页搜索'),
|
|
80
|
-
('<RAG>', '知识库检索')
|
|
80
|
+
('<RAG>', '知识库检索'),
|
|
81
|
+
('<Summary>', '总结'),
|
|
82
|
+
('<Clear>', '清除历史'),
|
|
81
83
|
]
|
|
82
84
|
for name, desc in default_suggestions:
|
|
83
85
|
yield Completion(
|
|
@@ -72,7 +72,7 @@ def load_methodology(user_input: str) -> str:
|
|
|
72
72
|
|
|
73
73
|
try:
|
|
74
74
|
with yaspin(text="加载方法论文件...", color="yellow") as spinner:
|
|
75
|
-
with open(user_jarvis_methodology, "r", encoding="utf-8") as f:
|
|
75
|
+
with open(user_jarvis_methodology, "r", encoding="utf-8", errors="ignore") as f:
|
|
76
76
|
data = yaml.safe_load(f)
|
|
77
77
|
if dont_use_local_model():
|
|
78
78
|
spinner.text = "加载方法论文件完成"
|
jarvis/jarvis_utils/utils.py
CHANGED
|
@@ -22,7 +22,7 @@ def init_env():
|
|
|
22
22
|
jarvis_dir.mkdir(parents=True)
|
|
23
23
|
if env_file.exists():
|
|
24
24
|
try:
|
|
25
|
-
with open(env_file, "r", encoding="utf-8") as f:
|
|
25
|
+
with open(env_file, "r", encoding="utf-8", errors="ignore") as f:
|
|
26
26
|
for line in f:
|
|
27
27
|
line = line.strip()
|
|
28
28
|
if line and not line.startswith(("#", ";")):
|
|
@@ -83,7 +83,7 @@ def get_file_line_count(filename: str) -> int:
|
|
|
83
83
|
int: Number of lines in the file, 0 if file cannot be read
|
|
84
84
|
"""
|
|
85
85
|
try:
|
|
86
|
-
return len(open(filename, "r", encoding="utf-8").readlines())
|
|
86
|
+
return len(open(filename, "r", encoding="utf-8", errors="ignore").readlines())
|
|
87
87
|
except Exception as e:
|
|
88
88
|
return 0
|
|
89
89
|
def init_gpu_config() -> Dict:
|
|
@@ -137,7 +137,7 @@ def is_long_context(files: list) -> bool:
|
|
|
137
137
|
|
|
138
138
|
for file_path in files:
|
|
139
139
|
try:
|
|
140
|
-
with open(file_path, 'r', encoding='utf-8') as f:
|
|
140
|
+
with open(file_path, 'r', encoding='utf-8', errors="ignore") as f:
|
|
141
141
|
content = f.read()
|
|
142
142
|
total_tokens += get_context_token_count(content)
|
|
143
143
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: jarvis-ai-assistant
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.131
|
|
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
|
|
@@ -64,6 +64,7 @@ Requires-Dist: jedi>=0.17.2
|
|
|
64
64
|
Requires-Dist: psutil>=7.0.0
|
|
65
65
|
Requires-Dist: fastapi>=0.115.4
|
|
66
66
|
Requires-Dist: uvicorn>=0.33.0
|
|
67
|
+
Requires-Dist: tree-sitter>=0.20.0
|
|
67
68
|
Provides-Extra: dev
|
|
68
69
|
Requires-Dist: pytest; extra == "dev"
|
|
69
70
|
Requires-Dist: black; extra == "dev"
|
|
@@ -179,9 +180,6 @@ jarvis-git-squash --help
|
|
|
179
180
|
| create_sub_agent | 创建子代理 |
|
|
180
181
|
| lsp_find_definition | 查找符号定义 |
|
|
181
182
|
| lsp_find_references | 查找符号引用 |
|
|
182
|
-
| lsp_get_diagnostics | 获取代码诊断信息 |
|
|
183
|
-
| lsp_get_document_symbols | 获取文档符号 |
|
|
184
|
-
| lsp_prepare_rename | 准备符号重命名 |
|
|
185
183
|
| lsp_validate_edit | 验证代码编辑 |
|
|
186
184
|
| rag | 文档检索和问答 |
|
|
187
185
|
| select_code_files | 选择代码文件 |
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
jarvis/__init__.py,sha256=LkxZHlCG5zW1xr1tlLt_s3LgitGFyjcKmI_offIk0Fc,51
|
|
2
|
+
jarvis/jarvis_agent/__init__.py,sha256=dMGl8iAmhIl38YO_nS5-2u23HOBUcQYL5YsmbJVLCB4,23304
|
|
3
|
+
jarvis/jarvis_agent/builtin_input_handler.py,sha256=Bm4aVRrjrkjgpudest58X707wvhz_Z_ufTEPw0s4DEw,2414
|
|
4
|
+
jarvis/jarvis_agent/file_input_handler.py,sha256=55HwQGq3HWKmDSeJqJ0eOktoq-5Mbc5UpFqmSUrhxBY,3355
|
|
5
|
+
jarvis/jarvis_agent/main.py,sha256=TRGDYi53BaDkaMgLZ4HFaM0WdGP5nX4Jcfaqfwy3lqg,2532
|
|
6
|
+
jarvis/jarvis_agent/output_handler.py,sha256=kJeFTjjSu0K_2p0wyhq2veSZuhRXoaFC_8wVaoBKX0w,401
|
|
7
|
+
jarvis/jarvis_agent/patch.py,sha256=1yBNdORlt_jAEHTZaiHpncWvTVekqpmHSp0K0i1Kh-k,17359
|
|
8
|
+
jarvis/jarvis_agent/shell_input_handler.py,sha256=AgJTeZd3wPbwCQXvWS1TcJvcTib8cmYAwuaBzDm16FA,1006
|
|
9
|
+
jarvis/jarvis_code_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
|
+
jarvis/jarvis_code_agent/code_agent.py,sha256=UQmNhToFCAZuYf6ka4lmicNm0Utx2m8q2BShfa69HBc,8798
|
|
11
|
+
jarvis/jarvis_code_agent/file_select.py,sha256=2nSy1FW-kK-wvtz0YbbgSbd4ZwXMlA7sBP0nC80FzLI,8160
|
|
12
|
+
jarvis/jarvis_codebase/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
|
+
jarvis/jarvis_codebase/main.py,sha256=aZMKpRcBtLD3TKBBUVUR2WoT390vm3KeaV9rp5Gw1Sc,41410
|
|
14
|
+
jarvis/jarvis_dev/main.py,sha256=--heacV6w2FRnQNQGd4ub8ihr5zEaeSjNpdcbgEJyog,30385
|
|
15
|
+
jarvis/jarvis_git_squash/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
|
+
jarvis/jarvis_git_squash/main.py,sha256=d3OaDO2DtT7G-13rAb5bDU4ISE_x2VAgeaACKwIqtyA,2799
|
|
17
|
+
jarvis/jarvis_lsp/base.py,sha256=b5aIy_FoPHPb9DjHKCFGI5KNp6jDQYuClsUDuLq5PRI,3412
|
|
18
|
+
jarvis/jarvis_lsp/cpp.py,sha256=7J6F2k1b7nWpuq_9dmfkojDrK3xyixrSEcJY1uTf4Yk,4011
|
|
19
|
+
jarvis/jarvis_lsp/go.py,sha256=sS6XVQSr7ac1mkYxWswwvdW1BHJRxgsh4vxgiBfU_BA,4328
|
|
20
|
+
jarvis/jarvis_lsp/python.py,sha256=-901gYdLQDGModUZ0s-QWPShI4zTnY05d4JhQbEiDKs,2693
|
|
21
|
+
jarvis/jarvis_lsp/registry.py,sha256=f7_RmilgqfaBDNaEejK8K099fbo0mO-vTiBzLmgEeg8,9680
|
|
22
|
+
jarvis/jarvis_lsp/rust.py,sha256=6Ge-_M5G29dw9a3kaG5uO020Nnas5R2Pg2tlqU4JYVQ,4564
|
|
23
|
+
jarvis/jarvis_multi_agent/__init__.py,sha256=jOL0e9uq0Sefchq0l0UK-eXrCNHlEsankEIvvCVl5Os,6864
|
|
24
|
+
jarvis/jarvis_platform/__init__.py,sha256=mrOt67nselz_H1gX9wdAO4y2DY5WPXzABqJbr5Des8k,63
|
|
25
|
+
jarvis/jarvis_platform/ai8.py,sha256=xjgoiF7QHx_5FHj-npTFVvZFYg8RBzkqTGAOQ-MJiL0,11972
|
|
26
|
+
jarvis/jarvis_platform/base.py,sha256=2chHt0pMx4rr0OFTeDpZcVqFUxF_q4YslUt30E5Augk,3277
|
|
27
|
+
jarvis/jarvis_platform/kimi.py,sha256=Qwb81flbKPvj-qZyJAMS_u0lQatRFQztYxUGDbj1keM,15713
|
|
28
|
+
jarvis/jarvis_platform/ollama.py,sha256=NHQMJSpC91WtSFuHKJuwD8qO-z4yDTF9mZX6BzWTKRU,5658
|
|
29
|
+
jarvis/jarvis_platform/openai.py,sha256=GSxTB69WitXJS3pL0sxCoB2F0EVHmvhrwLBC_JT8s34,4470
|
|
30
|
+
jarvis/jarvis_platform/oyi.py,sha256=pa72TtBYlhs3KPpqO4Y78a1Jvx4mN0pojBklu8X3F-k,15024
|
|
31
|
+
jarvis/jarvis_platform/registry.py,sha256=JlFXnPK_lmKWscQJItD-eEVgFe4WspsKfaFja2XLhOU,8540
|
|
32
|
+
jarvis/jarvis_platform_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
33
|
+
jarvis/jarvis_platform_manager/main.py,sha256=iNeaGVXYJJUHo-euQRo7sMesQ2Y5EyNDCyx0koKyeiI,20949
|
|
34
|
+
jarvis/jarvis_platform_manager/openai_test.py,sha256=bkcVG6o2nNazj4zjkENgA4yOEzdTI9Qbm5dco-2MGYM,5190
|
|
35
|
+
jarvis/jarvis_rag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
36
|
+
jarvis/jarvis_rag/main.py,sha256=2NkPDvelyk-qERhk45_uLFfw9NicvW4BM67ZI7N2AlE,35872
|
|
37
|
+
jarvis/jarvis_smart_shell/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
38
|
+
jarvis/jarvis_smart_shell/main.py,sha256=5gyBKgxuaTrDToE7Xy4DhsJPDOEviPi7ktm1vOZoIno,4618
|
|
39
|
+
jarvis/jarvis_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
40
|
+
jarvis/jarvis_tools/ask_codebase.py,sha256=dDiFQd23ZZlM2Un2huwHNsWOId7Ux83UwMXE28Bh2f4,4124
|
|
41
|
+
jarvis/jarvis_tools/ask_user.py,sha256=kU6BOhFz_mKfqABd0l_00TL7Mqp_dhV3r0qkKLy8yRM,1745
|
|
42
|
+
jarvis/jarvis_tools/base.py,sha256=8gIgIx9LJAKOxdpPu7zMDItWqwXmXVTWAGfUkpQonzw,1196
|
|
43
|
+
jarvis/jarvis_tools/chdir.py,sha256=GLbH2fOKESUn3XYhNg0uOI5axTO2csC0B9HUL0bMZ5U,2790
|
|
44
|
+
jarvis/jarvis_tools/code_review.py,sha256=hIr8B7G6SFevkfG79u0JGzlQhBeGY3ojR_5BrJkVD8I,11520
|
|
45
|
+
jarvis/jarvis_tools/create_code_agent.py,sha256=2BSxbb-5e5sQNpPLlIy49UXqhf92UEMMvxmOiagMSVY,4319
|
|
46
|
+
jarvis/jarvis_tools/create_sub_agent.py,sha256=JheHbVJCOpruXWpqmzf7UHFmwdsJB7BRUP_2ysjYzMM,3039
|
|
47
|
+
jarvis/jarvis_tools/execute_shell.py,sha256=ujyWCBsw4NUHpVCnXrHFQ1mrWhCOqLM6BWoXsWD-g3A,3899
|
|
48
|
+
jarvis/jarvis_tools/execute_shell_script.py,sha256=sKau5m516xPCOYA4tGOBdUpf1kCJM2-6KdqrLbGVSmg,2047
|
|
49
|
+
jarvis/jarvis_tools/file_operation.py,sha256=mw9t5AWchiwePlw378CYQ1ld45dGlm2kTkeGDS8BcvU,7007
|
|
50
|
+
jarvis/jarvis_tools/git_commiter.py,sha256=2PqySQwan-bqKcbaM-rOqgPpUzL9KsrT79SmIyopNmY,6565
|
|
51
|
+
jarvis/jarvis_tools/lsp_find_definition.py,sha256=RG_2VFaR0vRRTdoBvOKwJvq3PlZmytQZmfRhI21caAc,5565
|
|
52
|
+
jarvis/jarvis_tools/lsp_find_references.py,sha256=mXTWLUoU6Tg5025hWkobtkwVAaQLaDvYI8KZQ9RCufc,4734
|
|
53
|
+
jarvis/jarvis_tools/lsp_get_diagnostics.py,sha256=GVehn0V44m9eem3P87egqWOmDCu7W7k1Jewj-DkPZig,5551
|
|
54
|
+
jarvis/jarvis_tools/methodology.py,sha256=7bLxXgQf__j9Cq0qy8izhAHnTVBojMhpNI6TwMkkjnI,5838
|
|
55
|
+
jarvis/jarvis_tools/rag.py,sha256=WuTlyGV5rgZTRxts9eJPC3QABrsoNYKratdO8UzUFDw,5132
|
|
56
|
+
jarvis/jarvis_tools/read_code.py,sha256=hSeWGgWu3Dnj87lKOQEjSnMh7T3FrY4_IKTQAc4_xn0,5447
|
|
57
|
+
jarvis/jarvis_tools/read_webpage.py,sha256=TkVNgirvcjns8-MHaDXOmliOKWCYcq3WzcbVXBi0IxY,4173
|
|
58
|
+
jarvis/jarvis_tools/registry.py,sha256=pYyjdyjYgvHfdglhp0I7YXfVIV8_jTSncoSgIG6HFUw,13719
|
|
59
|
+
jarvis/jarvis_tools/search_web.py,sha256=FOtWHs7FbKNaEVYEkWs7OaxWzP__h3ktH5E7u1yOywg,12644
|
|
60
|
+
jarvis/jarvis_tools/select_code_files.py,sha256=xCqHTjIGju9Pb1Yh2C1Y7l6uT_3pfVB6ARU0VQmeRNI,1879
|
|
61
|
+
jarvis/jarvis_tools/tool_generator.py,sha256=DcQrt1uY0NuzwbHz7qqsvLMBODEK9yLTQO_tMKN2IoY,7739
|
|
62
|
+
jarvis/jarvis_tools/treesitter_analyzer.py,sha256=v1CNH-EhnQsRZx55krZ36cx33O_sOwnVJkloTSfcMho,12875
|
|
63
|
+
jarvis/jarvis_treesitter/README.md,sha256=LKrziIARGc70GPZzHEnbirtfDXkgsLLFBhmA92p2wuk,3378
|
|
64
|
+
jarvis/jarvis_treesitter/__init__.py,sha256=Qkqps0PXBUKX19WzMJGISKhNwhvfaiGKMNtDSrk7vIw,526
|
|
65
|
+
jarvis/jarvis_treesitter/database.py,sha256=cTyytDVKGYfjybw0rEgdqUCHnmpOJc1qyMAIBQ_iXLs,10903
|
|
66
|
+
jarvis/jarvis_treesitter/example.py,sha256=oYHIDMYjheE7lMUAnhxXwY7onvHBjGEyY7RGOcezfQY,4225
|
|
67
|
+
jarvis/jarvis_treesitter/grammar_builder.py,sha256=cw9y0RKAJQBP87f_ocNH2NV6PEn8w8IMw1zfgDVA9c0,6048
|
|
68
|
+
jarvis/jarvis_treesitter/language.py,sha256=6OKO90PrivAwd4xKlF9JiLzvqjg2beakLU_b6RADib4,3744
|
|
69
|
+
jarvis/jarvis_treesitter/symbol.py,sha256=ln3xmc0LugSaqyQ_27rXAoI4zFzHdEXZ-NQCv0wV76c,860
|
|
70
|
+
jarvis/jarvis_treesitter/tools_usage.md,sha256=cmrYNGh3n-eI3dyVP0yP7bQcscsn-JSRuwP4Si9KMNc,3558
|
|
71
|
+
jarvis/jarvis_utils/__init__.py,sha256=THxqKNkLvhnuoZRSQHCJ2-0epoZRrtrekJPQ3savarM,824
|
|
72
|
+
jarvis/jarvis_utils/config.py,sha256=j1Hqqluxo7W6BUpScjBtKUJpYKRw-DU0qlQSa8vvUtQ,4999
|
|
73
|
+
jarvis/jarvis_utils/embedding.py,sha256=vaY4lTE9Yw0joQVWTX1FxV0ZnnOz6W9vjQE1NASzXIk,6110
|
|
74
|
+
jarvis/jarvis_utils/git_utils.py,sha256=CmQ_SG2aIA-oO80D7plKXo4Z1lHo828YMvh47fQsGJw,4831
|
|
75
|
+
jarvis/jarvis_utils/globals.py,sha256=nvykWxBnqfAFqAIyJfxP5Y1yYIXIQXjippVE5i2Bubg,2269
|
|
76
|
+
jarvis/jarvis_utils/input.py,sha256=iY9_18Mb3WUzta7dbQW0DvWPAGq2iKPsRcKuPY3uN5k,6553
|
|
77
|
+
jarvis/jarvis_utils/methodology.py,sha256=AoiBgBKBbq-XdSouL10zLBYTPLRYzDtBZCQiU2vE_k4,6368
|
|
78
|
+
jarvis/jarvis_utils/output.py,sha256=1X4cd_M2gwL9-W2M44BwGNtmeFwFXmtC1_RvbwC_AR4,8373
|
|
79
|
+
jarvis/jarvis_utils/utils.py,sha256=zosfI__QSdNIJvVsqc4zPwOcaZ3JsXieXVlWDRLr8eY,5615
|
|
80
|
+
jarvis_ai_assistant-0.1.131.dist-info/LICENSE,sha256=AGgVgQmTqFvaztRtCAXsAMryUymB18gZif7_l2e1XOg,1063
|
|
81
|
+
jarvis_ai_assistant-0.1.131.dist-info/METADATA,sha256=84PWHYfvxswi7XKb4Tt9DojByCrJ_3eJGokjrlaWQmU,10406
|
|
82
|
+
jarvis_ai_assistant-0.1.131.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
|
|
83
|
+
jarvis_ai_assistant-0.1.131.dist-info/entry_points.txt,sha256=npKEpBACgZAF97wZgHSJNnturrh9DP33usD0kzjMXPo,771
|
|
84
|
+
jarvis_ai_assistant-0.1.131.dist-info/top_level.txt,sha256=1BOxyWfzOP_ZXj8rVTDnNCJ92bBGB0rwq8N1PCpoMIs,7
|
|
85
|
+
jarvis_ai_assistant-0.1.131.dist-info/RECORD,,
|