jarvis-ai-assistant 0.1.221__py3-none-any.whl → 0.1.222__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.
jarvis/__init__.py CHANGED
@@ -1,4 +1,4 @@
1
1
  # -*- coding: utf-8 -*-
2
2
  """Jarvis AI Assistant"""
3
3
 
4
- __version__ = "0.1.221"
4
+ __version__ = "0.1.222"
@@ -26,6 +26,10 @@ from jarvis.jarvis_platform.registry import PlatformRegistry
26
26
  # jarvis_utils 相关
27
27
  from jarvis.jarvis_utils.config import (
28
28
  get_max_token_count,
29
+ get_normal_model_name,
30
+ get_normal_platform_name,
31
+ get_thinking_model_name,
32
+ get_thinking_platform_name,
29
33
  is_execute_tool_confirm,
30
34
  is_use_analysis,
31
35
  is_use_methodology,
@@ -93,8 +97,7 @@ class Agent:
93
97
  system_prompt: str,
94
98
  name: str = "Jarvis",
95
99
  description: str = "",
96
- platform: Union[Optional[BasePlatform], Optional[str]] = None,
97
- model_name: Optional[str] = None,
100
+ llm_type: str = "normal",
98
101
  summary_prompt: Optional[str] = None,
99
102
  auto_complete: bool = False,
100
103
  output_handler: List[OutputHandlerProtocol] = [],
@@ -114,8 +117,7 @@ class Agent:
114
117
  system_prompt: 系统提示词,定义Agent的行为准则
115
118
  name: Agent名称,默认为"Jarvis"
116
119
  description: Agent描述信息
117
- platform: 平台实例或平台名称字符串
118
- model_name: 使用的模型名称
120
+ llm_type: LLM类型,可以是 'normal' 或 'thinking'
119
121
  summary_prompt: 任务总结提示模板
120
122
  auto_complete: 是否自动完成任务
121
123
  output_handler: 输出处理器列表
@@ -130,22 +132,21 @@ class Agent:
130
132
  self.name = make_agent_name(name)
131
133
  self.description = description
132
134
  # 初始化平台和模型
133
- if platform is not None:
134
- if isinstance(platform, str):
135
- self.model = PlatformRegistry().create_platform(platform)
136
- if self.model is None:
137
- PrettyOutput.print(
138
- f"平台 {platform} 不存在,将使用普通模型", OutputType.WARNING
139
- )
140
- self.model = PlatformRegistry().get_normal_platform()
141
- else:
142
- self.model = platform
143
- else:
144
- self.model = (
145
- PlatformRegistry.get_global_platform_registry().get_normal_platform()
135
+ if llm_type == "thinking":
136
+ platform_name = get_thinking_platform_name()
137
+ model_name = get_thinking_model_name()
138
+ else: # 默认为 normal
139
+ platform_name = get_normal_platform_name()
140
+ model_name = get_normal_model_name()
141
+
142
+ self.model = PlatformRegistry().create_platform(platform_name)
143
+ if self.model is None:
144
+ PrettyOutput.print(
145
+ f"平台 {platform_name} 不存在,将使用普通模型", OutputType.WARNING
146
146
  )
147
+ self.model = PlatformRegistry().get_normal_platform()
147
148
 
148
- if model_name is not None:
149
+ if model_name:
149
150
  self.model.set_model_name(model_name)
150
151
 
151
152
  self.user_data: Dict[str, Any] = {}
@@ -198,7 +199,7 @@ class Agent:
198
199
 
199
200
  PrettyOutput.print(welcome_message, OutputType.SYSTEM)
200
201
 
201
- action_prompt = build_action_prompt(self.output_handler) # type: ignore
202
+ action_prompt = build_action_prompt(self.output_handler) # type: ignore
202
203
 
203
204
  self.model.set_system_prompt(
204
205
  f"""
@@ -245,7 +246,10 @@ class Agent:
245
246
 
246
247
  def restore_session(self) -> bool:
247
248
  """Restores the session state by delegating to the session manager."""
248
- return self.session.restore_session()
249
+ if self.session.restore_session():
250
+ self.first = False
251
+ return True
252
+ return False
249
253
 
250
254
  def get_tool_registry(self) -> Optional[Any]:
251
255
  """获取工具注册表实例"""
@@ -109,8 +109,13 @@ def _select_task(tasks: Dict[str, str]) -> str:
109
109
  def main() -> None:
110
110
 
111
111
  parser = argparse.ArgumentParser(description="Jarvis AI assistant")
112
- parser.add_argument("-p", "--platform", type=str, help="Platform to use")
113
- parser.add_argument("-m", "--model", type=str, help="Model to use")
112
+ parser.add_argument(
113
+ "--llm_type",
114
+ type=str,
115
+ default="normal",
116
+ choices=["normal", "thinking"],
117
+ help="LLM type to use",
118
+ )
114
119
  parser.add_argument(
115
120
  "-t",
116
121
  "--task",
@@ -132,8 +137,7 @@ def main() -> None:
132
137
  try:
133
138
  agent = Agent(
134
139
  system_prompt=origin_agent_system_prompt,
135
- platform=args.platform,
136
- model_name=args.model,
140
+ llm_type=args.llm_type,
137
141
  input_handler=[shell_input_handler, builtin_input_handler],
138
142
  output_handler=[ToolRegistry()],
139
143
  need_summary=False,
@@ -151,11 +155,12 @@ def main() -> None:
151
155
  agent.run(args.task)
152
156
  sys.exit(0)
153
157
 
154
- tasks = _load_tasks()
155
- if tasks and (selected_task := _select_task(tasks)):
156
- PrettyOutput.print(f"开始执行任务: \n{selected_task}", OutputType.INFO)
157
- agent.run(selected_task)
158
- sys.exit(0)
158
+ if agent.first:
159
+ tasks = _load_tasks()
160
+ if tasks and (selected_task := _select_task(tasks)):
161
+ PrettyOutput.print(f"开始执行任务: \n{selected_task}", OutputType.INFO)
162
+ agent.run(selected_task)
163
+ sys.exit(0)
159
164
 
160
165
  user_input = get_multiline_input("请输入你的任务(输入空行退出):")
161
166
  if user_input:
@@ -20,9 +20,7 @@ def load_config(config_path: str) -> dict:
20
20
  dict: 配置字典
21
21
  """
22
22
  if not os.path.exists(config_path):
23
- PrettyOutput.print(
24
- f"配置文件 {config_path} 不存在,使用默认配置", OutputType.WARNING
25
- )
23
+ PrettyOutput.print(f"配置文件 {config_path} 不存在,使用默认配置", OutputType.WARNING)
26
24
  return {}
27
25
 
28
26
  with open(config_path, "r", encoding="utf-8", errors="ignore") as f:
@@ -45,16 +43,25 @@ def main():
45
43
  "-c", "--agent_definition", type=str, help="Path to agent definition file"
46
44
  )
47
45
  parser.add_argument("-t", "--task", type=str, help="Initial task to execute")
46
+ parser.add_argument(
47
+ "--llm_type",
48
+ type=str,
49
+ default="normal",
50
+ choices=["normal", "thinking"],
51
+ help="LLM type to use, overriding config",
52
+ )
48
53
  args = parser.parse_args()
49
54
 
50
55
  # Initialize environment
51
- init_env(
52
- "欢迎使用 Jarvis AI 助手,您的智能助理已准备就绪!", config_file=args.config
53
- )
56
+ init_env("欢迎使用 Jarvis AI 助手,您的智能助理已准备就绪!", config_file=args.config)
54
57
 
55
58
  # Load configuration
56
59
  config = load_config(args.agent_definition) if args.agent_definition else {}
57
60
 
61
+ # Override config with command-line arguments if provided
62
+ if args.llm_type:
63
+ config["llm_type"] = args.llm_type
64
+
58
65
  # Create and run agent
59
66
  try:
60
67
  agent = Agent(**config)
@@ -18,7 +18,7 @@ from jarvis.jarvis_code_agent.lint import get_lint_tools
18
18
  from jarvis.jarvis_git_utils.git_commiter import GitCommitTool
19
19
  from jarvis.jarvis_platform.registry import PlatformRegistry
20
20
  from jarvis.jarvis_tools.registry import ToolRegistry
21
- from jarvis.jarvis_utils.config import is_confirm_before_apply_patch
21
+ from jarvis.jarvis_utils.config import is_confirm_before_apply_patch, is_enable_static_analysis
22
22
  from jarvis.jarvis_utils.git_utils import (
23
23
  confirm_add_new_files,
24
24
  find_git_root_and_cd,
@@ -43,8 +43,7 @@ class CodeAgent:
43
43
 
44
44
  def __init__(
45
45
  self,
46
- platform: Optional[str] = None,
47
- model: Optional[str] = None,
46
+ llm_type: str = "normal",
48
47
  need_summary: bool = True,
49
48
  ):
50
49
  self.root_dir = os.getcwd()
@@ -113,21 +112,12 @@ class CodeAgent:
113
112
  10. 我不订阅闲 AI
114
113
  </say_to_llm>
115
114
  """
116
- # 处理platform参数
117
- platform_instance = (
118
- PlatformRegistry().create_platform(platform) # type: ignore
119
- if platform
120
- else PlatformRegistry().get_normal_platform()
121
- ) # type: ignore
122
- if model:
123
- platform_instance.set_model_name(model) # type: ignore
124
-
125
115
  self.agent = Agent(
126
116
  system_prompt=code_system_prompt,
127
117
  name="CodeAgent",
128
118
  auto_complete=False,
129
119
  output_handler=[tool_registry, EditFileHandler()],
130
- platform=platform_instance,
120
+ llm_type=llm_type,
131
121
  input_handler=[shell_input_handler, builtin_input_handler],
132
122
  need_summary=need_summary,
133
123
  use_methodology=False, # 禁用方法论
@@ -374,7 +364,7 @@ class CodeAgent:
374
364
  if lint_tools_info
375
365
  else ""
376
366
  )
377
- if lint_tools_info:
367
+ if lint_tools_info and is_enable_static_analysis():
378
368
  addon_prompt = f"""
379
369
  请对以下修改的文件进行静态扫描:
380
370
  {file_list}
@@ -413,10 +403,11 @@ def main() -> None:
413
403
 
414
404
  parser = argparse.ArgumentParser(description="Jarvis Code Agent")
415
405
  parser.add_argument(
416
- "-p", "--platform", type=str, help="Target platform name", default=None
417
- )
418
- parser.add_argument(
419
- "-m", "--model", type=str, help="Model name to use", default=None
406
+ "--llm_type",
407
+ type=str,
408
+ default="normal",
409
+ choices=["normal", "thinking"],
410
+ help="LLM type to use",
420
411
  )
421
412
  parser.add_argument(
422
413
  "-r", "--requirement", type=str, help="Requirement to process", default=None
@@ -434,7 +425,7 @@ def main() -> None:
434
425
  PrettyOutput.print(f"当前目录: {git_dir}", OutputType.INFO)
435
426
 
436
427
  try:
437
- agent = CodeAgent(platform=args.platform, model=args.model, need_summary=False)
428
+ agent = CodeAgent(llm_type=args.llm_type, need_summary=False)
438
429
 
439
430
  # 尝试恢复会话
440
431
  if args.restore_session:
@@ -638,7 +638,7 @@ class CodeReviewTool:
638
638
  [在此处插入完整MARKDOWN格式的审查报告]
639
639
  {ct("REPORT")}""",
640
640
  output_handler=[tool_registry],
641
- platform=PlatformRegistry().get_thinking_platform(),
641
+ llm_type="thinking",
642
642
  auto_complete=False,
643
643
  )
644
644
 
@@ -181,6 +181,11 @@
181
181
  "description": "是否打印提示",
182
182
  "default": false
183
183
  },
184
+ "JARVIS_ENABLE_STATIC_ANALYSIS": {
185
+ "type": "boolean",
186
+ "description": "是否启用静态代码分析",
187
+ "default": true
188
+ },
184
189
  "JARVIS_RAG": {
185
190
  "type": "object",
186
191
  "description": "RAG框架的配置",
@@ -199,7 +199,7 @@ class GitCommitAnalyzer:
199
199
  [检查代码是否符合行业最佳实践和项目规范]
200
200
  {ct("REPORT")}""",
201
201
  output_handler=[tool_registry],
202
- platform=PlatformRegistry().get_normal_platform(),
202
+ llm_type="normal",
203
203
  auto_complete=True,
204
204
  )
205
205
 
@@ -26,6 +26,7 @@ class KimiModel(BasePlatform):
26
26
  return [
27
27
  ("kimi", "基于网页的 Kimi,免费接口"),
28
28
  ("k1", "基于网页的 Kimi,深度思考模型"),
29
+ ("k2", "基于网页的 Kimi,深度思考模型 K2"),
29
30
  ]
30
31
 
31
32
  def __init__(self):
@@ -278,8 +279,9 @@ class KimiModel(BasePlatform):
278
279
  "use_search": True if self.web else False,
279
280
  "extend": {"sidebar": True},
280
281
  "kimiplus_id": "kimi",
281
- "use_research": False,
282
- "use_math": False,
282
+ "use_deep_research": False,
283
+ "use_semantic_memory": True,
284
+ "history": [],
283
285
  "refs": refs,
284
286
  "refs_file": refs_file,
285
287
  "model": self.model_name,
@@ -241,6 +241,16 @@ def is_print_prompt() -> bool:
241
241
  return GLOBAL_CONFIG_DATA.get("JARVIS_PRINT_PROMPT", False) == True
242
242
 
243
243
 
244
+ def is_enable_static_analysis() -> bool:
245
+ """
246
+ 获取是否启用静态代码分析。
247
+
248
+ 返回:
249
+ bool: 如果启用静态代码分析则返回True,默认为True
250
+ """
251
+ return GLOBAL_CONFIG_DATA.get("JARVIS_ENABLE_STATIC_ANALYSIS", True) is True
252
+
253
+
244
254
  def get_mcp_config() -> List[Dict[str, Any]]:
245
255
  """
246
256
  获取MCP配置列表。
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: jarvis-ai-assistant
3
- Version: 0.1.221
3
+ Version: 0.1.222
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
@@ -117,18 +117,19 @@ pip3 install jarvis-ai-assistant
117
117
  ### 基本使用
118
118
  | 命令 | 快捷方式 | 功能描述 |
119
119
  |------|----------|----------|
120
- | `jarvis` | - | 使用通用代理 |
120
+ | `jarvis` | `jvs` | 使用通用代理 |
121
121
  | `jarvis-code-agent` | `jca` | 使用代码代理 |
122
122
  | `jarvis-smart-shell` | `jss` | 使用智能shell功能 |
123
123
  | `jarvis-platform-manager` | `jpm` | 使用平台管理功能 |
124
- | `jarvis-code-review` | - | 使用代码审查功能 |
124
+ | `jarvis-code-review` | `jcr` | 使用代码审查功能 |
125
125
  | `jarvis-git-commit` | `jgc` | 使用自动化git commit功能 |
126
- | `jarvis-git-squash` | - | 使用git squash功能 |
127
- | `jarvis-multi-agent` | - | 使用多代理功能 |
128
- | `jarvis-agent` | - | 使用agent功能 |
129
- | `jarvis-tool` | - | 使用工具功能 |
130
- | `jarvis-git-details` | - | 使用git details功能 |
131
- | `jarvis-methodology` | - | 使用方法论功能 |
126
+ | `jarvis-git-squash` | `jgs` | 使用git squash功能 |
127
+ | `jarvis-multi-agent` | `jma` | 使用多代理功能 |
128
+ | `jarvis-agent` | `ja` | 使用agent功能 |
129
+ | `jarvis-tool` | `jt` | 使用工具功能 |
130
+ | `jarvis-git-details` | `jgd` | 使用git details功能 |
131
+ | `jarvis-methodology` | `jm` | 使用方法论功能 |
132
+ | `jarvis-rag` | `jrg` | 使用RAG功能 |
132
133
 
133
134
  ### Jarvis功能 (jarvis)
134
135
 
@@ -546,6 +547,7 @@ OPENAI_API_BASE: https://api.openai.com/v1
546
547
  | `JARVIS_PRINT_PROMPT` | false | 是否打印提示 |
547
548
  | `JARVIS_USE_METHODOLOGY` | true | 是否启用方法论功能 |
548
549
  | `JARVIS_USE_ANALYSIS` | true | 是否启用任务分析功能 |
550
+ | `JARVIS_ENABLE_STATIC_ANALYSIS` | true | 是否启用静态代码分析 |
549
551
  | `JARVIS_DATA_PATH` | ~/.jarvis | Jarvis数据存储目录路径 |
550
552
  | `JARVIS_RAG` | `{"embedding_model": "BAAI/bge-base-zh-v1.5"}` | RAG框架的配置 |
551
553
 
@@ -1,9 +1,9 @@
1
- jarvis/__init__.py,sha256=TgbmsIAvNeODBETy0s6gdVjK6p08SbEz7rEqI5VYYmw,75
2
- jarvis/jarvis_agent/__init__.py,sha256=gjN3tUhHMmX3oAaAyAid4pkCW2R3zDnWLwF_qqRnix4,21443
1
+ jarvis/__init__.py,sha256=Lu57q7ek2cjrbRxkiWlJeDtZLGHx8SZDLpx0DZqgVSA,75
2
+ jarvis/jarvis_agent/__init__.py,sha256=l37t2lnXsPeQEwPkqrQWmqQ0ogh37GY-iAOQxkjttzY,21479
3
3
  jarvis/jarvis_agent/builtin_input_handler.py,sha256=lcw-VBm8-CVcblxEbGU4dVD6IixgXTLz9uBrv9Y6p20,2710
4
4
  jarvis/jarvis_agent/edit_file_handler.py,sha256=ml1o-BE2Ca1-ybPlKuhstLQYwdJag39o0_-PXTUvFaE,11646
5
- jarvis/jarvis_agent/jarvis.py,sha256=4LBtAh9_AuQcjvqBFInqY19eyEJVJtGH4py32yu8olc,6287
6
- jarvis/jarvis_agent/main.py,sha256=c6bQe-8LXvW2-NBn9Rn_yPYdrwnkJ8KQaSFY2cPvkxw,2775
5
+ jarvis/jarvis_agent/jarvis.py,sha256=2Ilt-eLs-dCvD6V1-UGyJ3PleY0AozkYhi8Rx6_zUr4,6315
6
+ jarvis/jarvis_agent/main.py,sha256=nXOw2mewhYYmj_8rohcEmETjUFqror1NiRwDusFMUKQ,3055
7
7
  jarvis/jarvis_agent/output_handler.py,sha256=P7oWpXBGFfOsWq7cIhS_z9crkQ19ES7qU5pM92KKjAs,1172
8
8
  jarvis/jarvis_agent/prompt_builder.py,sha256=PH1fPDVa8z_RXkoXHJFNDf8PQjUoLNLYwkh2lC__p40,1705
9
9
  jarvis/jarvis_agent/prompts.py,sha256=e8i-3kaGr96mlzL3UUhQUHFDfbJSoE4xiF9TDksNDm4,7720
@@ -12,9 +12,9 @@ jarvis/jarvis_agent/session_manager.py,sha256=DnvI9rWkVmkyO1XfKZyo9lTn4ajg4ccwzE
12
12
  jarvis/jarvis_agent/shell_input_handler.py,sha256=1IboqdxcJuoIqRpmDU10GugR9fWXUHyCEbVF4nIWbyo,1328
13
13
  jarvis/jarvis_agent/tool_executor.py,sha256=nIq-sPNgrtimtM-IHpN09cWmId8jDzWRdCFoRzXnnoo,1721
14
14
  jarvis/jarvis_code_agent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
- jarvis/jarvis_code_agent/code_agent.py,sha256=MnIQMuSpBM-0u8gmXthpRhPQGCBOmK7nK9OCpTwoq6c,18763
15
+ jarvis/jarvis_code_agent/code_agent.py,sha256=h6wynQYZ1pPW5efU9ufY_I1di-YzRaQBOPn9IgAuxmo,18376
16
16
  jarvis/jarvis_code_agent/lint.py,sha256=LZPsfyZPMo7Wm7LN4osZocuNJwZx1ojacO3MlF870x8,4009
17
- jarvis/jarvis_code_analysis/code_review.py,sha256=uCCbGd4Y1RjDzhZoVE8JdN2avlwOfqimSDIrcM-KMew,30456
17
+ jarvis/jarvis_code_analysis/code_review.py,sha256=Huia4w1SkhxfzAk2GNC75uo3a_BcVTCDbj0rx8_t0r4,30424
18
18
  jarvis/jarvis_code_analysis/checklists/__init__.py,sha256=LIXAYa1sW3l7foP6kohLWnE98I_EQ0T7z5bYKHq6rJA,78
19
19
  jarvis/jarvis_code_analysis/checklists/c_cpp.py,sha256=9t62bMqs6qTkFSio4SKkj88qyb5ZubWrw3MxJBQ4X1A,1317
20
20
  jarvis/jarvis_code_analysis/checklists/csharp.py,sha256=ShPXrl2_UPAnGaCHAG2wLl90COG3HK2XCSr1UK2dxN4,2420
@@ -35,10 +35,10 @@ jarvis/jarvis_code_analysis/checklists/shell.py,sha256=aRFYhQQvTgbYd-uY5pc8UHIUA
35
35
  jarvis/jarvis_code_analysis/checklists/sql.py,sha256=vR0T6qC7b4dURjJVAd7kSVxyvZEQXPG1Jqc2sNTGp5c,2355
36
36
  jarvis/jarvis_code_analysis/checklists/swift.py,sha256=TPx4I6Gupvs6tSerRKmTSKEPQpOLEbH2Y7LXg1uBgxc,2566
37
37
  jarvis/jarvis_code_analysis/checklists/web.py,sha256=25gGD7pDadZQybNFvALYxWvK0VRjGQb1NVJQElwjyk0,3943
38
- jarvis/jarvis_data/config_schema.json,sha256=RvK4XCVRGRVokguob_3-43BHRAyVFfb8tleU3QxLO1M,6520
38
+ jarvis/jarvis_data/config_schema.json,sha256=t51JvUc2IEe-QWP5bbocB7sqQAkmtUrPEHSHPfqzDjU,6668
39
39
  jarvis/jarvis_data/tiktoken/9b5ad71b2ce5302211f9c61530b329a4922fc6a4,sha256=Ijkht27pm96ZW3_3OFE-7xAPtR0YyTWXoRO8_-hlsqc,1681126
40
40
  jarvis/jarvis_git_details/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
41
- jarvis/jarvis_git_details/main.py,sha256=MjpUHB4ErR_SKPBx1TLLK_XLkH427RTtsyVn6EUd88Y,8907
41
+ jarvis/jarvis_git_details/main.py,sha256=DE1DcX-1lvUsb_K-FExpHs3NBRmo5KZb53PGa8QFBOc,8875
42
42
  jarvis/jarvis_git_squash/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
43
43
  jarvis/jarvis_git_squash/main.py,sha256=2nwX-Ghphn97Ua0SXPJIxix-rgm_Z9KRkrovjpSklUk,2311
44
44
  jarvis/jarvis_git_utils/git_commiter.py,sha256=erZ3wNJuaEgHlKTaYv0UKargG_Yl9OnssTIcErEAdtw,12472
@@ -53,7 +53,7 @@ jarvis/jarvis_platform/__init__.py,sha256=WLQHSiE87PPket2M50_hHzjdMIgPIBx2VF8JfB
53
53
  jarvis/jarvis_platform/ai8.py,sha256=yi7xG8ld4Yrf7drz-uu_JT_XCGYRB0obhygt-jKik8o,10871
54
54
  jarvis/jarvis_platform/base.py,sha256=-XegiAS8G_nzwsWPOVEAQ2iTxE33fxu5-TWV4c3Pz-g,8981
55
55
  jarvis/jarvis_platform/human.py,sha256=cSN8Lqf0ts2_pPfS2_v7PaWxQKqcW_3bSmhRTHey7Qo,4674
56
- jarvis/jarvis_platform/kimi.py,sha256=OEiRNlC4Ao3PrO_yiogEwgMtTobehoEm_X4CMGT-Aas,15315
56
+ jarvis/jarvis_platform/kimi.py,sha256=AUhz60NeADoiiuLb1nMenaiOzTAmXnT6pUDkG3WJ0ME,15425
57
57
  jarvis/jarvis_platform/openai.py,sha256=ccGqsU2cFfd5324P7SH1tSmFABpvto8fytmxQGkr3BA,6412
58
58
  jarvis/jarvis_platform/oyi.py,sha256=GvVooV8ScRqDb9QxJdINtdZwsx6PUIdo1-bt9k0hmqY,12604
59
59
  jarvis/jarvis_platform/registry.py,sha256=1bMy0YZUa8NLzuZlKfC4CBtpa0iniypTxUZk0Hv6g9Y,8415
@@ -91,7 +91,7 @@ jarvis/jarvis_tools/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG
91
91
  jarvis/jarvis_tools/cli/main.py,sha256=Mg6TQDxMdzB1Ua1UrZ2EE-uQWsbaeojWaEGHJp2HimA,6375
92
92
  jarvis/jarvis_utils/__init__.py,sha256=67h0ldisGlh3oK4DAeNEL2Bl_VsI3tSmfclasyVlueM,850
93
93
  jarvis/jarvis_utils/builtin_replace_map.py,sha256=EI8JnHqr-ZpAhpwocTu48DhHUMHNd8tNUpDNYI47OLE,1717
94
- jarvis/jarvis_utils/config.py,sha256=h7H2CRix-A6-25al3EpudmipdSq1CiIoqM2Wp8rdgqU,7778
94
+ jarvis/jarvis_utils/config.py,sha256=E8GhbpbdGyrAxTC89wN7KGE2rJ9zwhmL-HMIgTl9q18,8051
95
95
  jarvis/jarvis_utils/embedding.py,sha256=oEOEM2qf16DMYwPsQe6srET9BknyjOdY2ef0jsp3Or8,2714
96
96
  jarvis/jarvis_utils/file_processors.py,sha256=XiM248SHS7lLgQDCbORVFWqinbVDUawYxWDOsLXDxP8,3043
97
97
  jarvis/jarvis_utils/git_utils.py,sha256=4mNbEgV0icMnB1UL1RWhE9Nxik3mwam2qcGMpd1ODJM,21707
@@ -102,9 +102,9 @@ jarvis/jarvis_utils/methodology.py,sha256=-cvM6pwgJK7BXCYg2uVjIId_j3v5RUh2z2PBcK
102
102
  jarvis/jarvis_utils/output.py,sha256=PRCgudPOB8gMEP3u-g0FGD2c6tBgJhLXUMqNPglfjV8,10813
103
103
  jarvis/jarvis_utils/tag.py,sha256=f211opbbbTcSyzCDwuIK_oCnKhXPNK-RknYyGzY1yD0,431
104
104
  jarvis/jarvis_utils/utils.py,sha256=ojupkZQfFIE6ysTyCy0jUdePucpwpvZlZJSXkGsdyQE,15263
105
- jarvis_ai_assistant-0.1.221.dist-info/licenses/LICENSE,sha256=AGgVgQmTqFvaztRtCAXsAMryUymB18gZif7_l2e1XOg,1063
106
- jarvis_ai_assistant-0.1.221.dist-info/METADATA,sha256=az-ngvUTXWE8ZtSHG9mxhe69Dn7PIrmpcCi6QdloSGg,22955
107
- jarvis_ai_assistant-0.1.221.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
108
- jarvis_ai_assistant-0.1.221.dist-info/entry_points.txt,sha256=L-9EE1kKoCdzxY9iMT7dGgBad-ytc3rso4if8C19SQU,915
109
- jarvis_ai_assistant-0.1.221.dist-info/top_level.txt,sha256=1BOxyWfzOP_ZXj8rVTDnNCJ92bBGB0rwq8N1PCpoMIs,7
110
- jarvis_ai_assistant-0.1.221.dist-info/RECORD,,
105
+ jarvis_ai_assistant-0.1.222.dist-info/licenses/LICENSE,sha256=AGgVgQmTqFvaztRtCAXsAMryUymB18gZif7_l2e1XOg,1063
106
+ jarvis_ai_assistant-0.1.222.dist-info/METADATA,sha256=W1aUStR_2Y2C-L6nuaQq8awBb6mSwsJVEmTNfan25qM,23103
107
+ jarvis_ai_assistant-0.1.222.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
108
+ jarvis_ai_assistant-0.1.222.dist-info/entry_points.txt,sha256=JXK_n-d9HZ_RLz959CvpK5-UPOCwssn5oAH8dAHuebA,1277
109
+ jarvis_ai_assistant-0.1.222.dist-info/top_level.txt,sha256=1BOxyWfzOP_ZXj8rVTDnNCJ92bBGB0rwq8N1PCpoMIs,7
110
+ jarvis_ai_assistant-0.1.222.dist-info/RECORD,,
@@ -1,4 +1,5 @@
1
1
  [console_scripts]
2
+ ja = jarvis.jarvis_agent.main:main
2
3
  jarvis = jarvis.jarvis_agent.jarvis:main
3
4
  jarvis-agent = jarvis.jarvis_agent.main:main
4
5
  jarvis-code-agent = jarvis.jarvis_code_agent.code_agent:main
@@ -13,6 +14,14 @@ jarvis-rag = jarvis.jarvis_rag.cli:main
13
14
  jarvis-smart-shell = jarvis.jarvis_smart_shell.main:main
14
15
  jarvis-tool = jarvis.jarvis_tools.cli.main:main
15
16
  jca = jarvis.jarvis_code_agent.code_agent:main
17
+ jcr = jarvis.jarvis_code_analysis.code_review:main
16
18
  jgc = jarvis.jarvis_git_utils.git_commiter:main
19
+ jgd = jarvis.jarvis_git_details.main:main
20
+ jgs = jarvis.jarvis_git_squash.main:main
21
+ jm = jarvis.jarvis_methodology.main:main
22
+ jma = jarvis.jarvis_multi_agent.main:main
17
23
  jpm = jarvis.jarvis_platform_manager.main:main
24
+ jrg = jarvis.jarvis_rag.cli:main
18
25
  jss = jarvis.jarvis_smart_shell.main:main
26
+ jt = jarvis.jarvis_tools.cli.main:main
27
+ jvs = jarvis.jarvis_agent.jarvis:main