janito 2.3.0__py3-none-any.whl → 2.4.0__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.
Files changed (150) hide show
  1. janito/__init__.py +6 -6
  2. janito/_version.py +57 -0
  3. janito/agent/setup_agent.py +92 -18
  4. janito/agent/templates/profiles/system_prompt_template_developer.txt.j2 +44 -0
  5. janito/cli/chat_mode/bindings.py +21 -2
  6. janito/cli/chat_mode/chat_entry.py +2 -3
  7. janito/cli/chat_mode/prompt_style.py +5 -0
  8. janito/cli/chat_mode/session.py +80 -94
  9. janito/cli/chat_mode/session_profile_select.py +80 -0
  10. janito/cli/chat_mode/shell/autocomplete.py +21 -21
  11. janito/cli/chat_mode/shell/commands/__init__.py +13 -7
  12. janito/cli/chat_mode/shell/commands/_priv_check.py +5 -0
  13. janito/cli/chat_mode/shell/commands/clear.py +12 -12
  14. janito/cli/chat_mode/shell/commands/conversation_restart.py +30 -0
  15. janito/cli/chat_mode/shell/commands/execute.py +42 -0
  16. janito/cli/chat_mode/shell/commands/help.py +6 -3
  17. janito/cli/chat_mode/shell/commands/model.py +28 -0
  18. janito/cli/chat_mode/shell/commands/multi.py +51 -51
  19. janito/cli/chat_mode/shell/commands/read.py +37 -0
  20. janito/cli/chat_mode/shell/commands/tools.py +45 -18
  21. janito/cli/chat_mode/shell/commands/write.py +37 -0
  22. janito/cli/chat_mode/shell/commands.bak.zip +0 -0
  23. janito/cli/chat_mode/shell/input_history.py +62 -62
  24. janito/cli/chat_mode/shell/session.bak.zip +0 -0
  25. janito/cli/chat_mode/toolbar.py +44 -27
  26. janito/cli/cli_commands/list_models.py +35 -35
  27. janito/cli/cli_commands/list_providers.py +9 -9
  28. janito/cli/cli_commands/list_tools.py +86 -53
  29. janito/cli/cli_commands/model_selection.py +50 -50
  30. janito/cli/cli_commands/set_api_key.py +19 -19
  31. janito/cli/cli_commands/show_config.py +51 -51
  32. janito/cli/cli_commands/show_system_prompt.py +105 -62
  33. janito/cli/config.py +5 -6
  34. janito/cli/core/__init__.py +4 -4
  35. janito/cli/core/event_logger.py +59 -59
  36. janito/cli/core/runner.py +25 -18
  37. janito/cli/core/setters.py +10 -1
  38. janito/cli/core/unsetters.py +54 -54
  39. janito/cli/main_cli.py +28 -5
  40. janito/cli/prompt_core.py +18 -2
  41. janito/cli/prompt_setup.py +56 -0
  42. janito/cli/single_shot_mode/__init__.py +6 -6
  43. janito/cli/single_shot_mode/handler.py +14 -73
  44. janito/cli/verbose_output.py +1 -1
  45. janito/config.py +5 -5
  46. janito/config_manager.py +13 -0
  47. janito/drivers/anthropic/driver.py +113 -113
  48. janito/drivers/dashscope.bak.zip +0 -0
  49. janito/drivers/openai/README.md +20 -0
  50. janito/drivers/openai_responses.bak.zip +0 -0
  51. janito/event_bus/event.py +2 -2
  52. janito/formatting_token.py +54 -54
  53. janito/i18n/__init__.py +35 -35
  54. janito/i18n/messages.py +23 -23
  55. janito/i18n/pt.py +46 -47
  56. janito/llm/README.md +23 -0
  57. janito/llm/__init__.py +5 -5
  58. janito/llm/agent.py +507 -443
  59. janito/llm/driver.py +8 -0
  60. janito/llm/driver_config_builder.py +34 -34
  61. janito/llm/driver_input.py +12 -12
  62. janito/llm/message_parts.py +60 -60
  63. janito/llm/model.py +38 -38
  64. janito/llm/provider.py +196 -196
  65. janito/provider_registry.py +8 -6
  66. janito/providers/anthropic/model_info.py +22 -22
  67. janito/providers/anthropic/provider.py +2 -0
  68. janito/providers/azure_openai/provider.py +3 -0
  69. janito/providers/dashscope.bak.zip +0 -0
  70. janito/providers/deepseek/__init__.py +1 -1
  71. janito/providers/deepseek/model_info.py +16 -16
  72. janito/providers/deepseek/provider.py +94 -91
  73. janito/providers/google/provider.py +3 -0
  74. janito/providers/mistralai/provider.py +3 -0
  75. janito/providers/openai/provider.py +4 -0
  76. janito/providers/registry.py +26 -26
  77. janito/shell.bak.zip +0 -0
  78. janito/tools/DOCSTRING_STANDARD.txt +33 -0
  79. janito/tools/README.md +3 -0
  80. janito/tools/__init__.py +20 -6
  81. janito/tools/adapters/__init__.py +1 -1
  82. janito/tools/adapters/local/__init__.py +65 -62
  83. janito/tools/adapters/local/adapter.py +18 -35
  84. janito/tools/adapters/local/ask_user.py +101 -102
  85. janito/tools/adapters/local/copy_file.py +84 -84
  86. janito/tools/adapters/local/create_directory.py +69 -69
  87. janito/tools/adapters/local/create_file.py +82 -82
  88. janito/tools/adapters/local/delete_text_in_file.py +2 -2
  89. janito/tools/adapters/local/fetch_url.py +97 -97
  90. janito/tools/adapters/local/find_files.py +139 -138
  91. janito/tools/adapters/local/get_file_outline/__init__.py +1 -1
  92. janito/tools/adapters/local/get_file_outline/core.py +117 -117
  93. janito/tools/adapters/local/get_file_outline/java_outline.py +40 -40
  94. janito/tools/adapters/local/get_file_outline/markdown_outline.py +14 -14
  95. janito/tools/adapters/local/get_file_outline/python_outline.py +303 -303
  96. janito/tools/adapters/local/get_file_outline/python_outline_v2.py +156 -156
  97. janito/tools/adapters/local/get_file_outline/search_outline.py +33 -33
  98. janito/tools/adapters/local/move_file.py +2 -2
  99. janito/tools/adapters/local/open_html_in_browser.py +2 -1
  100. janito/tools/adapters/local/open_url.py +2 -2
  101. janito/tools/adapters/local/python_code_run.py +166 -166
  102. janito/tools/adapters/local/python_command_run.py +164 -164
  103. janito/tools/adapters/local/python_file_run.py +163 -163
  104. janito/tools/adapters/local/remove_directory.py +2 -2
  105. janito/tools/adapters/local/remove_file.py +2 -2
  106. janito/tools/adapters/local/replace_text_in_file.py +2 -2
  107. janito/tools/adapters/local/run_bash_command.py +176 -176
  108. janito/tools/adapters/local/run_powershell_command.py +219 -219
  109. janito/tools/adapters/local/search_text/__init__.py +1 -1
  110. janito/tools/adapters/local/search_text/core.py +201 -201
  111. janito/tools/adapters/local/search_text/pattern_utils.py +73 -73
  112. janito/tools/adapters/local/search_text/traverse_directory.py +145 -145
  113. janito/tools/adapters/local/validate_file_syntax/__init__.py +1 -1
  114. janito/tools/adapters/local/validate_file_syntax/core.py +106 -106
  115. janito/tools/adapters/local/validate_file_syntax/css_validator.py +35 -35
  116. janito/tools/adapters/local/validate_file_syntax/html_validator.py +93 -93
  117. janito/tools/adapters/local/validate_file_syntax/js_validator.py +27 -27
  118. janito/tools/adapters/local/validate_file_syntax/json_validator.py +6 -6
  119. janito/tools/adapters/local/validate_file_syntax/markdown_validator.py +109 -109
  120. janito/tools/adapters/local/validate_file_syntax/ps1_validator.py +32 -32
  121. janito/tools/adapters/local/validate_file_syntax/python_validator.py +5 -5
  122. janito/tools/adapters/local/validate_file_syntax/xml_validator.py +11 -11
  123. janito/tools/adapters/local/validate_file_syntax/yaml_validator.py +6 -6
  124. janito/tools/adapters/local/view_file.py +168 -167
  125. janito/tools/inspect_registry.py +17 -17
  126. janito/tools/outline_file.bak.zip +0 -0
  127. janito/tools/permissions.py +45 -0
  128. janito/tools/permissions_parse.py +12 -0
  129. janito/tools/tool_base.py +118 -105
  130. janito/tools/tool_events.py +58 -58
  131. janito/tools/tool_run_exception.py +12 -12
  132. janito/tools/tool_use_tracker.py +81 -81
  133. janito/tools/tool_utils.py +43 -45
  134. janito/tools/tools_adapter.py +25 -20
  135. janito/tools/tools_schema.py +104 -104
  136. {janito-2.3.0.dist-info → janito-2.4.0.dist-info}/METADATA +425 -388
  137. janito-2.4.0.dist-info/RECORD +195 -0
  138. janito/agent/templates/profiles/system_prompt_template_base_pt.txt.j2 +0 -13
  139. janito/agent/templates/profiles/system_prompt_template_main.txt.j2 +0 -37
  140. janito/cli/chat_mode/shell/commands/edit.py +0 -25
  141. janito/cli/chat_mode/shell/commands/exec.py +0 -27
  142. janito/cli/chat_mode/shell/commands/termweb_log.py +0 -92
  143. janito/cli/termweb_starter.py +0 -122
  144. janito/termweb/app.py +0 -95
  145. janito/version.py +0 -4
  146. janito-2.3.0.dist-info/RECORD +0 -181
  147. {janito-2.3.0.dist-info → janito-2.4.0.dist-info}/WHEEL +0 -0
  148. {janito-2.3.0.dist-info → janito-2.4.0.dist-info}/entry_points.txt +0 -0
  149. {janito-2.3.0.dist-info → janito-2.4.0.dist-info}/licenses/LICENSE +0 -0
  150. {janito-2.3.0.dist-info → janito-2.4.0.dist-info}/top_level.txt +0 -0
