janito 3.6.1__py3-none-any.whl → 3.7.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 (170) hide show
  1. janito/README.md +4 -7
  2. janito/cli/chat_mode/bindings.py +0 -50
  3. janito/cli/chat_mode/session.py +1 -12
  4. janito/cli/chat_mode/shell/commands/multi.py +0 -5
  5. janito/cli/chat_mode/shell/commands/security/allowed_sites.py +33 -47
  6. janito/cli/cli_commands/list_plugins.py +43 -52
  7. janito/cli/cli_commands/list_tools.py +1 -6
  8. janito/cli/core/getters.py +0 -3
  9. janito/cli/core/model_guesser.py +24 -40
  10. janito/cli/main_cli.py +13 -10
  11. janito/cli/prompt_core.py +9 -47
  12. janito/cli/rich_terminal_reporter.py +4 -4
  13. janito/docs/GETTING_STARTED.md +9 -8
  14. janito/drivers/openai/driver.py +0 -1
  15. janito/drivers/zai/driver.py +0 -1
  16. janito/i18n/it.py +46 -46
  17. janito/llm/agent.py +16 -32
  18. janito/llm/auth_utils.py +5 -14
  19. janito/llm/driver.py +0 -8
  20. janito/plugins/__init__.py +12 -31
  21. janito/plugins/auto_loader.py +11 -12
  22. janito/plugins/auto_loader_fixed.py +11 -12
  23. janito/{plugin_system → plugins}/base.py +2 -5
  24. janito/plugins/builtin.py +1 -15
  25. janito/plugins/core_adapter.py +11 -89
  26. janito/plugins/core_loader.py +120 -0
  27. janito/plugins/core_loader_fixed.py +125 -0
  28. janito/plugins/discovery.py +5 -5
  29. janito/plugins/discovery_core.py +9 -14
  30. janito/plugins/manager.py +1 -1
  31. janito/providers/__init__.py +0 -1
  32. janito/providers/moonshot/model_info.py +7 -7
  33. janito/providers/moonshot/provider.py +1 -1
  34. janito/tools/__init__.py +7 -41
  35. janito/tools/adapters/__init__.py +1 -6
  36. janito/tools/adapters/local/__init__.py +70 -7
  37. janito/{plugins/tools/core → tools/adapters/local}/ask_user.py +3 -3
  38. janito/tools/adapters/local/copy_file.py +87 -0
  39. janito/tools/adapters/local/create_file.py +138 -0
  40. janito/{plugins/tools/core → tools/adapters/local}/fetch_url.py +23 -20
  41. janito/tools/adapters/local/move_file.py +131 -0
  42. janito/{plugins/tools/core → tools/adapters/local}/python_code_run.py +7 -23
  43. janito/{plugins/tools/core → tools/adapters/local}/python_command_run.py +5 -21
  44. janito/{plugins/tools/core → tools/adapters/local}/python_file_run.py +5 -21
  45. janito/tools/adapters/local/remove_file.py +58 -0
  46. janito/{plugins/tools/core → tools/adapters/local}/replace_text_in_file.py +4 -4
  47. janito/{plugins/tools/core → tools/adapters/local}/run_bash_command.py +3 -3
  48. janito/{plugins/tools/core → tools/adapters/local}/run_powershell_command.py +3 -3
  49. janito/{plugins/tools/core → tools/adapters/local}/show_image.py +6 -15
  50. janito/{plugins/core/imagedisplay/tools → tools/adapters/local}/show_image_grid.py +5 -13
  51. janito/tools/adapters/local/view_file.py +172 -0
  52. janito/tools/function_adapter.py +65 -0
  53. janito/tools/loop_protection_decorator.py +117 -114
  54. janito-3.7.0.dist-info/METADATA +84 -0
  55. janito-3.7.0.dist-info/RECORD +264 -0
  56. janito/cli/cli_commands/check_tools.py +0 -212
  57. janito/data/blocked.txt +0 -96
  58. janito/llm/cancellation_manager.py +0 -63
  59. janito/llm/enter_cancellation.py +0 -107
  60. janito/plugin_system/__init__.py +0 -10
  61. janito/plugin_system/core_loader.py +0 -217
  62. janito/plugin_system/core_loader_fixed.py +0 -225
  63. janito/plugins/core/__init__.py +0 -7
  64. janito/plugins/core/codeanalyzer/__init__.py +0 -43
  65. janito/plugins/core/filemanager/__init__.py +0 -124
  66. janito/plugins/core/filemanager/tools/copy_file.py +0 -87
  67. janito/plugins/core/filemanager/tools/create_file.py +0 -87
  68. janito/plugins/core/filemanager/tools/move_file.py +0 -131
  69. janito/plugins/core/filemanager/tools/remove_file.py +0 -58
  70. janito/plugins/core/filemanager/tools/replace_text_in_file.py +0 -270
  71. janito/plugins/core/filemanager/tools/view_file.py +0 -172
  72. janito/plugins/core/imagedisplay/__init__.py +0 -14
  73. janito/plugins/core/imagedisplay/plugin.py +0 -51
  74. janito/plugins/core/imagedisplay/tools/__init__.py +0 -1
  75. janito/plugins/core/imagedisplay/tools/show_image.py +0 -83
  76. janito/plugins/core/system/__init__.py +0 -23
  77. janito/plugins/core/system/tools/run_bash_command.py +0 -204
  78. janito/plugins/core/system/tools/run_powershell_command.py +0 -234
  79. janito/plugins/dev/__init__.py +0 -7
  80. janito/plugins/dev/pythondev/__init__.py +0 -37
  81. janito/plugins/dev/visualization/__init__.py +0 -23
  82. janito/plugins/example_plugin.py +0 -108
  83. janito/plugins/tools/__init__.py +0 -39
  84. janito/plugins/tools/core/__init__.py +0 -65
  85. janito/plugins/tools/core/copy_file.py +0 -87
  86. janito/plugins/tools/core/create_directory.py +0 -70
  87. janito/plugins/tools/core/create_file.py +0 -138
  88. janito/plugins/tools/core/decorators.py +0 -19
  89. janito/plugins/tools/core/delete_text_in_file.py +0 -134
  90. janito/plugins/tools/core/find_files.py +0 -143
  91. janito/plugins/tools/core/get_file_outline/__init__.py +0 -7
  92. janito/plugins/tools/core/get_file_outline/core.py +0 -122
  93. janito/plugins/tools/core/get_file_outline/java_outline.py +0 -47
  94. janito/plugins/tools/core/get_file_outline/markdown_outline.py +0 -14
  95. janito/plugins/tools/core/get_file_outline/python_outline.py +0 -303
  96. janito/plugins/tools/core/get_file_outline/search_outline.py +0 -36
  97. janito/plugins/tools/core/move_file.py +0 -131
  98. janito/plugins/tools/core/open_html_in_browser.py +0 -51
  99. janito/plugins/tools/core/open_url.py +0 -37
  100. janito/plugins/tools/core/read_chart.py +0 -259
  101. janito/plugins/tools/core/read_files.py +0 -58
  102. janito/plugins/tools/core/remove_directory.py +0 -55
  103. janito/plugins/tools/core/remove_file.py +0 -58
  104. janito/plugins/tools/core/search_text/__init__.py +0 -7
  105. janito/plugins/tools/core/search_text/core.py +0 -205
  106. janito/plugins/tools/core/search_text/match_lines.py +0 -67
  107. janito/plugins/tools/core/search_text/pattern_utils.py +0 -73
  108. janito/plugins/tools/core/search_text/traverse_directory.py +0 -145
  109. janito/plugins/tools/core/show_image_grid.py +0 -85
  110. janito/plugins/tools/core/validate_file_syntax/__init__.py +0 -7
  111. janito/plugins/tools/core/validate_file_syntax/core.py +0 -114
  112. janito/plugins/tools/core/validate_file_syntax/css_validator.py +0 -35
  113. janito/plugins/tools/core/validate_file_syntax/html_validator.py +0 -100
  114. janito/plugins/tools/core/validate_file_syntax/jinja2_validator.py +0 -50
  115. janito/plugins/tools/core/validate_file_syntax/js_validator.py +0 -27
  116. janito/plugins/tools/core/validate_file_syntax/json_validator.py +0 -6
  117. janito/plugins/tools/core/validate_file_syntax/markdown_validator.py +0 -109
  118. janito/plugins/tools/core/validate_file_syntax/ps1_validator.py +0 -32
  119. janito/plugins/tools/core/validate_file_syntax/python_validator.py +0 -5
  120. janito/plugins/tools/core/validate_file_syntax/xml_validator.py +0 -11
  121. janito/plugins/tools/core/validate_file_syntax/yaml_validator.py +0 -6
  122. janito/plugins/tools/core/view_file.py +0 -172
  123. janito/plugins/ui/__init__.py +0 -7
  124. janito/plugins/ui/userinterface/__init__.py +0 -16
  125. janito/plugins/ui/userinterface/tools/ask_user.py +0 -110
  126. janito/plugins/web/__init__.py +0 -7
  127. janito/plugins/web/webtools/__init__.py +0 -23
  128. janito/providers/together/__init__.py +0 -1
  129. janito/providers/together/model_info.py +0 -69
  130. janito/providers/together/provider.py +0 -108
  131. janito/tools/blocked_sites.py +0 -74
  132. janito/tools/cli_initializer.py +0 -88
  133. janito/tools/initialize.py +0 -70
  134. janito-3.6.1.dist-info/METADATA +0 -228
  135. janito-3.6.1.dist-info/RECORD +0 -339
  136. /janito/{plugins/core/filemanager/tools → tools/adapters/local}/create_directory.py +0 -0
  137. /janito/{plugins/core/filemanager/tools → tools/adapters/local}/delete_text_in_file.py +0 -0
  138. /janito/{plugins/core/filemanager/tools → tools/adapters/local}/find_files.py +0 -0
  139. /janito/{plugins/core/codeanalyzer/tools → tools/adapters/local}/get_file_outline/__init__.py +0 -0
  140. /janito/{plugins/core/codeanalyzer/tools → tools/adapters/local}/get_file_outline/core.py +0 -0
  141. /janito/{plugins/core/codeanalyzer/tools → tools/adapters/local}/get_file_outline/java_outline.py +0 -0
  142. /janito/{plugins/core/codeanalyzer/tools → tools/adapters/local}/get_file_outline/markdown_outline.py +0 -0
  143. /janito/{plugins/core/codeanalyzer/tools → tools/adapters/local}/get_file_outline/python_outline.py +0 -0
  144. /janito/{plugins/core/codeanalyzer/tools → tools/adapters/local}/get_file_outline/search_outline.py +0 -0
  145. /janito/{plugins/web/webtools/tools → tools/adapters/local}/open_html_in_browser.py +0 -0
  146. /janito/{plugins/web/webtools/tools → tools/adapters/local}/open_url.py +0 -0
  147. /janito/{plugins/dev/visualization/tools → tools/adapters/local}/read_chart.py +0 -0
  148. /janito/{plugins/core/filemanager/tools → tools/adapters/local}/read_files.py +0 -0
  149. /janito/{plugins/core/filemanager/tools → tools/adapters/local}/remove_directory.py +0 -0
  150. /janito/{plugins/core/codeanalyzer/tools → tools/adapters/local}/search_text/__init__.py +0 -0
  151. /janito/{plugins/core/codeanalyzer/tools → tools/adapters/local}/search_text/core.py +0 -0
  152. /janito/{plugins/core/codeanalyzer/tools → tools/adapters/local}/search_text/match_lines.py +0 -0
  153. /janito/{plugins/core/codeanalyzer/tools → tools/adapters/local}/search_text/pattern_utils.py +0 -0
  154. /janito/{plugins/core/codeanalyzer/tools → tools/adapters/local}/search_text/traverse_directory.py +0 -0
  155. /janito/{plugins/core/filemanager/tools → tools/adapters/local}/validate_file_syntax/__init__.py +0 -0
  156. /janito/{plugins/core/filemanager/tools → tools/adapters/local}/validate_file_syntax/core.py +0 -0
  157. /janito/{plugins/core/filemanager/tools → tools/adapters/local}/validate_file_syntax/css_validator.py +0 -0
  158. /janito/{plugins/core/filemanager/tools → tools/adapters/local}/validate_file_syntax/html_validator.py +0 -0
  159. /janito/{plugins/core/filemanager/tools → tools/adapters/local}/validate_file_syntax/jinja2_validator.py +0 -0
  160. /janito/{plugins/core/filemanager/tools → tools/adapters/local}/validate_file_syntax/js_validator.py +0 -0
  161. /janito/{plugins/core/filemanager/tools → tools/adapters/local}/validate_file_syntax/json_validator.py +0 -0
  162. /janito/{plugins/core/filemanager/tools → tools/adapters/local}/validate_file_syntax/markdown_validator.py +0 -0
  163. /janito/{plugins/core/filemanager/tools → tools/adapters/local}/validate_file_syntax/ps1_validator.py +0 -0
  164. /janito/{plugins/core/filemanager/tools → tools/adapters/local}/validate_file_syntax/python_validator.py +0 -0
  165. /janito/{plugins/core/filemanager/tools → tools/adapters/local}/validate_file_syntax/xml_validator.py +0 -0
  166. /janito/{plugins/core/filemanager/tools → tools/adapters/local}/validate_file_syntax/yaml_validator.py +0 -0
  167. {janito-3.6.1.dist-info → janito-3.7.0.dist-info}/WHEEL +0 -0
  168. {janito-3.6.1.dist-info → janito-3.7.0.dist-info}/entry_points.txt +0 -0
  169. {janito-3.6.1.dist-info → janito-3.7.0.dist-info}/licenses/LICENSE +0 -0
  170. {janito-3.6.1.dist-info → janito-3.7.0.dist-info}/top_level.txt +0 -0
