janito 0.14.0__py3-none-any.whl → 1.0.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 (98) hide show
  1. janito/__init__.py +1 -5
  2. janito/__main__.py +3 -5
  3. janito/agent/__init__.py +1 -0
  4. janito/agent/agent.py +96 -0
  5. janito/agent/config.py +113 -0
  6. janito/agent/config_defaults.py +10 -0
  7. janito/agent/conversation.py +107 -0
  8. janito/agent/queued_tool_handler.py +16 -0
  9. janito/agent/runtime_config.py +30 -0
  10. janito/agent/tool_handler.py +124 -0
  11. janito/agent/tools/__init__.py +11 -0
  12. janito/agent/tools/ask_user.py +63 -0
  13. janito/agent/tools/bash_exec.py +58 -0
  14. janito/agent/tools/create_directory.py +19 -0
  15. janito/agent/tools/create_file.py +43 -0
  16. janito/agent/tools/fetch_url.py +48 -0
  17. janito/agent/tools/file_str_replace.py +48 -0
  18. janito/agent/tools/find_files.py +37 -0
  19. janito/agent/tools/gitignore_utils.py +40 -0
  20. janito/agent/tools/move_file.py +37 -0
  21. janito/agent/tools/remove_file.py +19 -0
  22. janito/agent/tools/rich_live.py +37 -0
  23. janito/agent/tools/rich_utils.py +31 -0
  24. janito/agent/tools/search_text.py +41 -0
  25. janito/agent/tools/view_file.py +34 -0
  26. janito/cli/__init__.py +0 -6
  27. janito/cli/_print_config.py +68 -0
  28. janito/cli/_utils.py +8 -0
  29. janito/cli/arg_parser.py +26 -0
  30. janito/cli/config_commands.py +131 -0
  31. janito/cli/logging_setup.py +27 -0
  32. janito/cli/main.py +39 -0
  33. janito/cli/runner.py +135 -0
  34. janito/cli_chat_shell/__init__.py +1 -0
  35. janito/cli_chat_shell/chat_loop.py +147 -0
  36. janito/cli_chat_shell/commands.py +202 -0
  37. janito/cli_chat_shell/config_shell.py +75 -0
  38. janito/cli_chat_shell/load_prompt.py +15 -0
  39. janito/cli_chat_shell/session_manager.py +60 -0
  40. janito/cli_chat_shell/ui.py +136 -0
  41. janito/render_prompt.py +12 -0
  42. janito/templates/system_instructions.j2 +36 -0
  43. janito/web/__init__.py +0 -0
  44. janito/web/__main__.py +17 -0
  45. janito/web/app.py +132 -0
  46. janito-1.0.0.dist-info/METADATA +144 -0
  47. janito-1.0.0.dist-info/RECORD +51 -0
  48. {janito-0.14.0.dist-info → janito-1.0.0.dist-info}/WHEEL +2 -1
  49. janito-1.0.0.dist-info/entry_points.txt +2 -0
  50. {janito-0.14.0.dist-info → janito-1.0.0.dist-info}/licenses/LICENSE +2 -2
  51. janito-1.0.0.dist-info/top_level.txt +1 -0
  52. janito/callbacks.py +0 -34
  53. janito/cli/agent/__init__.py +0 -7
  54. janito/cli/agent/conversation.py +0 -149
  55. janito/cli/agent/initialization.py +0 -172
  56. janito/cli/agent/query.py +0 -108
  57. janito/cli/agent.py +0 -12
  58. janito/cli/app.py +0 -182
  59. janito/cli/commands/__init__.py +0 -12
  60. janito/cli/commands/config.py +0 -242
  61. janito/cli/commands/history.py +0 -119
  62. janito/cli/commands/profile.py +0 -72
  63. janito/cli/commands/validation.py +0 -24
  64. janito/cli/commands/workspace.py +0 -31
  65. janito/cli/commands.py +0 -12
  66. janito/cli/output.py +0 -29
  67. janito/cli/utils.py +0 -22
  68. janito/config.py +0 -375
  69. janito/data/instructions_template.txt +0 -31
  70. janito/token_report.py +0 -154
  71. janito/tools/__init__.py +0 -44
  72. janito/tools/bash/bash.py +0 -84
  73. janito/tools/bash/unix_persistent_bash.py +0 -184
  74. janito/tools/bash/win_persistent_bash.py +0 -308
  75. janito/tools/decorators.py +0 -90
  76. janito/tools/delete_file.py +0 -65
  77. janito/tools/fetch_webpage/__init__.py +0 -23
  78. janito/tools/fetch_webpage/core.py +0 -182
  79. janito/tools/find_files.py +0 -220
  80. janito/tools/move_file.py +0 -72
  81. janito/tools/prompt_user.py +0 -57
  82. janito/tools/replace_file.py +0 -63
  83. janito/tools/rich_console.py +0 -176
  84. janito/tools/search_text.py +0 -226
  85. janito/tools/str_replace_editor/__init__.py +0 -6
  86. janito/tools/str_replace_editor/editor.py +0 -55
  87. janito/tools/str_replace_editor/handlers/__init__.py +0 -16
  88. janito/tools/str_replace_editor/handlers/create.py +0 -60
  89. janito/tools/str_replace_editor/handlers/insert.py +0 -100
  90. janito/tools/str_replace_editor/handlers/str_replace.py +0 -94
  91. janito/tools/str_replace_editor/handlers/undo.py +0 -64
  92. janito/tools/str_replace_editor/handlers/view.py +0 -159
  93. janito/tools/str_replace_editor/utils.py +0 -33
  94. janito/tools/think.py +0 -37
  95. janito/tools/usage_tracker.py +0 -137
  96. janito-0.14.0.dist-info/METADATA +0 -396
  97. janito-0.14.0.dist-info/RECORD +0 -53
  98. janito-0.14.0.dist-info/entry_points.txt +0 -2