@@ -1,176 +1,176 @@
1
- from janito.tools.tool_base import ToolBase
2
- from janito.report_events import ReportAction
3
- from janito.tools.adapters.local.adapter import register_local_tool
4
- from janito.i18n import tr
5
- import subprocess
6
- import tempfile
7
- import sys
8
- import os
9
- import threading
10
-
11
-
12
- @register_local_tool
13
- class RunBashCommandTool(ToolBase):
14
- """
15
- Execute a non-interactive command using the bash shell and capture live output.
16
- This tool explicitly invokes the 'bash' shell (not just the system default shell), so it requires bash to be installed and available in the system PATH. On Windows, this will only work if bash is available (e.g., via WSL, Git Bash, or similar).
17
-
18
- Parameters:
19
- command (str): The bash command to execute.
20
- timeout (int): Timeout in seconds for the command. Defaults to 60.
21
- require_confirmation (bool): If True, require user confirmation before running. Defaults to False.
22
- requires_user_input (bool): If True, warns that the command may require user input and might hang. Defaults to False. Non-interactive commands are preferred for automation and reliability.
23
-
24
- Returns:
25
- str: File paths and line counts for stdout and stderr.
26
- """
27
- provides_execution = True
28
- tool_name = "run_bash_command"
29
-
30
- def _stream_output(self, stream, file_obj, report_func, count_func, counter):
31
- for line in stream:
32
- file_obj.write(line)
33
- file_obj.flush()
34
- report_func(line.rstrip("\r\n"), ReportAction.EXECUTE)
35
- if count_func == "stdout":
36
- counter["stdout"] += 1
37
- else:
38
- counter["stderr"] += 1
39
-
40
- def run(
41
- self,
42
- command: str,
43
- timeout: int = 60,
44
- require_confirmation: bool = False,
45
- requires_user_input: bool = False,
46
- ) -> str:
47
- if not command.strip():
48
- self.report_warning(tr("ℹ️ Empty command provided."), ReportAction.EXECUTE)
49
- return tr("Warning: Empty command provided. Operation skipped.")
50
- self.report_action(
51
- tr("🖥️ Run bash command: {command} ...\n", command=command),
52
- ReportAction.EXECUTE,
53
- )
54
- if requires_user_input:
55
- self.report_warning(
56
- tr(
57
- "⚠️ Warning: This command might be interactive, require user input, and might hang."
58
- ),
59
- ReportAction.EXECUTE,
60
- )
61
- sys.stdout.flush()
62
- try:
63
- with (
64
- tempfile.NamedTemporaryFile(
65
- mode="w+", prefix="run_bash_stdout_", delete=False, encoding="utf-8"
66
- ) as stdout_file,
67
- tempfile.NamedTemporaryFile(
68
- mode="w+", prefix="run_bash_stderr_", delete=False, encoding="utf-8"
69
- ) as stderr_file,
70
- ):
71
- env = os.environ.copy()
72
- env["PYTHONIOENCODING"] = "utf-8"
73
- env["LC_ALL"] = "C.UTF-8"
74
- env["LANG"] = "C.UTF-8"
75
- process = subprocess.Popen(
76
- ["bash", "-c", command],
77
- stdout=subprocess.PIPE,
78
- stderr=subprocess.PIPE,
79
- text=True,
80
- encoding="utf-8",
81
- bufsize=1,
82
- env=env,
83
- )
84
- counter = {"stdout": 0, "stderr": 0}
85
- stdout_thread = threading.Thread(
86
- target=self._stream_output,
87
- args=(
88
- process.stdout,
89
- stdout_file,
90
- self.report_stdout,
91
- "stdout",
92
- counter,
93
- ),
94
- )
95
- stderr_thread = threading.Thread(
96
- target=self._stream_output,
97
- args=(
98
- process.stderr,
99
- stderr_file,
100
- self.report_stderr,
101
- "stderr",
102
- counter,
103
- ),
104
- )
105
- stdout_thread.start()
106
- stderr_thread.start()
107
- try:
108
- return_code = process.wait(timeout=timeout)
109
- except subprocess.TimeoutExpired:
110
- process.kill()
111
- self.report_error(
112
- tr(
113
- " ❌ Timed out after {timeout} seconds.",
114
- timeout=timeout,
115
- ),
116
- ReportAction.EXECUTE,
117
- )
118
- return tr(
119
- "Command timed out after {timeout} seconds.", timeout=timeout
120
- )
121
- stdout_thread.join()
122
- stderr_thread.join()
123
- stdout_file.flush()
124
- stderr_file.flush()
125
- self.report_success(
126
- tr(
127
- " ✅ return code {return_code}",
128
- return_code=return_code,
129
- ),
130
- ReportAction.EXECUTE,
131
- )
132
- max_lines = 100
133
- # Read back the output for summary
134
- stdout_file.seek(0)
135
- stderr_file.seek(0)
136
- stdout_content = stdout_file.read()
137
- stderr_content = stderr_file.read()
138
- stdout_lines = counter["stdout"]
139
- stderr_lines = counter["stderr"]
140
- warning_msg = ""
141
- if requires_user_input:
142
- warning_msg = tr(
143
- "⚠️ Warning: This command might be interactive, require user input, and might hang.\n"
144
- )
145
- if stdout_lines <= max_lines and stderr_lines <= max_lines:
146
- result = warning_msg + tr(
147
- "Return code: {return_code}\n--- STDOUT ---\n{stdout_content}",
148
- return_code=return_code,
149
- stdout_content=stdout_content,
150
- )
151
- if stderr_content.strip():
152
- result += tr(
153
- "\n--- STDERR ---\n{stderr_content}",
154
- stderr_content=stderr_content,
155
- )
156
- return result
157
- else:
158
- result = warning_msg + tr(
159
- "[LARGE OUTPUT]\nstdout_file: {stdout_file} (lines: {stdout_lines})\n",
160
- stdout_file=stdout_file.name,
161
- stdout_lines=stdout_lines,
162
- )
163
- if stderr_lines > 0:
164
- result += tr(
165
- "stderr_file: {stderr_file} (lines: {stderr_lines})\n",
166
- stderr_file=stderr_file.name,
167
- stderr_lines=stderr_lines,
168
- )
169
- result += tr(
170
- "returncode: {return_code}\nUse the view_file tool to inspect the contents of these files when needed.",
171
- return_code=return_code,
172
- )
173
- return result
174
- except Exception as e:
175
- self.report_error(tr(" ❌ Error: {error}", error=e), ReportAction.EXECUTE)
176
- return tr("Error running command: {error}", error=e)
1
+ from janito.tools.tool_base import ToolBase, ToolPermissions
2
+ from janito.report_events import ReportAction
3
+ from janito.tools.adapters.local.adapter import register_local_tool
4
+ from janito.i18n import tr
5
+ import subprocess
6
+ import tempfile
7
+ import sys
8
+ import os
9
+ import threading
10
+
11
+
12
+ @register_local_tool
13
+ class RunBashCommandTool(ToolBase):
14
+ """
15
+ Execute a non-interactive command using the bash shell and capture live output.
16
+ This tool explicitly invokes the 'bash' shell (not just the system default shell), so it requires bash to be installed and available in the system PATH. On Windows, this will only work if bash is available (e.g., via WSL, Git Bash, or similar).
17
+
18
+ Args:
19
+ command (str): The bash command to execute.
20
+ timeout (int): Timeout in seconds for the command. Defaults to 60.
21
+ require_confirmation (bool): If True, require user confirmation before running. Defaults to False.
22
+ requires_user_input (bool): If True, warns that the command may require user input and might hang. Defaults to False. Non-interactive commands are preferred for automation and reliability.
23
+
24
+ Returns:
25
+ str: File paths and line counts for stdout and stderr.
26
+ """
27
+ permissions = ToolPermissions(execute=True)
28
+ tool_name = "run_bash_command"
29
+
30
+ def _stream_output(self, stream, file_obj, report_func, count_func, counter):
31
+ for line in stream:
32
+ file_obj.write(line)
33
+ file_obj.flush()
34
+ report_func(line.rstrip("\r\n"), ReportAction.EXECUTE)
35
+ if count_func == "stdout":
36
+ counter["stdout"] += 1
37
+ else:
38
+ counter["stderr"] += 1
39
+
40
+ def run(
41
+ self,
42
+ command: str,
43
+ timeout: int = 60,
44
+ require_confirmation: bool = False,
45
+ requires_user_input: bool = False,
46
+ ) -> str:
47
+ if not command.strip():
48
+ self.report_warning(tr("ℹ️ Empty command provided."), ReportAction.EXECUTE)
49
+ return tr("Warning: Empty command provided. Operation skipped.")
50
+ self.report_action(
51
+ tr("🖥️ Run bash command: {command} ...\n", command=command),
52
+ ReportAction.EXECUTE,
53
+ )
54
+ if requires_user_input:
55
+ self.report_warning(
56
+ tr(
57
+ "⚠️ Warning: This command might be interactive, require user input, and might hang."
58
+ ),
59
+ ReportAction.EXECUTE,
60
+ )
61
+ sys.stdout.flush()
62
+ try:
63
+ with (
64
+ tempfile.NamedTemporaryFile(
65
+ mode="w+", prefix="run_bash_stdout_", delete=False, encoding="utf-8"
66
+ ) as stdout_file,
67
+ tempfile.NamedTemporaryFile(
68
+ mode="w+", prefix="run_bash_stderr_", delete=False, encoding="utf-8"
69
+ ) as stderr_file,
70
+ ):
71
+ env = os.environ.copy()
72
+ env["PYTHONIOENCODING"] = "utf-8"
73
+ env["LC_ALL"] = "C.UTF-8"
74
+ env["LANG"] = "C.UTF-8"
75
+ process = subprocess.Popen(
76
+ ["bash", "-c", command],
77
+ stdout=subprocess.PIPE,
78
+ stderr=subprocess.PIPE,
79
+ text=True,
80
+ encoding="utf-8",
81
+ bufsize=1,
82
+ env=env,
83
+ )
84
+ counter = {"stdout": 0, "stderr": 0}
85
+ stdout_thread = threading.Thread(
86
+ target=self._stream_output,
87
+ args=(
88
+ process.stdout,
89
+ stdout_file,
90
+ self.report_stdout,
91
+ "stdout",
92
+ counter,
93
+ ),
94
+ )
95
+ stderr_thread = threading.Thread(
96
+ target=self._stream_output,
97
+ args=(
98
+ process.stderr,
99
+ stderr_file,
100
+ self.report_stderr,
101
+ "stderr",
102
+ counter,
103
+ ),
104
+ )
105
+ stdout_thread.start()
106
+ stderr_thread.start()
107
+ try:
108
+ return_code = process.wait(timeout=timeout)
109
+ except subprocess.TimeoutExpired:
110
+ process.kill()
111
+ self.report_error(
112
+ tr(
113
+ " ❌ Timed out after {timeout} seconds.",
114
+ timeout=timeout,
115
+ ),
116
+ ReportAction.EXECUTE,
117
+ )
118
+ return tr(
119
+ "Command timed out after {timeout} seconds.", timeout=timeout
120
+ )
121
+ stdout_thread.join()
122
+ stderr_thread.join()
123
+ stdout_file.flush()
124
+ stderr_file.flush()
125
+ self.report_success(
126
+ tr(
127
+ " ✅ return code {return_code}",
128
+ return_code=return_code,
129
+ ),
130
+ ReportAction.EXECUTE,
131
+ )
132
+ max_lines = 100
133
+ # Read back the output for summary
134
+ stdout_file.seek(0)
135
+ stderr_file.seek(0)
136
+ stdout_content = stdout_file.read()
137
+ stderr_content = stderr_file.read()
138
+ stdout_lines = counter["stdout"]
139
+ stderr_lines = counter["stderr"]
140
+ warning_msg = ""
141
+ if requires_user_input:
142
+ warning_msg = tr(
143
+ "⚠️ Warning: This command might be interactive, require user input, and might hang.\n"
144
+ )
145
+ if stdout_lines <= max_lines and stderr_lines <= max_lines:
146
+ result = warning_msg + tr(
147
+ "Return code: {return_code}\n--- STDOUT ---\n{stdout_content}",
148
+ return_code=return_code,
149
+ stdout_content=stdout_content,
150
+ )
151
+ if stderr_content.strip():
152
+ result += tr(
153
+ "\n--- STDERR ---\n{stderr_content}",
154
+ stderr_content=stderr_content,
155
+ )
156
+ return result
157
+ else:
158
+ result = warning_msg + tr(
159
+ "[LARGE OUTPUT]\nstdout_file: {stdout_file} (lines: {stdout_lines})\n",
160
+ stdout_file=stdout_file.name,
161
+ stdout_lines=stdout_lines,
162
+ )
163
+ if stderr_lines > 0:
164
+ result += tr(
165
+ "stderr_file: {stderr_file} (lines: {stderr_lines})\n",
166
+ stderr_file=stderr_file.name,
167
+ stderr_lines=stderr_lines,
168
+ )
169
+ result += tr(
170
+ "returncode: {return_code}\nUse the view_file tool to inspect the contents of these files when needed.",
171
+ return_code=return_code,
172
+ )
173
+ return result
174
+ except Exception as e:
175
+ self.report_error(tr(" ❌ Error: {error}", error=e), ReportAction.EXECUTE)
176
+ return tr("Error running command: {error}", error=e)