@@ -1,228 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: janito
3
- Version: 3.6.1
4
- Summary: A new Python package called janito.
5
- Author-email: João Pinto <janito@ikignosis.org>
6
- Project-URL: Homepage, https://github.com/ikignosis/janito
7
- Requires-Python: >=3.7
8
- Description-Content-Type: text/markdown
9
- License-File: LICENSE
10
- Requires-Dist: attrs==25.3.0
11
- Requires-Dist: rich==14.0.0
12
- Requires-Dist: pathspec==0.12.1
13
- Requires-Dist: setuptools>=61.0
14
- Requires-Dist: pyyaml>=6.0
15
- Requires-Dist: jinja2>=3.0.0
16
- Requires-Dist: prompt_toolkit>=3.0.51
17
- Requires-Dist: lxml>=5.4.0
18
- Requires-Dist: requests>=2.32.4
19
- Requires-Dist: bs4>=0.0.2
20
- Requires-Dist: questionary>=2.0.1
21
- Requires-Dist: openai>=1.68.0
22
- Requires-Dist: Pillow>=10.0.0
23
- Provides-Extra: dev
24
- Requires-Dist: pytest; extra == "dev"
25
- Requires-Dist: pre-commit; extra == "dev"
26
- Requires-Dist: ruff==0.11.9; extra == "dev"
27
- Requires-Dist: detect-secrets==1.4.0; extra == "dev"
28
- Requires-Dist: codespell==2.4.1; extra == "dev"
29
- Requires-Dist: black; extra == "dev"
30
- Requires-Dist: questionary>=2.0.1; extra == "dev"
31
- Requires-Dist: setuptools_scm>=8.0; extra == "dev"
32
- Dynamic: license-file
33
-
34
- # Janito CLI
35
-
36
- A powerful command-line tool for running LLM-powered workflows with built-in tool execution capabilities.
37
-
38
- ## Quick Start
39
-
40
- ### Installation
41
-
42
- ```bash
43
- pip install janito
44
- ```
45
-
46
- ### First-Time Setup
47
-
48
- 1. **Get your API key**: Sign up at [Moonshot AI](https://platform.moonshot.ai) and get your API key
49
- 2. **Set your API key**:
50
- ```bash
51
- janito --set-api-key YOUR_MOONSHOT_API_KEY -p moonshot
52
- ```
53
-
54
- ### Basic Usage
55
-
56
- **Moonshot (Recommended - Default Provider)**
57
- ```bash
58
- # Using the default provider (moonshot) and model
59
- janito "Create a Python script that reads a CSV file"
60
-
61
- # Using a specific Moonshot model
62
- janito -m kimi-k2-0905 "Explain quantum computing"
63
- ```
64
-
65
- **Other Providers**
66
- ```bash
67
- # OpenAI
68
- janito -p openai -m gpt-4 "Write a React component"
69
-
70
- # Anthropic
71
- janito -p anthropic -m claude-3-5-sonnet-20241022 "Analyze this code"
72
-
73
- # Google
74
- janito -p google -m gemini-2.0-flash-exp "Generate unit tests"
75
- ```
76
-
77
- ### Interactive Chat Mode
78
-
79
- Start an interactive session (default mode):
80
- ```bash
81
- janito
82
- ```
83
-
84
- Or explicitly:
85
- ```bash
86
- janito --chat
87
- ```
88
-
89
- In chat mode, you can:
90
-
91
- - Have multi-turn conversations
92
- - Execute code and commands
93
- - Read and write files
94
- - Use built-in tools
95
-
96
- ### Available Commands
97
-
98
- - `janito --list-providers` - List all supported providers
99
- - `janito --list-models` - List all available models
100
- - `janito --list-tools` - List available tools
101
- - `janito --show-config` - Show current configuration
102
-
103
- ### Configuration
104
-
105
- Set default provider and model:
106
- ```bash
107
- janito --set provider=moonshot
108
- janito --set model=kimi-k2-0905
109
- ```
110
-
111
- ## Providers
112
-
113
- ### Moonshot (Recommended)
114
-
115
- - **Models**: kimi-k2-0905, kimi-k2-turbo-preview, kimi-k2-0711-preview
116
- - **Strengths**: Excellent Chinese/English support, competitive pricing, fast responses
117
- - **Setup**: Get API key from [Moonshot AI Platform](https://platform.moonshot.ai)
118
-
119
- ### OpenAI
120
-
121
- - **Models**: gpt-5, gpt-4.1, gpt-4o, gpt-4-turbo, gpt-3.5-turbo
122
- - **Setup**: Get API key from [OpenAI Platform](https://platform.openai.com/)
123
-
124
- ### Anthropic
125
-
126
- - **Models**: claude-3-7-sonnet-20250219, claude-3-5-sonnet-20241022, claude-3-opus-20250514
127
- - **Setup**: Get API key from [Anthropic Console](https://console.anthropic.com/)
128
-
129
- ### IBM WatsonX
130
-
131
- - **Models**: ibm/granite-3-8b-instruct, ibm/granite-3-2b-instruct, meta-llama/llama-3-1-8b-instruct, meta-llama/llama-3-1-70b-instruct, mistralai/mistral-large
132
- - **Strengths**: Enterprise-grade AI, IBM Granite models, hosted Llama and Mistral models
133
- - **Setup**: Get API key and project ID from [IBM Cloud](https://cloud.ibm.com/)
134
-
135
- ### Google
136
-
137
- - **Models**: gemini-2.5-flash, gemini-2.5-pro, gemini-2.5-flash-lite-preview-06-17
138
- - **Setup**: Get API key from [Google AI Studio](https://makersuite.google.com/)
139
-
140
- ## Advanced Features
141
-
142
- ### 🚀 New in v3.1.0: Enter Key Cancellation
143
- **Chat Mode Enhancement**: Press **Enter** at any time to instantly cancel long-running requests in interactive chat mode. No more waiting for stuck requests!
144
-
145
- ### Tool Usage
146
-
147
- Janito includes powerful built-in tools for:
148
-
149
- - File operations (read, write, search)
150
- - Code execution
151
- - Web scraping
152
- - System commands
153
- - And more...
154
-
155
- ### Profiles
156
- Use predefined system prompts:
157
- ```bash
158
- janito --developer "Create a REST API" # Same as --profile developer
159
- janito --market "Analyze market trends" # Same as --profile market-analyst
160
- ```
161
-
162
- ### Environment Variables
163
- You can also configure via environment variables:
164
-
165
- **Moonshot:**
166
- ```bash
167
- export MOONSHOT_API_KEY=your_key_here
168
- export JANITO_PROVIDER=moonshot
169
- export JANITO_MODEL=kimi-k2-0905
170
- ```
171
-
172
- **OpenAI:**
173
- ```bash
174
- export OPENAI_API_KEY=your_key_here
175
- export JANITO_PROVIDER=openai
176
- export JANITO_MODEL=gpt-5
177
- ```
178
-
179
- **IBM WatsonX:**
180
- ```bash
181
- export WATSONX_API_KEY=your_key_here
182
- export WATSONX_PROJECT_ID=your_project_id
183
- export WATSONX_SPACE_ID=your_space_id # optional
184
- export JANITO_PROVIDER=ibm
185
- export JANITO_MODEL=ibm/granite-3-8b-instruct
186
- ```
187
-
188
- **Anthropic:**
189
- ```bash
190
- export ANTHROPIC_API_KEY=your_key_here
191
- export JANITO_PROVIDER=anthropic
192
- export JANITO_MODEL=claude-3-7-sonnet-20250219
193
- ```
194
-
195
- **Google:**
196
- ```bash
197
- export GOOGLE_API_KEY=your_key_here
198
- export JANITO_PROVIDER=google
199
- export JANITO_MODEL=gemini-2.5-flash
200
- ```
201
-
202
- ## Examples
203
-
204
- ### Code Generation
205
- ```bash
206
- janito "Create a Python FastAPI application with user authentication"
207
- ```
208
-
209
- ### File Analysis
210
- ```bash
211
- janito "Analyze the performance bottlenecks in my_app.py"
212
- ```
213
-
214
- ### Data Processing
215
- ```bash
216
- janito "Process this CSV file and generate summary statistics"
217
- ```
218
-
219
- ### Web Development
220
- ```bash
221
- janito "Create a responsive landing page with Tailwind CSS"
222
- ```
223
-
224
- ## Support
225
-
226
- - **Documentation**: Check individual provider directories for detailed setup guides
227
- - **Issues**: Report bugs and feature requests on GitHub
228
- - **Discord**: Join our community for help and discussions
@@ -1,339 +0,0 @@
1
- janito/README.md,sha256=F66-ZwvrjEkv7QELHKNeGh85vCc1h800oBXpUhpNbG4,4950
2
- janito/__init__.py,sha256=a0pFui3A_AfWJiUfg93yE-Vf4868bqG3y9yg2fkTIuY,244
3
- janito/__main__.py,sha256=lPQ8kAyYfyeS1KopmJ8EVY5g1YswlIqCS615mM_B_rM,70
4
- janito/_version.py,sha256=PtAVr2K9fOS5sv6aXzmcb7UaR5NLGMFOofL7Ndjh75o,2344
5
- janito/config.py,sha256=DXuC74NEywKvpTkOSrrxJGvHdL_tvXEf27pkedV3XZA,313
6
- janito/config_manager.py,sha256=0dnECwhkgk8dWYZDtHZ24lNXhYJ4PkmYEDty9Vc1s3c,6281
7
- janito/conversation_history.py,sha256=GqqEJElTVONzOMRe-9g25WCMcDi0PF7DOnqGWLTrY_8,897
8
- janito/dir_walk_utils.py,sha256=ON9EyVH7Aaik8WtCH5z8DQis9ycdoNVkjNvU16HH498,1193
9
- janito/driver_events.py,sha256=51ab7KW_W6fVZVeO0ez-HJFY4NbTI327ZlEmEsEkxQc,3405
10
- janito/exceptions.py,sha256=5YoffZeZDh2BEdPfhYG6JExvIqOoX7V7TjzrJqzoklw,1786
11
- janito/formatting.py,sha256=SMvOmL6bst3KGcI7OLa5D4DE127fQYuHZS3oY8OPsn8,2031
12
- janito/formatting_token.py,sha256=UefBF8Nn3BU8bJNQRrJWB3i3zXEwkRRZMPGuAOJaDYI,2440
13
- janito/gitignore_utils.py,sha256=P3iF9fMWAomqULq2xsoqHtI9uNIFSPcagljrxZshmLw,4110
14
- janito/hello.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
- janito/mkdocs.yml,sha256=hceV1mnCuj5Eo42jJQHSAhqHC4emiMExgnISiiwqSow,925
16
- janito/perf_singleton.py,sha256=g1h0Sdf4ydzegeEpJlMhQt4H0GQZ2hryXrdYOTL-b30,113
17
- janito/performance_collector.py,sha256=RYu4av16Trj3RljJZ8-2Gbn1KlGdJUosrcVFYtwviNI,6285
18
- janito/platform_discovery.py,sha256=JN3kC7hkxdvuj-AyrJTlbbDJjtNHke3fdlZDqGi_uz0,4621
19
- janito/provider_config.py,sha256=acn2FEgWsEIyi2AxZiuCLoP2rXDd-nXcP5VB4CZHaeE,3189
20
- janito/provider_registry.py,sha256=IRNB35Cjn4PSXMWOxKBjPg0DfUEOoL4vh63OSPxhMtk,6925
21
- janito/report_events.py,sha256=q4OR_jTZNfcqaQF_fzTjgqo6_VlUIxSGWfhpT4nJWcw,938
22
- janito/shell.bak.zip,sha256=hznHbmgfkAkjuQDJ3w73XPQh05yrtUZQxLmtGbanbYU,22
23
- janito/utils.py,sha256=eXSsMgM69YyzahgCNrJQLcEbB8ssLI1MQqaa20ONxbE,376
24
- janito/agent/setup_agent.py,sha256=DIc8gcX41CHWg6YGVSqQJuQxl1iUYk9JIR07wTvHJyk,13012
25
- janito/agent/templates/profiles/system_prompt_template_Developer_with_Python_Tools.txt.j2,sha256=gA_Br5UoM-CS8eyoYUtoPz4v2IXCjBcaRQmZ-chEEAI,4064
26
- janito/agent/templates/profiles/system_prompt_template_developer.txt.j2,sha256=6cKS-UJ8pJX3voGsMFqMrJWCCYH0aX8ZWcToRCeEbI4,3747
27
- janito/agent/templates/profiles/system_prompt_template_market_analyst.txt.j2,sha256=V9JAxdZcWkl53rmSRnrJCjHIsRM6GWEsNLno2hdKx7M,4256
28
- janito/agent/templates/profiles/system_prompt_template_model_conversation_without_tools_or_context.txt.j2,sha256=Zgoa26AlR37rjYAPl-4ydA3NdHm8ylT831IaMiGTd5o,1722
29
- janito/cli/__init__.py,sha256=xaPDOrWphBbCR63Xpcx_yfpXSJIlCaaICc4j2qpWqrM,194
30
- janito/cli/config.py,sha256=HkZ14701HzIqrvaNyDcDhGlVHfpX_uHlLp2rHmhRm_k,872
31
- janito/cli/console.py,sha256=gJolqzWL7jEPLxeuH-CwBDRFpXt976KdZOEAB2tdBDs,64
32
- janito/cli/main.py,sha256=s5odou0txf8pzTf1ADk2yV7T5m8B6cejJ81e7iu776U,312
33
- janito/cli/main_cli.py,sha256=pRAID5NyKjKClVIhXhDVPs36F2_lTnfFbK2DmG1OLdQ,16676
34
- janito/cli/prompt_core.py,sha256=AiSoZGcyuf1sl8hKQ1kExcg-kMvO4XPN2PFHmcPGPBI,13299
35
- janito/cli/prompt_handler.py,sha256=SnPTlL64noeAMGlI08VBDD5IDD8jlVMIYA4-fS8zVLg,215
36
- janito/cli/prompt_setup.py,sha256=s48gvNfZhKjsEhf4EzL1tKIGm4wDidPMDvlM6TAPYes,2116
37
- janito/cli/rich_terminal_reporter.py,sha256=EWVUt6A8Mx1UnzFqnI4EGlHHHc6VpXIk8p7wC9nI3-k,6822
38
- janito/cli/utils.py,sha256=plCQiDKIf3V8mFhhX5H9-MF2W86i-xRdWf8Xi117Z0w,677
39
- janito/cli/verbose_output.py,sha256=wY_B4of5e8Vv7w1fRwOZzNGU2JqbMdcFnGjtEr4hLus,7686
40
- janito/cli/chat_mode/bindings.py,sha256=lQYk1dJrHt4ec_RphuPlPYMG2QRoLp8Bl0mcGZqhMZE,2906
41
- janito/cli/chat_mode/chat_entry.py,sha256=RFdPd23jsA2DMHRacpjAdwI_1dFBaWrtnwyQEgb2fHA,475
42
- janito/cli/chat_mode/prompt_style.py,sha256=vsqQ9xxmrYjj1pWuVe9CayQf39fo2EIXrkKPkflSVn4,805
43
- janito/cli/chat_mode/script_runner.py,sha256=WFTFVWzg_VQrD2Ujj02XWjscfGgHwmjBeRxaEjWw9ps,6505
44
- janito/cli/chat_mode/session.py,sha256=QYJ2wpA3IlB756ooFXTSkUVa5mOWgllAkONG3Dgqm8I,19002
45
- janito/cli/chat_mode/toolbar.py,sha256=SzdWAJdcY1g2rTPZCPL6G5X8jO6ZQYjwko2-nw54_nU,3397
46
- janito/cli/chat_mode/shell/autocomplete.py,sha256=lE68MaVaodbA2VfUM0_YLqQVLBJAE_BJsd5cMtwuD-g,793
47
- janito/cli/chat_mode/shell/commands.bak.zip,sha256=I7GFjXg2ORT5NzFpicH1vQ3kchhduQsZinzqo0xO8wU,74238
48
- janito/cli/chat_mode/shell/input_history.py,sha256=9620dKYSpXfGhdd2msbuqnkNW3Drv0dZ0eisWBaGKbg,2586
49
- janito/cli/chat_mode/shell/session.bak.zip,sha256=m1GyO3Wy4G4D9sVgRO6ZDyC0VjclsmnEJsiQoer4LzI,5789
50
- janito/cli/chat_mode/shell/commands/__init__.py,sha256=27m5syilHSQlZX4AewgwIBpknQuf3hsuJhX2khVgZ6o,2464
51
- janito/cli/chat_mode/shell/commands/_priv_check.py,sha256=OBPRMZlFlLSJSfbXrLqRCqD3ISKqR0QNzBJpa7g30Ro,206
52
- janito/cli/chat_mode/shell/commands/_priv_status.py,sha256=WgCEK38Hllz3Bz4TgVgODdmo0BDaBey5t0uMyA3125k,478
53
- janito/cli/chat_mode/shell/commands/bang.py,sha256=qVCUM8ZnGE1J3yG1hjYYw7upY4PR6bhNNYfJa-NfnI4,1860
54
- janito/cli/chat_mode/shell/commands/base.py,sha256=I6-SVOcRd7q4PpoutLdrbhbqeUpJic2oyPhOSMgMihA,288
55
- janito/cli/chat_mode/shell/commands/clear.py,sha256=wYEHGYcAohUoCJlbEhiXKfDbJvuzAVK4e9uirskIllw,422
56
- janito/cli/chat_mode/shell/commands/conversation_restart.py,sha256=idPjWQ4Caps2vMOZ_tgTFOHr2U-cnf6Jqtt8wdyilGc,3848
57
- janito/cli/chat_mode/shell/commands/execute.py,sha256=ms8qM3mGc-B2rMznPVj01Lx_qYbIOBXzitVuue5nUEo,2518
58
- janito/cli/chat_mode/shell/commands/help.py,sha256=scbjpb37WT9GLrYf-Cn7MrUhL_ZUQORWVfBRTc1Y5ME,1293
59
- janito/cli/chat_mode/shell/commands/history_view.py,sha256=9dyxYpDHjT77LEIikjBQA03Ep3P2AmKXUwUnVsG0OQc,3584
60
- janito/cli/chat_mode/shell/commands/lang.py,sha256=uIelDs3gPYDZ9X9gw7iDMmiwefT7TiBo32420pq2tW8,837
61
- janito/cli/chat_mode/shell/commands/model.py,sha256=DrtQuqbac5VCpzBikpdu9vVgFVm_K9FYIjUOqmUztD4,1518
62
- janito/cli/chat_mode/shell/commands/multi.py,sha256=S6S3dlEqEFmlAOWZL5KrxUwrDoJ6JioY7Pf5rmk5-VE,2144
63
- janito/cli/chat_mode/shell/commands/privileges.py,sha256=0u6x48lZl3orBPkO04KnRqfB-w7Y_OUyg-rHrNGxx-Q,1157
64
- janito/cli/chat_mode/shell/commands/prompt.py,sha256=6mj1oUO6bodyED19-_tJVO0x-l3REzYjKhp8OKFFWy4,1790
65
- janito/cli/chat_mode/shell/commands/provider.py,sha256=p8PM7SPs-ghAfg0Tdd3jVoVpIscaCcrMZC2k5FxkE8I,1155
66
- janito/cli/chat_mode/shell/commands/read.py,sha256=Nf8pC4W_Sw3ts1bxhJKZmf2jLpjRtLddTirqbB_25oI,2331
67
- janito/cli/chat_mode/shell/commands/role.py,sha256=4Mt3okuNwOjqHbNhOFawcWB9KCLkpTDuLoDJFeXr3-E,1079
68
- janito/cli/chat_mode/shell/commands/security_command.py,sha256=w8Gg95fT0jd9CxGWx3PGNi9t2E3TNoAP18agE4sgnUo,1784
69
- janito/cli/chat_mode/shell/commands/session.py,sha256=9wsw5U24-KJgTT70KAwnGuS8MVPyvpxCJfAt_Io76O0,1574
70
- janito/cli/chat_mode/shell/commands/session_control.py,sha256=tmMGJ8IvWoBwSIJu7T6GPnFYFrmXWIG2Gr9tTni4y3U,1307
71
- janito/cli/chat_mode/shell/commands/tools.py,sha256=hc-3D8TVDgEsPF4FJf5wWjsC1STYOeqfisbrMD_3MbM,3505
72
- janito/cli/chat_mode/shell/commands/unrestricted.py,sha256=U-BvzKtG2Ut1RHKcDgDADr-M3vY7W87GuXzMrqZBut4,1701
73
- janito/cli/chat_mode/shell/commands/utility.py,sha256=K982P-UwgPLzpEvSuSBGwiQ3zC34S_6T2ork_djweQw,847
74
- janito/cli/chat_mode/shell/commands/verbose.py,sha256=HDTe0NhdcjBuhh-eJSW8iLPDeeBO95K5iSDAMAljxa4,953
75
- janito/cli/chat_mode/shell/commands/write.py,sha256=NHPj2xe8icUBcpxALIoZZ1zAsX6bhBFqBhnQPqq7fHs,2341
76
- janito/cli/chat_mode/shell/commands/security/__init__.py,sha256=od-vkuI7LqmUqz2Q42YToWauRM6IPHGeNj14867yIgM,50
77
- janito/cli/chat_mode/shell/commands/security/allowed_sites.py,sha256=pmyQnLD7Do_CaIITDlZ9Md7PqSpQAhRdnnVMMdQVFGk,3679
78
- janito/cli/chat_mode/shell/session/__init__.py,sha256=uTYE_QpZFEn7v9QE5o1LdulpCWa9vmk0OsefbBGWg_c,37
79
- janito/cli/chat_mode/shell/session/history.py,sha256=tYav6GgjAZkvWhlI_rfG6OArNqW6Wn2DTv39Hb20QYc,1262
80
- janito/cli/chat_mode/shell/session/manager.py,sha256=MwD9reHsRaly0CyRB-S1JJ0wPKz2g8Xdj2VvlU35Hgc,1001
81
- janito/cli/cli_commands/check_tools.py,sha256=cSXcF0szeWzeEK7kpg7P2cZW3sv5R1nxgCb3P7bWpyE,7182
82
- janito/cli/cli_commands/enable_disable_plugin.py,sha256=IIEg5Gz2aAW_7BKrMQTXSGF0zWBoBdrcQQMjfQ7yay4,2985
83
- janito/cli/cli_commands/list_config.py,sha256=oiQEGaGPjwjG-PrOcakpNMbbqISTsBEs7rkGH3ceQsI,1179
84
- janito/cli/cli_commands/list_drivers.py,sha256=r2ENykUcvf_9XYp6LHd3RvLXGXyVUA6oe_Pr0dyv92I,5124
85
- janito/cli/cli_commands/list_models.py,sha256=QF3Wa7OhNcJFKeBxaw0C_rDfsvJFNb-siz5uorajBvo,1595
86
- janito/cli/cli_commands/list_plugins.py,sha256=s9lZYhy8UANMj7j6c-l-nP4kJIfM_VYsGEyc3hptJ6c,8075
87
- janito/cli/cli_commands/list_profiles.py,sha256=O4k6U9iCEeNH3lM-NP_XX_E9W0h__hheLSn23241dkA,3538
88
- janito/cli/cli_commands/list_providers.py,sha256=oilrBjNL5mot1nz45XQQY6oeiSxoNvphhQYspNcEJpw,391
89
- janito/cli/cli_commands/list_providers_region.py,sha256=qrMj_gtgEMty8UH0P_O5SgWCVJ9ZKxGUp_GdsE4_EH4,2548
90
- janito/cli/cli_commands/list_tools.py,sha256=fljJ_0aYbsMVfQ1GBHVefSSZTwIRkKOak6kXug5g7VQ,3786
91
- janito/cli/cli_commands/model_selection.py,sha256=ANWtwC5glZkGMdaNtARDbEG3QmuBUcDLVxzzC5jeBNo,1643
92
- janito/cli/cli_commands/model_utils.py,sha256=4t2ZN8DYA8jxluXHiiliV8gMbF_90nKGtgU9VO4-gMg,5088
93
- janito/cli/cli_commands/ping_providers.py,sha256=hetZAKKZzQYRpRDT5OvRTOe4jYUVNZGjo8gFoyeRA3I,1921
94
- janito/cli/cli_commands/set_api_key.py,sha256=IR_hUcLjK-2oJmiIVdjc8epPsQAzqEN9MS7lSTVqmKM,1060
95
- janito/cli/cli_commands/show_config.py,sha256=ammzVEqJQCAdWFRrhI1zjjmzgTCH2l38REoT4gYJPP0,3467
96
- janito/cli/cli_commands/show_system_prompt.py,sha256=WQclY_bmJrHbIBRU1qx1WV4VyooyXVx_XQyX_4Rb1hs,6335
97
- janito/cli/core/__init__.py,sha256=YH95fhgY9yBX8RgqX9dSrEkl4exjV0T4rbmJ6xUpG-Y,196
98
- janito/cli/core/event_logger.py,sha256=1X6lR0Ax7AgF8HlPWFoY5Ystuu7Bh4ooTo78vXzeGB0,2008
99
- janito/cli/core/getters.py,sha256=53umV7aab6WrmcCle8WqU2aYnww7a7IiqtM1YZN0YvE,3016
100
- janito/cli/core/model_guesser.py,sha256=557c0FckGIVmPYCgp2hBNsjsmHAiORtoxvLTKnOk8kg,2082
101
- janito/cli/core/runner.py,sha256=gi8xke6re9AoHHNCivV50i0eUAliw8QTUdXyqMkMplM,9044
102
- janito/cli/core/setters.py,sha256=zjSUxy6iUzcrmEunFk7dA90KqbMaq2O7LTGP8wn2HxA,5378
103
- janito/cli/core/unsetters.py,sha256=FEw9gCt0vRvoCt0kRSNfVB2tzi_TqppJIx2nHPP59-k,2012
104
- janito/cli/single_shot_mode/__init__.py,sha256=Ct99pKe9tINzVW6oedZJfzfZQKWpXz-weSSCn0hrwHY,115
105
- janito/cli/single_shot_mode/handler.py,sha256=d251ObY-5bkUyccV9NYkKDF0VCKrQTrGEnwt3mtj61w,5529
106
- janito/data/blocked.txt,sha256=3Xq5kil19cbBEkvz95w0PcfyzmLWnIwz1_GQpouuGvQ,2434
107
- janito/docs/GETTING_STARTED.md,sha256=tzJkRRD-902jn6Mh7vy9r70dTpK1iIMkyIddB7-ScNc,4895
108
- janito/drivers/dashscope.bak.zip,sha256=9Pv4Xyciju8jO1lEMFVgYXexoZkxmDO3Ig6vw3ODfL8,4936
109
- janito/drivers/openai_responses.bak.zip,sha256=E43eDCHGa2tCtdjzj_pMnWDdnsOZzj8BJTR5tJp8wcM,13352
110
- janito/drivers/azure_openai/driver.py,sha256=L2rQOl1d0BHaDChHLtZszAeuWNoyYIgwuYuahE1qJps,4152
111
- janito/drivers/cerebras/__init__.py,sha256=wXWxPTy4KH5Esw8ml9h-TeApi6XXujNFY2Q4jKVdcAY,26
112
- janito/drivers/openai/README.md,sha256=bgPdaYX0pyotCoJ9t3cJbYM-teQ_YM1DAFEKLCMP32Q,666
113
- janito/drivers/openai/driver.py,sha256=06vkhNXE0CWcmFx5qBO1sGOVapAq0wiG0v5xL6YO8Kk,19627
114
- janito/drivers/zai/__init__.py,sha256=rleES3ZJEslJ8M02TdTPyxHKXxA4-e2fDJa6yjuzY8s,22
115
- janito/drivers/zai/driver.py,sha256=NK36IxMJ_rSR04bh96mqDX3dcGPySqd1KL0d194xtfw,18919
116
- janito/event_bus/__init__.py,sha256=VG6GOhKMBh0O_92D-zW8a3YitJPKDajGgPiFezTXlNE,77
117
- janito/event_bus/bus.py,sha256=LokZbAdwcWhWOyKSp7H3Ism57x4EZhxlRPjl3NE4UKU,2847
118
- janito/event_bus/event.py,sha256=MtgcBPD7cvCuubiLIyo-BWcsNSO-941HLk6bScHTJtQ,427
119
- janito/event_bus/handler.py,sha256=RhBtT1E48VEM2-k8u3HYsESw7VX5qAgiB8ZTJeKXhHc,1322
120
- janito/event_bus/queue_bus.py,sha256=l4phun3pxXxi8ZlIq8ChYaiYDVO1PZeXoOzyi3vyu20,1558
121
- janito/i18n/__init__.py,sha256=6zCIu6pSQpoMJvIRK9oOD3pkzbNeJik3lFDXse0X6ag,994
122
- janito/i18n/it.py,sha256=57xW4YE1kkMz8oNO5fBqK_YllWkHT97asaThDsGsBdM,4097
123
- janito/i18n/messages.py,sha256=fBuwOTFoygyHPkYphm6Y0r1iE8497Z4iryVAmPhMEkg,1851
124
- janito/i18n/pt.py,sha256=NlTgpDSftUfFG7FGbs7TK54vQlJVMyaZDHGcWjelwMc,4168
125
- janito/llm/README.md,sha256=6GRqCu_a9va5HCB1YqNqbshyWKFyAGlnXugrjom-xj8,1213
126
- janito/llm/__init__.py,sha256=dpyVH51qVRCw-PDyAFLAxq0zd4jl5MDcuV6Cri0D-dQ,134
127
- janito/llm/agent.py,sha256=R3jzva-Er5W1TmHXHf9APxYB51H0z1vxOF6jVda7m7U,21940
128
- janito/llm/auth.py,sha256=8Dl_orUEPhn2X6XjkO2Nr-j1HFT2YDxk1qJl9hSFI88,2286
129
- janito/llm/auth_utils.py,sha256=mcPWT2p2kGMhvR9QsHqk84utDejPJh3uyjrDOJ0dKYA,1068
130
- janito/llm/cancellation_manager.py,sha256=u-hzuuVjQmLV15YPp3cZdF8KmyQLoLv8P5ZTvgYWr7o,2194
131
- janito/llm/driver.py,sha256=iVCYGUE5bqa_MTF6p_l2VUl_2y_-IOStNeC0IWfkA3I,10394
132
- janito/llm/driver_config.py,sha256=OW0ae49EfgKDqaThuDjZBiaN78voNzwiZ6szERMqJos,1406
133
- janito/llm/driver_config_builder.py,sha256=BvWGx7vaBR5NyvPY1XNAP3lAgo1uf-T25CSsIo2kkCU,1401
134
- janito/llm/driver_input.py,sha256=Zq7IO4KdQPUraeIo6XoOaRy1IdQAyYY15RQw4JU30uA,389
135
- janito/llm/enter_cancellation.py,sha256=sE6yadsFGnKDQVBKenv1sF96wIcAP2LqymiUFJBlijU,3312
136
- janito/llm/message_parts.py,sha256=QY_0kDjaxdoErDgKPRPv1dNkkYJuXIBmHWNLiOEKAH4,1365
137
- janito/llm/model.py,sha256=EioBkdgn8hJ0iQaKN-0KbXlsrk3YKmwR9IbvoEbdVTE,1159
138
- janito/llm/provider.py,sha256=3FbhQPrWBSEoIdIi-5DWIh0DD_CM570EFf1NcuGyGko,7961
139
- janito/plugin_system/__init__.py,sha256=HoTBUooSTEsp_1FaBn-5BmzZX_p_982e4T_fCOeUlD0,290
140
- janito/plugin_system/base.py,sha256=Z0PSIj7R-hAKOeCSXC2JyBqm4rlsJoZSqkqxLe-juks,4346
141
- janito/plugin_system/core_loader.py,sha256=3zhKPWWSFlThzaRTLjGDPI_DVNRafMP5LZ5r7ei6Jo0,6843
142
- janito/plugin_system/core_loader_fixed.py,sha256=3JZnEkM4i0x4k3SJhomtVevmNl4uWhozhVyh6rcMtvE,7159
143
- janito/plugins/__init__.py,sha256=q-z28oV-0BaagZ43f__qeg13R9oA7kK7XnVEUHNRZbs,910
144
- janito/plugins/auto_loader.py,sha256=-uVDTKQToGCw1nqwAxrt4IDvgP3z3pvZoC5EXFWNm_k,2288
145
- janito/plugins/auto_loader_fixed.py,sha256=3JnGDp1enombEHsR8spRDpVrD6tSPdudysWvhyuk5Ec,2304
146
- janito/plugins/builtin.py,sha256=kbIOVmqucJKyISC5kWcgda_6IhHGA6yWoxUghc1Qtk0,3409
147
- janito/plugins/config.py,sha256=ex5f1XsKPEgIO4DgJCohPzMKAQoUdx1OdSVU0FlSr5o,2331
148
- janito/plugins/core_adapter.py,sha256=tFi9VYvb15n3yUGDF7ihALbjL7pz_PDeeEgu_3JFqTQ,4430
149
- janito/plugins/discovery.py,sha256=IGQAFPzzzZjlpMzPNdChD7ZJrCYN8QmvXPsvLBOSSjY,10120
150
- janito/plugins/discovery_core.py,sha256=3pL8kinyFuz1owqIpZDYYIvj3RrJVJHulUa36Aqsc6g,1617
151
- janito/plugins/example_plugin.py,sha256=1B0PYOSFsb2ya2VCwHr1pMJC9ivUJ7t9TtQkc8lkaGU,3136
152
- janito/plugins/manager.py,sha256=R1B-2sUD5YFLOTnp4Pfx1wZ-3Hzff--PqaOJHfllc5g,8155
153
- janito/plugins/core/__init__.py,sha256=74-nOHG97Jo7cSm_sOLwYYhS0maB1kgKdB69-bmi03k,144
154
- janito/plugins/core/codeanalyzer/__init__.py,sha256=meDla5uyJATX7zYSrmRyjjBFjSK53R_lU3Z6iiy_lxM,1056
155
- janito/plugins/core/codeanalyzer/tools/get_file_outline/__init__.py,sha256=OKV_BHnoD9h-vkcVoW6AHmsuDjjauHPCKNK0nVFl4sU,37
156
- janito/plugins/core/codeanalyzer/tools/get_file_outline/core.py,sha256=25k6a8PaDYxAfxnEAvZvOWg2BgUcgKU_BkzJmZKUMEA,4611
157
- janito/plugins/core/codeanalyzer/tools/get_file_outline/java_outline.py,sha256=_UeUY5JoQEUdlHcK8aqGTqYJl0T2KxIFXPTdwum9gKQ,1825
158
- janito/plugins/core/codeanalyzer/tools/get_file_outline/markdown_outline.py,sha256=bXEBg0D93tEBDNy8t-wh4i7WxsxfpQ2C3dX1_rmtj08,434
159
- janito/plugins/core/codeanalyzer/tools/get_file_outline/python_outline.py,sha256=RAcf9Vxec08lA06drYaNre5HCJ2lTzrRAskZ3rlyE-U,10326
160
- janito/plugins/core/codeanalyzer/tools/get_file_outline/search_outline.py,sha256=bski24TpnJVf3L0TNzkx3HfvaXwttQl4EVkwk2POQOw,1348
161
- janito/plugins/core/codeanalyzer/tools/search_text/__init__.py,sha256=FEYpF5tTtf0fiAyRGIGSn-kV-MJDkhdFIbus16mYW8Y,34
162
- janito/plugins/core/codeanalyzer/tools/search_text/core.py,sha256=Qoid7FESJGVIsFm5oasgv9vZDy0aSzqeJPBWAF2_Edo,7877
163
- janito/plugins/core/codeanalyzer/tools/search_text/match_lines.py,sha256=RLR8fZFP-Q57rY0fTENbMItmt3dJZiYX0otmGHVRjfw,2131
164
- janito/plugins/core/codeanalyzer/tools/search_text/pattern_utils.py,sha256=D7vtAr8oT0tGV0C_UUarAXS9XQtP-MTYmmc8Yg8iVTg,2362
165
- janito/plugins/core/codeanalyzer/tools/search_text/traverse_directory.py,sha256=EpL1qywAV0H29pm8-QsHrjKchKP4i4sRUOENVuNptCo,4000
166
- janito/plugins/core/filemanager/__init__.py,sha256=waUhGQ2OL59Ooes4cQOOlQdBsFQSIffevJkcZq_kaCQ,3241
167
- janito/plugins/core/filemanager/tools/copy_file.py,sha256=SBJm19Ipe5dqRE1Mxl6JSrn4bNmfObVnDr5b1mcEu6c,3682
168
- janito/plugins/core/filemanager/tools/create_directory.py,sha256=LxwqQEsnOrEphCIoaMRRx9P9bu0MzidP3Fc5q6letxc,2584
169
- janito/plugins/core/filemanager/tools/create_file.py,sha256=MDMTt3ocp1Ejo3vo7K5Ht2cMPObXiQTr5OTtLv9qOuw,3821
170
- janito/plugins/core/filemanager/tools/delete_text_in_file.py,sha256=uEeedRxXAR7_CqUc_qhbEdM0OzRi_pgnP-iDjs2Zvjk,5087
171
- janito/plugins/core/filemanager/tools/find_files.py,sha256=Zbag3aP34vc7ffJh8bOqAwXj3KiZhV--uzTVHtNb-fI,6250
172
- janito/plugins/core/filemanager/tools/move_file.py,sha256=LMGm8bn3NNyIPJG4vrlO09smXQcgzA09EwoooZxkIA8,4695
173
- janito/plugins/core/filemanager/tools/read_files.py,sha256=LzlNrQEadYF8dF97Wm8AHde2nuqbMkN5vVskQLhvFdA,2329
174
- janito/plugins/core/filemanager/tools/remove_directory.py,sha256=DEhHdmwJRl5Yp9eEukIIooMrpATCtXcv5HmaDRn8vH8,1913
175
- janito/plugins/core/filemanager/tools/remove_file.py,sha256=Imra4jGkBfAd6pnUAmbUsjN0exj2vzZWuNRXq_GOMsI,2093
176
- janito/plugins/core/filemanager/tools/replace_text_in_file.py,sha256=Y6mbPuoTpsFXKrSp51s0rz7Hhz1WHkG1sY4pZ3RoZsU,10790
177
- janito/plugins/core/filemanager/tools/view_file.py,sha256=cBKcbwbfH-UMyvQ7PmYTgsshcFmorjWtyH1kaYi7oNY,7379
178
- janito/plugins/core/filemanager/tools/validate_file_syntax/__init__.py,sha256=P53RHmas4BbHL90cMxH9m-RpMCJI8JquoJb0rpkPVVk,29
179
- janito/plugins/core/filemanager/tools/validate_file_syntax/core.py,sha256=oYCpk_kyCbseKG_xX5xQjW91bPSpzzl18TPm7mMpwPI,3714
180
- janito/plugins/core/filemanager/tools/validate_file_syntax/css_validator.py,sha256=jE5d26C_fU9k9azujbGVISn2WIRL-Ys6de4dsCq30bo,1351
181
- janito/plugins/core/filemanager/tools/validate_file_syntax/html_validator.py,sha256=VV93BRcAeUraXHc9dUyH1cs9gRwRwO84K1-L5zbJnYU,3207
182
- janito/plugins/core/filemanager/tools/validate_file_syntax/jinja2_validator.py,sha256=lfM0SsKsFygiEp1IuLNr5jdS7XJyjCLOPw2yo9vl-pY,1763
183
- janito/plugins/core/filemanager/tools/validate_file_syntax/js_validator.py,sha256=42LvgyMVhG9c2EAaSz3J9pu-yuh1oyIvRp0wN2rHiDQ,998
184
- janito/plugins/core/filemanager/tools/validate_file_syntax/json_validator.py,sha256=muCB0-bdxk9zNulzH1It3hWpYzJC3hD8LbxCnE0P5is,150
185
- janito/plugins/core/filemanager/tools/validate_file_syntax/markdown_validator.py,sha256=k4UT88fXvtclygz-nFhCMHJL5sk5WlGD-fP_cWqWMyU,3511
186
- janito/plugins/core/filemanager/tools/validate_file_syntax/ps1_validator.py,sha256=TeIkPt08t_-w2JiKksXHHK9lJNT348ZDkWoSTzMtRrI,1152
187
- janito/plugins/core/filemanager/tools/validate_file_syntax/python_validator.py,sha256=BfCO_K18qy92m-2ZVvHsbEU5e11OPo1pO9Vz4G4616E,130
188
- janito/plugins/core/filemanager/tools/validate_file_syntax/xml_validator.py,sha256=AijlsP_PgNuC8ZbGsC5vOTt3Jur76otQzkd_7qR0QFY,284
189
- janito/plugins/core/filemanager/tools/validate_file_syntax/yaml_validator.py,sha256=TgyI0HRL6ug_gBcWEm5TGJJuA4E34ZXcIzMpAbv3oJs,155
190
- janito/plugins/core/imagedisplay/__init__.py,sha256=9RxTfPaWGIk3Z2Md4Fh1tHmbn_QRXUUtKUBDUzip8xk,458
191
- janito/plugins/core/imagedisplay/plugin.py,sha256=kq32hgqAKRodyu7Dd-4fO3Lj5NLFW5LFug6kGDa2n2k,1748
192
- janito/plugins/core/imagedisplay/tools/__init__.py,sha256=z4xyfhiLUYaHBzus1AxaAWDYncPaPBqVtNipy7y9m88,38
193
- janito/plugins/core/imagedisplay/tools/show_image.py,sha256=NpQTCMfBZ4NM6DpMe0lTJYH4NHkBCruUR11E4SdLCUw,3095
194
- janito/plugins/core/imagedisplay/tools/show_image_grid.py,sha256=ZsTbDCBr38xYXbbAJBgRKTLuAOw-_C8799LwHA-1yYQ,3078
195
- janito/plugins/core/system/__init__.py,sha256=tuaUFus8jTljReloESjdYFWXIEfSEYDct59I-4gZAyc,584
196
- janito/plugins/core/system/tools/run_bash_command.py,sha256=oxDbsLHkznN7WhW4WzIblABk27onJ5EgpAlzyrJ3AfU,9020
197
- janito/plugins/core/system/tools/run_powershell_command.py,sha256=gWviIUtZvRUgde9TN_kUqYeseyVpsFmOJPMWLOb9_Nw,10152
198
- janito/plugins/dev/__init__.py,sha256=V7wIaP_LMGBtg6ldz5fmiWf0eL-lSz4vcFgZjKcHAZo,136
199
- janito/plugins/dev/pythondev/__init__.py,sha256=qAO8Ub1lwBAMcfIt6oX0clTTB2msjIIJNHBRZczhHy8,991
200
- janito/plugins/dev/visualization/__init__.py,sha256=2zJuePRWKBzuC1_XHg3cguh-JGh4GcvkdENUV3xplz4,547
201
- janito/plugins/dev/visualization/tools/read_chart.py,sha256=qQebp_MEE_x2AL_pl85uA58A4lbhLQsyGl7wiG_Cjhc,10411
202
- janito/plugins/tools/__init__.py,sha256=ZNAIrOSWmpF05ATQ91lT9esapWt-DeFVC9mLkXVflhU,842
203
- janito/plugins/tools/core/__init__.py,sha256=u6glCTNvcaT_CJb8vr62gZVUzI8QkYMe7PVfWywtZZA,1961
204
- janito/plugins/tools/core/ask_user.py,sha256=AEJUExJ7yVNMT3AyC-Qn-EU1kcPI5h5KfiLm66rNTgc,4030
205
- janito/plugins/tools/core/copy_file.py,sha256=PdqGfIIl3LyR7fwO2rbyyT4pHnBhn__xyduSA13BmvU,3652
206
- janito/plugins/tools/core/create_directory.py,sha256=63cfJD-yR5ovj3cLI_M4RlaxTdLKj2BYL5OBo7RgR14,2554
207
- janito/plugins/tools/core/create_file.py,sha256=xG1IlOdWjofUDeLgCq-TBFkMNRb2x5VfCx0Wf5iTT5o,6379
208
- janito/plugins/tools/core/decorators.py,sha256=BRAjjo4NF4_JxwPPVrrF2wtzsJXuZJkwv_QhZgPFMS4,382
209
- janito/plugins/tools/core/delete_text_in_file.py,sha256=eLv5CuBIS_bWioNdFcTafJVdRyrqnT29MylW4ziB3Jc,5030
210
- janito/plugins/tools/core/fetch_url.py,sha256=uvVLP3p5WKJA04x9lMZtqKCUCI25Zo-AQ_UVzuaxweQ,18346
211
- janito/plugins/tools/core/find_files.py,sha256=CXBoWA00SYUbHE0Sb7_L3UEcGWClhbTOx7eCyslCi0s,6220
212
- janito/plugins/tools/core/move_file.py,sha256=dcyVJjzRG7ooGzbSyg13hTWhJGyb8yL5dH9EZsi9zPg,4665
213
- janito/plugins/tools/core/open_html_in_browser.py,sha256=sq2hyxL5KIKWkMcPr0xt7_Bb3-ledZvxThuHJLJJMAc,2071
214
- janito/plugins/tools/core/open_url.py,sha256=HNHODd_NujeJCgdME1icazyHLMDlEJc_Wqj2uj7-jP4,1522
215
- janito/plugins/tools/core/python_code_run.py,sha256=6eR3Ne4bAYtlHXU4tfEafR3kkxPbkrsjbfSD3yMSgEs,7695
216
- janito/plugins/tools/core/python_command_run.py,sha256=jkYxtDyNwv57PZMP-nc3r-g32840jWR7ok1UghSZxUY,7625
217
- janito/plugins/tools/core/python_file_run.py,sha256=KdQokh1y6yBIThAprdYRfe-sNFdsZeutrtmjWh9vHV8,7549
218
- janito/plugins/tools/core/read_chart.py,sha256=eTPTQCpSVtMtfZJvU5DL0-73ytJJ16C3PRk7mHMbvY8,10381
219
- janito/plugins/tools/core/read_files.py,sha256=q61N1PHO08-holujVpUElpMS9x4DqmTRTQuxM70Pa48,2299
220
- janito/plugins/tools/core/remove_directory.py,sha256=OGcccTXG7JkWLBKFBqzpxhUx0kGi9LyyOmGVg6sT-P4,1883
221
- janito/plugins/tools/core/remove_file.py,sha256=o6bTaG3nbyMOBNPgCXUgczVtxnius7C12Z4vCeOtILg,2063
222
- janito/plugins/tools/core/replace_text_in_file.py,sha256=BIctL2LQXYE6OLuNjJuh8FKwZHZ1iwRIZOBd0PWhpSc,10909
223
- janito/plugins/tools/core/run_bash_command.py,sha256=yGCxf17pb9UNKg4X6PUkvHl9myYgsCkOY_zxLSKtM3s,7925
224
- janito/plugins/tools/core/run_powershell_command.py,sha256=hUvBTgjwzbX5h1V7FyaZZWebhQCKdkjxCyU28vG7Klg,9283
225
- janito/plugins/tools/core/show_image.py,sha256=Eb8UjwDjO0TWwrRzYxkOFQi25Yql3vzammQe45yI0iw,3032
226
- janito/plugins/tools/core/show_image_grid.py,sha256=rW8c5WPn6zY-G2MsCsoJXIe0LwLyH2fUBqcpoSiCVqw,3098
227
- janito/plugins/tools/core/view_file.py,sha256=8Q0s_GgVWE_Bholtv0YyHIB_v1v_jHg9JGQAI3jUsgI,7349
228
- janito/plugins/tools/core/get_file_outline/__init__.py,sha256=po2B4UWf4qvw3yisWkiW1VeeFl1SGvm4xhs1kNbNyCc,110
229
- janito/plugins/tools/core/get_file_outline/core.py,sha256=55miu8PS1Xx03U_bZgPuMy2XTM4Y1op6tr5kHudh578,4571
230
- janito/plugins/tools/core/get_file_outline/java_outline.py,sha256=_UeUY5JoQEUdlHcK8aqGTqYJl0T2KxIFXPTdwum9gKQ,1825
231
- janito/plugins/tools/core/get_file_outline/markdown_outline.py,sha256=bXEBg0D93tEBDNy8t-wh4i7WxsxfpQ2C3dX1_rmtj08,434
232
- janito/plugins/tools/core/get_file_outline/python_outline.py,sha256=RAcf9Vxec08lA06drYaNre5HCJ2lTzrRAskZ3rlyE-U,10326
233
- janito/plugins/tools/core/get_file_outline/search_outline.py,sha256=bski24TpnJVf3L0TNzkx3HfvaXwttQl4EVkwk2POQOw,1348
234
- janito/plugins/tools/core/search_text/__init__.py,sha256=pZo-65KTw9y0oFBCBXEyxACbS10QvAXa21icXuRyh34,101
235
- janito/plugins/tools/core/search_text/core.py,sha256=x4A3A_NWGa-ddix_wvZLL6DJjC3HJfQb_ktYjA9-Pvg,7837
236
- janito/plugins/tools/core/search_text/match_lines.py,sha256=RLR8fZFP-Q57rY0fTENbMItmt3dJZiYX0otmGHVRjfw,2131
237
- janito/plugins/tools/core/search_text/pattern_utils.py,sha256=D7vtAr8oT0tGV0C_UUarAXS9XQtP-MTYmmc8Yg8iVTg,2362
238
- janito/plugins/tools/core/search_text/traverse_directory.py,sha256=EpL1qywAV0H29pm8-QsHrjKchKP4i4sRUOENVuNptCo,4000
239
- janito/plugins/tools/core/validate_file_syntax/__init__.py,sha256=1Fp7sHG_ndTJi9xbUzpFSp9TSW-DpwN2n_psZM8mXmw,128
240
- janito/plugins/tools/core/validate_file_syntax/core.py,sha256=9JUd62fSYzB2C74pWiCckzPtUIhbe2xW4BX4ahxLApA,3686
241
- janito/plugins/tools/core/validate_file_syntax/css_validator.py,sha256=jE5d26C_fU9k9azujbGVISn2WIRL-Ys6de4dsCq30bo,1351
242
- janito/plugins/tools/core/validate_file_syntax/html_validator.py,sha256=VV93BRcAeUraXHc9dUyH1cs9gRwRwO84K1-L5zbJnYU,3207
243
- janito/plugins/tools/core/validate_file_syntax/jinja2_validator.py,sha256=lfM0SsKsFygiEp1IuLNr5jdS7XJyjCLOPw2yo9vl-pY,1763
244
- janito/plugins/tools/core/validate_file_syntax/js_validator.py,sha256=42LvgyMVhG9c2EAaSz3J9pu-yuh1oyIvRp0wN2rHiDQ,998
245
- janito/plugins/tools/core/validate_file_syntax/json_validator.py,sha256=muCB0-bdxk9zNulzH1It3hWpYzJC3hD8LbxCnE0P5is,150
246
- janito/plugins/tools/core/validate_file_syntax/markdown_validator.py,sha256=k4UT88fXvtclygz-nFhCMHJL5sk5WlGD-fP_cWqWMyU,3511
247
- janito/plugins/tools/core/validate_file_syntax/ps1_validator.py,sha256=TeIkPt08t_-w2JiKksXHHK9lJNT348ZDkWoSTzMtRrI,1152
248
- janito/plugins/tools/core/validate_file_syntax/python_validator.py,sha256=BfCO_K18qy92m-2ZVvHsbEU5e11OPo1pO9Vz4G4616E,130
249
- janito/plugins/tools/core/validate_file_syntax/xml_validator.py,sha256=AijlsP_PgNuC8ZbGsC5vOTt3Jur76otQzkd_7qR0QFY,284
250
- janito/plugins/tools/core/validate_file_syntax/yaml_validator.py,sha256=TgyI0HRL6ug_gBcWEm5TGJJuA4E34ZXcIzMpAbv3oJs,155
251
- janito/plugins/ui/__init__.py,sha256=V3bXCQO9YyWc6oiPKyXRP6YqJT_LT9330b3uukSzJ_8,122
252
- janito/plugins/ui/userinterface/__init__.py,sha256=kmno20y5PuZvv_eqDWPKEcN6Zo_vlyt-WZv-4A5e8UI,352
253
- janito/plugins/ui/userinterface/tools/ask_user.py,sha256=4xY8SUndw_OYAPzeIRxugmihxxn7Y-b2v9xYT_LGdkY,3941
254
- janito/plugins/web/__init__.py,sha256=gVPBgz06iQgBUlqHJt3TpWQErkbH_Cx_6BX6XVSYtcY,118
255
- janito/plugins/web/webtools/__init__.py,sha256=akymnsZCF1a9260obArMxt8qgbGpkAJTQCudqdMJivs,556
256
- janito/plugins/web/webtools/tools/open_html_in_browser.py,sha256=XqICIwVx5vEE77gHkaNAC-bAeEEy0DBmDksATiL-sRY,2101
257
- janito/plugins/web/webtools/tools/open_url.py,sha256=V3Sv7iLynUreLjVl5-bl-XFH_LzpTeBrS8-cvzp_7rM,1552
258
- janito/providers/__init__.py,sha256=LZcyllhmGyOXQ8duQA2Qbg0fSrahog5ATNZppNOxFK0,571
259
- janito/providers/dashscope.bak.zip,sha256=BwXxRmZreEivvRtmqbr5BR62IFVlNjAf4y6DrF2BVJo,5998
260
- janito/providers/registry.py,sha256=Ygwv9eVrTXOKhv0EKxSWQXO5WMHvajWE2Q_Lc3p7dKo,730
261
- janito/providers/alibaba/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
262
- janito/providers/alibaba/model_info.py,sha256=7S-Wl2qs54zHd7ssi_JHWK7iryAJ8dv_gJdJr5eZosU,3318
263
- janito/providers/alibaba/provider.py,sha256=FhCulaG0eMI1QJtpbsEMnQaMxIgfna4HOSO3dh09agQ,4210
264
- janito/providers/anthropic/model_info.py,sha256=m6pBh0Ia8_xC1KZ7ke_4HeHIFw7nWjnYVItnRpkCSWc,1206
265
- janito/providers/anthropic/provider.py,sha256=aGynBxCFc7oTyvGNDUkbutJCKurC_9J4AkReC2LTPYo,3023
266
- janito/providers/azure_openai/model_info.py,sha256=TMSqEpQROIIYUGAyulYJ5xGhj7CbLoaKL_JXeLbXaG0,689
267
- janito/providers/azure_openai/provider.py,sha256=q7DB2J_kaLCTDeE9reS30K9TKY6vr38ZJggT3WPPyTs,5365
268
- janito/providers/cerebras/__init__.py,sha256=w7VvVDG-AmW7axvt80TSM_HvAM7MjtH_2yM2wzy-Wok,28
269
- janito/providers/cerebras/model_info.py,sha256=kfIYk9ypKyrSSBCtyXZejDGexSkerBqNhaU1_sQQPKw,2176
270
- janito/providers/cerebras/provider.py,sha256=2O-L5pNxOVX0MfB2muUoLgj6BO-lNfwlILm1sAV_bpk,5615
271
- janito/providers/deepseek/__init__.py,sha256=4sISEpq4bJO29vxFK9cfnO-SRUmKoD7oSdeCvz0hVno,36
272
- janito/providers/deepseek/model_info.py,sha256=CzpdcUjDSjx43REcf9TydI5MrFM7quljXfEThZYo2C4,1176
273
- janito/providers/deepseek/provider.py,sha256=EmNT4GfkE_zevEalwxy6HmoTb6eD1f3UgroRzYIQ85Y,4154
274
- janito/providers/google/__init__.py,sha256=hE3OGJvLEhvNLhIK_XmCGIdrIj8MKlyGgdOLJ4mdess,38
275
- janito/providers/google/model_info.py,sha256=AakTmzvWm1GPvFzGAq6-PeE_Dpq7BmAAqmh3L8N5KKo,1126
276
- janito/providers/google/provider.py,sha256=NQVG5kovHOc2SDgWjVIwYGMqshvMUAqRAk9iMntQ52k,3606
277
- janito/providers/ibm/README.md,sha256=5RLzoS8n0i4yxDrg7qbubbIc5wkqycvhFMn_JRdBY00,2621
278
- janito/providers/ibm/__init__.py,sha256=xwB2n-GP1oUsi8LuYKMgziclSSE2yJoFR9WImuUgqNw,26
279
- janito/providers/ibm/model_info.py,sha256=ZUz_j0cEiVcT87I0xAMiIWeGgA38fFx77zJ4RO8pchM,2538
280
- janito/providers/ibm/provider.py,sha256=PvFseMD527XuBtg9SImIzwyohjnzvE7KgK-ix3Ly8K0,5362
281
- janito/providers/mistral/__init__.py,sha256=jFHSvtQro8BnHajv7M0Zf9vssXyTzLxyN2J-7ithZlo,28
282
- janito/providers/mistral/model_info.py,sha256=yeCg30ZjJ-HL4QaH7YjADKReINkDMmA3Cj28g7MyMP0,2268
283
- janito/providers/mistral/provider.py,sha256=rBFrwT40vnPi-whNCMI8o-OurIdCRxm3tkgPXBDB3Gk,4775
284
- janito/providers/moonshot/__init__.py,sha256=QBirGjijujOZuJ1UZ8c7MflSy5EHjWnuBmAr3AupbH0,29
285
- janito/providers/moonshot/model_info.py,sha256=vkMQGMhp3BbKL336n4M-GTHOySc3WrBD1K85Z7hCLzo,1014
286
- janito/providers/moonshot/provider.py,sha256=vkZ7sqL4yN5o5a_YbI_Q0CXNrcQGegviLZXhQ0Js4_I,3847
287
- janito/providers/openai/__init__.py,sha256=f0m16-sIqScjL9Mp4A0CQBZx6H3PTEy0cnE08jeaB5U,38
288
- janito/providers/openai/model_info.py,sha256=VTkq3xcx2vk0tXlFVHQxKeFzl-DL1T1J2elVOEwCdHI,4265
289
- janito/providers/openai/provider.py,sha256=PPr_qmSe5GyysnZCxhjeUVhE2LWKjKOSRel-8aaxq_U,4761
290
- janito/providers/openai/schema_generator.py,sha256=hTqeLcPTR8jeKn5DUUpo7b-EZ-V-g1WwXiX7MbHnFzE,2234
291
- janito/providers/together/__init__.py,sha256=8JguGMgLW_QUJ-G6VIypp_Uq6avi3LGwKWpEiyGRWOU,33
292
- janito/providers/together/model_info.py,sha256=4EsluZgPfZW68Uc9o5vDnUmo-hQAGIs5eTDWuR24kPg,2407
293
- janito/providers/together/provider.py,sha256=BiM8p8rlqPem_PHdOyXq08J3LZFrAKtP7PDqDSToLdI,3847
294
- janito/providers/zai/__init__.py,sha256=qtIr9_QBFaXG8xB6cRDGhS7se6ir11CWseI9azLMRBo,24
295
- janito/providers/zai/model_info.py,sha256=ldwD8enpxXv1G-YsDw4YJn31YsVueQ4vj5HgoYvnPxo,1183
296
- janito/providers/zai/provider.py,sha256=aKqDTdcwWk-FT70wTbTrTzlWx2NwRWkLoB64upiliU8,5066
297
- janito/providers/zai/schema_generator.py,sha256=0kuxbrWfNKGO9fzxFStqOpTT09ldyI6vYxeDxFN4ku8,4091
298
- janito/regions/__init__.py,sha256=DVUiWPXGKX73tj3PJcLJXdQTwhiYWlcWPNpPcNNeYhk,484
299
- janito/regions/cli.py,sha256=dFiHj1XxqhegqK1kFz-08QpYgiYniEi_ZQiDqjyUaJs,3612
300
- janito/regions/geo_utils.py,sha256=nLJ2x0tx1xMNI0_cMEiji-X8denynsaPYmXR9gGg8uk,5908
301
- janito/regions/provider_regions.py,sha256=QJdbsdgjg-WcTRqPLGtm3pHJAm2o0-Y9MgE_vNzENEk,4619
302
- janito/tools/DOCSTRING_STANDARD.txt,sha256=VLPwNgjxRVD_xZSSVvUZ4H-4bBwM-VKh_RyfzYQsYSs,1735
303
- janito/tools/README.md,sha256=5HkLpF5k4PENJER7SlDPRXj0yo9mpHvAHW4uuzhq4ak,115
304
- janito/tools/__init__.py,sha256=_B8-Q2jdfwPPxGoKUXxSbpJgcq1Sc74RsMTb9nCB_Tw,2377
305
- janito/tools/base.py,sha256=R38A9xWYh3JRYZMDSom2d1taNDy9J7HpLbZo9X2wH_o,316
306
- janito/tools/blocked_sites.py,sha256=SPq8XznJkDaJ_NIHFHPfsRb1KzySk4W_NVyGGlaRZf0,2721
307
- janito/tools/cli_initializer.py,sha256=KJbUL6_iAsaeBZl_AVrdtczSZRQBJ9RPZufHJVKwAtU,2632
308
- janito/tools/disabled_tools.py,sha256=Tx__16wtMWZ9z34cYLdH1gukwot5MCL-9kLjd5MPX6Y,2110
309
- janito/tools/initialize.py,sha256=BSwzCPCmis2n4q5W3tWBEr4MgVS4tAwBjfKoNM4CefI,2002
310
- janito/tools/inspect_registry.py,sha256=Jo7PrMPRKLuR-j_mBAk9PBcTzeJf1eQrS1ChGofgQk0,538
311
- janito/tools/loop_protection.py,sha256=WQ2Cqt459vXvrO0T1EqkEHynHlRkPzfaC83RSmXzjkM,4718
312
- janito/tools/loop_protection_decorator.py,sha256=ZCccrg24B_titDeOhaEORPq8wnRyLf1bdb8YEHK25lo,4957
313
- janito/tools/outline_file.bak.zip,sha256=EeI2cBXCwTdWVgJDNiroxKeYlkjwo6NLKeXz3J-2iZI,15607
314
- janito/tools/path_security.py,sha256=40b0hV0X3449Dht93A04Q3c9AYSsBQsBFy2BjzM83lA,8214
315
- janito/tools/path_utils.py,sha256=Rg5GE4kiu7rky6I2KTtivW6wPXzc9Qmq0_lOjwkPYlI,832
316
- janito/tools/permissions.py,sha256=_viTVXyetZC01HjI2s5c3klIJ8-RkWB1ShdOaV__loY,1508
317
- janito/tools/permissions_parse.py,sha256=LHadt0bWglm9Q2BbbVVbKePg4oa7QLeRQ-ChQZsE_dI,384
318
- janito/tools/tool_base.py,sha256=TSrXDknqIqOtY3xzuvtsxZ3qwbvmGzUruBiqVzzICfc,3689
319
- janito/tools/tool_events.py,sha256=czRtC2TYakAySBZvfHS_Q6_NY_7_krxzAzAL1ggRFWA,1527
320
- janito/tools/tool_run_exception.py,sha256=43yWgTaGBGEtRteo6FvTrane6fEVGo9FU1uOdjMRWJE,525
321
- janito/tools/tool_use_tracker.py,sha256=IaEmA22D6RuL1xMUCScOMGv0crLPwEJVGmj49cydIaM,2662
322
- janito/tools/tool_utils.py,sha256=alPm9DvtXSw_zPRKvP5GjbebPRf_nfvmWk2TNlL5Cws,1219
323
- janito/tools/tools_adapter.py,sha256=F1Wkji222dY53HMaZWf3vqVas1Bimm3UXERKvxF54Ew,21687
324
- janito/tools/tools_schema.py,sha256=rGrKrmpPNR07VXHAJ_haGBRRO-YGLOF51BlYRep9AAQ,4415
325
- janito/tools/url_whitelist.py,sha256=0CPLkHTp5HgnwgjxwgXnJmwPeZQ30q4j3YjW59hiUUE,4295
326
- janito/tools/adapters/__init__.py,sha256=H25uYM2ETMLKpKPPEPAu9-AFjxkKfSyfx3pnoXSQlVA,255
327
- janito/tools/adapters/local/__init__.py,sha256=1DVnka4iEQp8Xrs7rJVVx45fPpuVahjTFmuJhv-gN8s,249
328
- janito/tools/adapters/local/adapter.py,sha256=u4nLHTaYdwZXMi1J8lsKvlG6rOmdq9xjey_3zeyCG4k,8707
329
- janito/tools/adapters/local/copy_file.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
330
- janito/tools/adapters/local/create_file.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
331
- janito/tools/adapters/local/move_file.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
332
- janito/tools/adapters/local/remove_file.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
333
- janito/tools/adapters/local/view_file.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
334
- janito-3.6.1.dist-info/licenses/LICENSE,sha256=dXV4fOF2ZErugtN8l_Nrj5tsRTYgtjE3cgiya0UfBio,11356
335
- janito-3.6.1.dist-info/METADATA,sha256=RYuWCoaMdEUxuCs94DyZ90cb6sStUHdCs8rM8p5755s,6071
336
- janito-3.6.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
337
- janito-3.6.1.dist-info/entry_points.txt,sha256=wIo5zZxbmu4fC-ZMrsKD0T0vq7IqkOOLYhrqRGypkx4,48
338
- janito-3.6.1.dist-info/top_level.txt,sha256=m0NaVCq0-ivxbazE2-ND0EA9Hmuijj_OGkmCbnBcCig,7
339
- janito-3.6.1.dist-info/RECORD,,