@@ -1,396 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: janito
3
- Version: 0.14.0
4
- Summary: Janito CLI tool
5
- Project-URL: Homepage, https://github.com/joaompinto/janito
6
- Author-email: João Pinto <lamego.pinto@gmail.com>
7
- License-File: LICENSE
8
- Requires-Python: >=3.8
9
- Requires-Dist: anthropic>=0.5.0
10
- Requires-Dist: beautifulsoup4>=4.13.0
11
- Requires-Dist: claudine>=0.1.0
12
- Requires-Dist: jinja2>=3.0.0
13
- Requires-Dist: lxml-html-clean>=0.4.1
14
- Requires-Dist: newspaper3k>=0.2.8
15
- Requires-Dist: requests>=2.32.0
16
- Requires-Dist: rich>=13.0.0
17
- Requires-Dist: trafilatura>=1.6.0
18
- Requires-Dist: typer>=0.9.0
19
- Description-Content-Type: text/markdown
20
-
21
- # 🤖 Janito
22
-
23
- Janito is a powerful AI-assisted command-line interface (CLI) tool built with Python, leveraging Anthropic's Claude for intelligent code and file management.
24
-
25
- [![GitHub Repository](https://img.shields.io/badge/GitHub-Repository-blue?logo=github)](https://github.com/joaompinto/janito)
26
-
27
- ## ✨ Features
28
-
29
- - 🧠 Intelligent AI assistant powered by Claude
30
- - 📁 File management capabilities with real-time output
31
- - 🔍 Smart code search and editing
32
- - 💻 Interactive terminal interface with rich formatting
33
- - 📊 Detailed token usage tracking and cost reporting with cache savings analysis
34
- - 🌐 Web page fetching with content extraction capabilities
35
- - 🔄 Parameter profiles for optimizing Claude's behavior for different tasks
36
- - 📋 Line delta tracking to monitor net changes in files
37
- - 💬 Enhanced conversation history with browsing and management
38
- - 🔇 Trust mode for concise output without tool details
39
- - 🚫 No-tools mode for pure AI interactions without file system access
40
- - 📝 Custom system instructions for specialized assistant behavior
41
-
42
- ## 🛠️ System Requirements
43
-
44
- - **Python 3.8+** - Janito requires Python 3.8 or higher
45
- - **Operating Systems**:
46
- - Linux/macOS: Native support
47
- - Windows: Requires Git Bash for proper operation of CLI tools
48
- - **Anthropic API Key** - Required for Claude AI integration
49
-
50
- ## 🛠️ Installation
51
-
52
- ```bash
53
- # Install directly from PyPI
54
- pip install janito
55
- ```
56
-
57
- ### Setting up your API Key
58
-
59
- Janito requires an Anthropic API key to function. You can:
60
- 1. Set the API key: `janito --set-api-key your_api_key`
61
-
62
- For development or installation from source, please see [README_DEV.md](README_DEV.md).
63
-
64
- ## 🚀 Usage Tutorial
65
-
66
- After installation, you can start using Janito right away. Let's walk through a simple tutorial:
67
-
68
- ### Getting Started
69
-
70
- First, let's check that everything is working:
71
-
72
- ```bash
73
- # Get help and see available commands
74
- janito --help
75
- ```
76
-
77
- ### Tutorial: Creating a Simple Project
78
-
79
- Let's create a simple HTML project with Janito's help:
80
-
81
- After installing Janito, using your prefered editor and/or terminal, go to a new empty folder.
82
-
83
- Use the janito command to create a new project.
84
-
85
- ```bash
86
- # Step 1: Create a new project structure
87
- janito "Create a simple HTML page with a calculator and 3 columns with text for the 3 main activities of the Kazakh culture"
88
- ```
89
- Browse the resulting html page.
90
-
91
- ### Tutorial: Adding Features
92
-
93
- Now, let's enhance our example
94
-
95
- ```bash
96
- # Step 2: Add multiplication and division features
97
- janito "Add some svg icons and remove the calculator"
98
-
99
- ```
100
-
101
- Refresh the page
102
-
103
- ### Exploring More Features
104
-
105
- Janito offers many more capabilities:
106
-
107
- ```bash
108
- # Show detailed token usage and cost information
109
- janito --show-tokens "Explain what is in the project"
110
-
111
- # Use a specific parameter profile for creative tasks
112
- janito --profile creative "Write a fun description for our project"
113
-
114
- # Use trust mode for concise output without tool details
115
- janito --trust "Optimize the HTML code"
116
- # Or use the short alias
117
- janito -t "Optimize the HTML code"
118
-
119
- # Disable all tools for pure AI interaction
120
- janito --no-tools "Explain how HTML works"
121
-
122
- # View your conversation history
123
- janito --history
124
-
125
- # View a specific number of recent conversations
126
- janito --history 10
127
-
128
- # Continue the most recent conversation
129
- janito --continue "Please add one more line"
130
-
131
- # Continue a specific conversation using its message ID
132
- # (Janito displays the message ID after each conversation)
133
- janito --continue 'abc123def' 'Let's refine that code'
134
-
135
- # Alternative way to continue a specific conversation
136
- janito --continue-id abc123def "Let's refine that code"
137
-
138
- # Provide custom system instructions
139
- janito --system "You are a poetry expert who speaks in rhymes" "Write about coding"
140
- # Or use the short alias
141
- janito -s "You are a poetry expert who speaks in rhymes" "Write about coding"
142
-
143
- # Show current configuration and available profiles
144
- janito --show-config
145
-
146
- # You can press Ctrl+C at any time to interrupt a query
147
- # Interrupted conversations can be continued with --continue
148
- ```
149
-
150
- ## 🔧 Available Tools
151
-
152
- Janito comes with several built-in tools:
153
- - 📄 `str_replace_editor` - View, create, and edit files
154
- - 🔎 `find_files` - Find files matching patterns
155
- - 🗑️ `delete_file` - Delete files
156
- - 🔍 `search_text` - Search for text patterns in files
157
- - 🌐 `fetch_webpage` - Fetch and extract content from web pages
158
- - 📋 `move_file` - Move files from one location to another
159
- - 💻 `bash` - Execute bash commands with real-time output display
160
-
161
- ## 📊 Usage Tracking
162
-
163
- Janito includes a comprehensive token usage tracking system that helps you monitor API costs:
164
-
165
- - **Basic tracking**: By default, Janito displays a summary of token usage and cost after each query
166
- - **Detailed reporting**: Use the `--show-tokens` flag to see detailed breakdowns including:
167
- - Input and output token counts
168
- - Per-tool token usage statistics
169
- - Precise cost calculations
170
- - Cache performance metrics with savings analysis
171
- - Line delta tracking for file modifications
172
-
173
- ```bash
174
- # Show detailed token usage and cost information
175
- janito --show-tokens "Write a Python function to sort a list"
176
-
177
- # Basic usage (shows simplified token usage summary)
178
- janito "Explain Docker containers"
179
-
180
- # Use trust mode for concise output without tool details
181
- janito --trust "Create a simple Python script"
182
- # Or use the short alias
183
- janito -t "Create a simple Python script"
184
- ```
185
-
186
- The usage tracker automatically calculates cache savings, showing you how much you're saving by reusing previous responses.
187
-
188
- ## 📋 Parameter Profiles
189
-
190
- Janito offers predefined parameter profiles to optimize Claude's behavior for different tasks:
191
-
192
- - **precise**: Factual answers, documentation, structured data (temperature: 0.2)
193
- - **balanced**: Professional writing, summarization, everyday tasks (temperature: 0.5)
194
- - **conversational**: Natural dialogue, educational content (temperature: 0.7)
195
- - **creative**: Storytelling, brainstorming, marketing copy (temperature: 0.9)
196
- - **technical**: Code generation, debugging, technical problem-solving (temperature: 0.3)
197
-
198
- ```bash
199
- # Use a specific profile
200
- janito --profile creative "Write a poem about coding"
201
-
202
- # View available profiles
203
- janito --show-config
204
- ```
205
-
206
- ## 🔇 Trust Mode
207
-
208
- Janito offers a trust mode that suppresses tool outputs for a more concise execution experience:
209
-
210
- ### How It Works
211
-
212
- - When enabled with `--trust` or `-t`, Janito suppresses informational and success messages from tools
213
- - Only essential output and error messages are displayed
214
- - The final result from Claude is still shown in full
215
- - Trust mode is a per-session setting and not saved to your configuration
216
-
217
- ### Using Trust Mode
218
-
219
- ```bash
220
- # Enable trust mode with the full flag
221
- janito --trust "Create a Python script that reads a CSV file"
222
-
223
- # Or use the short alias
224
- janito -t "Create a Python script that reads a CSV file"
225
- ```
226
-
227
- This feature is particularly useful for:
228
- - Experienced users who don't need to see every step of the process
229
- - Batch processing or scripting where concise output is preferred
230
- - Focusing on results rather than the process
231
- - Creating cleaner output for documentation or sharing
232
-
233
- ## 🚫 No-Tools Mode
234
-
235
- Janito provides a no-tools mode that disables all file system and external tools for pure AI interactions:
236
-
237
- ### How It Works
238
-
239
- - When enabled with `--no-tools`, Janito disables all tools for the current session
240
- - Claude will respond based purely on its knowledge without accessing or modifying files
241
- - This mode is a per-session setting and not saved to your configuration
242
-
243
- ### Using No-Tools Mode
244
-
245
- ```bash
246
- # Enable no-tools mode
247
- janito --no-tools "Explain how Docker containers work"
248
- ```
249
-
250
- This feature is particularly useful for:
251
- - Getting general information or explanations without file system access
252
- - Brainstorming sessions where you don't need file operations
253
- - Safer operation in sensitive environments
254
- - Faster responses for queries that don't require tools
255
-
256
- ## 📝 Custom System Instructions
257
-
258
- Janito allows you to provide custom system instructions to change Claude's behavior:
259
-
260
- ### How It Works
261
-
262
- - When provided with `--system` or `-s`, Janito uses your custom instructions instead of the default
263
- - This allows you to create specialized assistant personalities or behaviors
264
- - Custom instructions are a per-session setting and not saved to your configuration
265
-
266
- ### Using Custom System Instructions
267
-
268
- ```bash
269
- # Provide custom system instructions
270
- janito --system "You are a poetry expert who speaks in rhymes" "Write about coding"
271
-
272
- # Or use the short alias
273
- janito -s "You are a cybersecurity expert" "Review this authentication code"
274
- ```
275
-
276
- This feature is particularly useful for:
277
- - Creating specialized assistant personalities
278
- - Focusing Claude on specific domains or expertise
279
- - Setting up specific response formats or styles
280
- - Educational scenarios where you need different expert perspectives
281
-
282
- ## 💬 Conversation History
283
-
284
- Janito automatically saves your conversation history, allowing you to browse, manage, and continue previous discussions:
285
-
286
- ### How It Works
287
-
288
- - Each conversation is saved with a unique message ID in `.janito/last_messages/`
289
- - The most recent conversation is also saved as `.janito/last_message.json` for backward compatibility
290
- - After each conversation, Janito displays the command to continue that specific conversation
291
-
292
- ### Browsing Your History
293
-
294
- You can view your conversation history with the `--history` flag:
295
-
296
- ```bash
297
- # Show the 20 most recent conversations (default)
298
- janito --history
299
-
300
- # Show a specific number of recent conversations
301
- janito --history 10
302
- ```
303
-
304
- This displays a table with:
305
- - Conversation ID
306
- - Date and time
307
- - First query from each conversation
308
-
309
- ### Using the Continue Feature
310
-
311
- ```bash
312
- # Continue the most recent conversation
313
- janito --continue "Add more details to your previous response"
314
-
315
- # Continue a specific conversation using its ID
316
- janito --continue abc123def "Let's modify that code you suggested"
317
-
318
- # Just use --continue without arguments to continue the most recent conversation
319
- # and be prompted for your next query
320
- janito --continue
321
-
322
- # Alternative way to continue a specific conversation
323
- janito --continue-id abc123def "Let's modify that code you suggested"
324
- ```
325
-
326
- The `--continue` flag (or `-c` for short) allows you to:
327
- - Resume the most recent conversation when used without an ID
328
- - Resume a specific conversation when provided with a message ID
329
- - Maintain context across multiple interactions for complex tasks
330
-
331
- This feature is particularly useful for:
332
- - Multi-step development tasks
333
- - Iterative code improvements
334
- - Continuing discussions after system interruptions
335
- - Maintaining context when working on complex problems
336
-
337
- ## ⚙️ Dependencies
338
-
339
- Janito automatically installs the following dependencies:
340
- - typer (>=0.9.0) - For CLI interface
341
- - rich (>=13.0.0) - For rich text formatting
342
- - claudine - For Claude AI integration
343
- - Additional packages for file handling and web content extraction
344
-
345
- ## 🛠️ Command-Line Options
346
-
347
- Janito offers a variety of command-line options to customize its behavior:
348
-
349
- ```
350
- --verbose, -v Enable verbose mode with detailed output
351
- --show-tokens Show detailed token usage and pricing information
352
- --workspace, -w TEXT Set the workspace directory
353
- --set-config TEXT Configuration string in format 'key=value', e.g., 'temperature=0.7'
354
- --show-config Show current configuration
355
- --reset-config Reset configuration by removing the config file
356
- --set-api-key TEXT Set the Anthropic API key globally in the user's home directory
357
- --ask Enable ask mode which disables tools that perform changes
358
- --trust, -t Enable trust mode which suppresses tool outputs for concise execution
359
- --no-tools Disable all tools for this session (pure AI interaction)
360
- --temperature FLOAT Set the temperature for model generation (0.0 to 1.0)
361
- --profile TEXT Use a predefined parameter profile (precise, balanced, conversational, creative, technical)
362
- --role TEXT Set the assistant's role (default: 'software engineer')
363
- --system, -s TEXT Provide custom system instructions, bypassing the default file load method
364
- --version Show the version and exit
365
- --continue, -c TEXT Continue a conversation. Can be used as: 1) --continue (to continue most recent),
366
- 2) --continue 123 (to continue conversation with ID 123), or
367
- 3) --continue "query" (to continue most recent with new query)
368
- --continue-id TEXT Continue a specific conversation with the given ID
369
- --history Show a summary of conversations. Use --history for default (20) or --history n to specify count
370
- --help Show the help message and exit
371
- ```
372
-
373
- ## 🔑 API Key Configuration
374
-
375
- You can configure your Anthropic API key in several ways:
376
-
377
- ```bash
378
- # Option 1: Set as environment variable
379
- export ANTHROPIC_API_KEY=your_api_key
380
-
381
- # Option 2: Configure globally within Janito
382
- janito --set-api-key your_api_key
383
-
384
- # Option 3: Let Janito prompt you on first use
385
- janito "Hello, I'm new to Janito!"
386
- ```
387
-
388
- Your API key is securely stored and used for all future sessions.
389
-
390
- ## 💻 Development
391
-
392
- For development instructions, please refer to [README_DEV.md](README_DEV.md).
393
-
394
- ## 📜 License
395
-
396
- This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
@@ -1,53 +0,0 @@
1
- janito/__init__.py,sha256=7oWOSdYGAlxA75CpzMThFPrXL2oWwJw60hTnRBxIo1A,53
2
- janito/__main__.py,sha256=Oy-Nc1tZkpyvTKuq1R8oHSuJTkvptN6H93kIHBu7DKY,107
3
- janito/callbacks.py,sha256=E1FPXYHZUgiEGMabYuf999PSf_Su4ByHOWlc1-hMqWE,915
4
- janito/config.py,sha256=XZYVjHPTv41l0NyGHaeq3UKB5FyRNHSEuLui-_mv5BU,13821
5
- janito/token_report.py,sha256=Mks7o2yTxPChgQyBJNoQ5eMmrhSgEM4LKCKi2tHJbVo,9580
6
- janito/cli/__init__.py,sha256=dVi9l3E86YyukjxQ-XSUnMZkghnNasXex-X5XAOBiwk,85
7
- janito/cli/agent.py,sha256=gIkbQZHNcg8hH52ziqklhKY6EDSyl6URUbtRvQQHqyI,414
8
- janito/cli/app.py,sha256=QkH14BhnFQ2RgavLwxMKa9m_7C8KGoSuSjRNS3iYR1o,9477
9
- janito/cli/commands.py,sha256=M0DKCFZMS1mXA-s9Lm_4Ug7LJFlNg12fBdcDOhCnIWg,380
10
- janito/cli/output.py,sha256=mo3hUokhrD4SWexUjCbLGGQeCDUf0369DA_i9BW7HjU,933
11
- janito/cli/utils.py,sha256=gO4NtCNwtEzYDsQesrFlqB5FtYuw87yGwo4iG3nINgw,661
12
- janito/cli/agent/__init__.py,sha256=3O3b_MnwX_-qApYlyXzXhdjT4-dHzfxpOAy1lK_ZAIE,250
13
- janito/cli/agent/conversation.py,sha256=iif8ciIbsb_HZaZ6qvK40s0PyW3QmriZ1Q7PtUqKfI4,5644
14
- janito/cli/agent/initialization.py,sha256=-7APIAk0gawVVrxd1AdeBwffEuudvy1bIhDE6LMXfw4,6583
15
- janito/cli/agent/query.py,sha256=Sly1k-cVOydTPraUmdSPKxFYrScmCOd8BfAqFUvWwkg,4612
16
- janito/cli/commands/__init__.py,sha256=4zGGB0x-TeBetSArBV38SZQo0T1K59vJofhXhLiD3g0,331
17
- janito/cli/commands/config.py,sha256=U1Bnc_YSMwFkX-1dcksmdgsoH2_yrO8MSYTaESxR-sQ,9819
18
- janito/cli/commands/history.py,sha256=WzWgPRZ7mQwlbDCPw3Hapb-K_Ybk1uKLs-qLams6sO4,5409
19
- janito/cli/commands/profile.py,sha256=jsGKSqXlaSLE__Xjj9OKNTW68evU0APyK9QYr_OEELQ,2397
20
- janito/cli/commands/validation.py,sha256=ldtfk0vAOkrto1Ys6G0MDmUOQvYalHsTd_l_0fMVHcI,718
21
- janito/cli/commands/workspace.py,sha256=nSCrN3SSK4zq10x38uksaOMuzx___rnl-cmyVpvNlqk,909
22
- janito/data/instructions_template.txt,sha256=Ewfjk_1qRO178WEcRQVONnff6CpRAeKGE8JAydD39Qw,2143
23
- janito/tools/__init__.py,sha256=mCtmWVFfgrk_SFWcwzw92O9Fb9P-5SYnO2rPMxkT5rM,1624
24
- janito/tools/decorators.py,sha256=Tp48n5y4LKsjyV3HeOA9wk2dV413RrEG-23kRyQVlKs,2522
25
- janito/tools/delete_file.py,sha256=UrZ5q59SIxWfuJcqgol6yPBqL-RhO9lFCF4MqAc6o00,2252
26
- janito/tools/find_files.py,sha256=c_N9ETcRPprQeuZYanwFnl-9E05ZqUYhNVoCRS5uqQg,8300
27
- janito/tools/move_file.py,sha256=FCs1ghalfHlXmcbAA_IlLcUll9hTOU1MMFGrTWopXvM,2741
28
- janito/tools/prompt_user.py,sha256=OnTiWVBCbL_2MYu7oThlKr8X_pnYdG-dzxXSOgJF41c,1942
29
- janito/tools/replace_file.py,sha256=i4GoLtS14eKSU5lYI18mJ96S0_ekeHMwlQfazg-fxrM,2296
30
- janito/tools/rich_console.py,sha256=0zWYRF8qk4N-upuwswUSEfYFAfkEYDYeCgxst-czWtY,6044
31
- janito/tools/search_text.py,sha256=GXc8fuqKD6r0dEr2lMs5LrYYMM5RtTApvMXlvdt2ZiY,8839
32
- janito/tools/think.py,sha256=VsfYzYSfdBz6ayUYE8aoeAsdeN2PFpHjwUkxtaw1YYQ,1204
33
- janito/tools/usage_tracker.py,sha256=3qHXIs9rzm0oY2iaaFHqlLre6ZoWicZgOc46s6XyGc0,4681
34
- janito/tools/bash/bash.py,sha256=AFm0w_z-yyYRWxuR744OFpm5iCZaZpE-pWbnKbgajp4,3665
35
- janito/tools/bash/unix_persistent_bash.py,sha256=I59PPQiXHscPJ6Y7ev_83dLFNFWq1hKwAK9kFXdnbBY,7185
36
- janito/tools/bash/win_persistent_bash.py,sha256=96xm_yijjc6hBYfNluLahbvR2oUuHug_JkoMah7Hy38,12894
37
- janito/tools/fetch_webpage/__init__.py,sha256=Rnzni75VX1JfmGJ2LHckGWQqr7xC95wahh5Q-1PlncQ,514
38
- janito/tools/fetch_webpage/core.py,sha256=3Q8dAlWYMU_Mg8DyrNCBaLuriAxItSYIyGAcPZFktcI,7555
39
- janito/tools/str_replace_editor/__init__.py,sha256=kYmscmQgft3Jzt3oCNz7k2FiRbJvku6OFDDC3Q_zoAA,144
40
- janito/tools/str_replace_editor/editor.py,sha256=BckYfiMRUYDfDrbu871qMt2AfZexth_02QhwYYOd53g,2489
41
- janito/tools/str_replace_editor/utils.py,sha256=akiPqCHjky_RwL9OitHJJ7uQ-3fNaA8wt_K_YO1EP6I,954
42
- janito/tools/str_replace_editor/handlers/__init__.py,sha256=RP6JCeDRIL4R-lTpGowIoOAi64gg6VxZvJGp8Q2UOVU,373
43
- janito/tools/str_replace_editor/handlers/create.py,sha256=s8RQE04kDAL7OLZA8WxJkDqTmJlGmCNiit4tIHnmNMo,2470
44
- janito/tools/str_replace_editor/handlers/insert.py,sha256=eKHodm2ozKUlRMxWMLAsu9ca6unUo1jfXWwHSld-pSU,4061
45
- janito/tools/str_replace_editor/handlers/str_replace.py,sha256=RciLTlA7R2PGljeeyluLcBHUAje9c1OCxm-bFE7j6iY,4473
46
- janito/tools/str_replace_editor/handlers/undo.py,sha256=3OIdAWkpXC2iDe94_sfx_WxEFh3a1cRzoP0NtPXq1Ks,2491
47
- janito/tools/str_replace_editor/handlers/view.py,sha256=k8F-n64bomHmDjavr5OJKC4cHhfm4_1-aMIFZdMICQo,6809
48
- janito/data/instructions_template.txt,sha256=Ewfjk_1qRO178WEcRQVONnff6CpRAeKGE8JAydD39Qw,2143
49
- janito-0.14.0.dist-info/METADATA,sha256=VzEC8lrwVeAhFxZDGripkjFcCm8CoHAjJFAh_OchFo0,14074
50
- janito-0.14.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
51
- janito-0.14.0.dist-info/entry_points.txt,sha256=JMbF_1jg-xQddidpAYkzjOKdw70fy_ymJfcmerY2wIY,47
52
- janito-0.14.0.dist-info/licenses/LICENSE,sha256=6-H8LXExbBIAuT4cyiE-Qy8Bad1K4pagQRVTWr6wkhk,1096
53
- janito-0.14.0.dist-info/RECORD,,
@@ -1,2 +0,0 @@
1
- [console_scripts]
2
- janito = janito.__main__:app