janito 0.13.0__py3-none-any.whl → 0.15.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 (50) hide show
  1. janito/__init__.py +1 -1
  2. janito/cli/agent/__init__.py +7 -0
  3. janito/cli/agent/conversation.py +149 -0
  4. janito/cli/agent/initialization.py +168 -0
  5. janito/cli/agent/query.py +112 -0
  6. janito/cli/agent.py +7 -395
  7. janito/cli/app.py +103 -19
  8. janito/cli/commands/__init__.py +12 -0
  9. janito/cli/commands/config.py +30 -0
  10. janito/cli/commands/history.py +119 -0
  11. janito/cli/commands/profile.py +93 -0
  12. janito/cli/commands/validation.py +24 -0
  13. janito/cli/commands/workspace.py +31 -0
  14. janito/cli/commands.py +9 -326
  15. janito/config/README.md +104 -0
  16. janito/config/__init__.py +16 -0
  17. janito/config/cli/__init__.py +28 -0
  18. janito/config/cli/commands.py +397 -0
  19. janito/config/cli/validators.py +77 -0
  20. janito/config/core/__init__.py +23 -0
  21. janito/config/core/file_operations.py +90 -0
  22. janito/config/core/properties.py +316 -0
  23. janito/config/core/singleton.py +282 -0
  24. janito/config/profiles/__init__.py +8 -0
  25. janito/config/profiles/definitions.py +38 -0
  26. janito/config/profiles/manager.py +80 -0
  27. janito/data/instructions_template.txt +12 -6
  28. janito/tools/__init__.py +8 -2
  29. janito/tools/bash/bash.py +80 -7
  30. janito/tools/bash/unix_persistent_bash.py +32 -1
  31. janito/tools/bash/win_persistent_bash.py +34 -1
  32. janito/tools/fetch_webpage/__init__.py +22 -33
  33. janito/tools/fetch_webpage/core.py +182 -155
  34. janito/tools/move_file.py +1 -1
  35. janito/tools/search_text.py +225 -239
  36. janito/tools/str_replace_editor/handlers/view.py +14 -8
  37. janito/tools/think.py +37 -0
  38. janito/tools/usage_tracker.py +1 -0
  39. {janito-0.13.0.dist-info → janito-0.15.0.dist-info}/METADATA +204 -23
  40. janito-0.15.0.dist-info/RECORD +64 -0
  41. janito/config.py +0 -358
  42. janito/test_file.py +0 -4
  43. janito/tools/fetch_webpage/chunking.py +0 -76
  44. janito/tools/fetch_webpage/extractors.py +0 -276
  45. janito/tools/fetch_webpage/news.py +0 -137
  46. janito/tools/fetch_webpage/utils.py +0 -108
  47. janito-0.13.0.dist-info/RECORD +0 -47
  48. {janito-0.13.0.dist-info → janito-0.15.0.dist-info}/WHEEL +0 -0
  49. {janito-0.13.0.dist-info → janito-0.15.0.dist-info}/entry_points.txt +0 -0
  50. {janito-0.13.0.dist-info → janito-0.15.0.dist-info}/licenses/LICENSE +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: janito
3
- Version: 0.13.0
3
+ Version: 0.15.0
4
4
  Summary: Janito CLI tool
5
5
  Project-URL: Homepage, https://github.com/joaompinto/janito
6
6
  Author-email: João Pinto <lamego.pinto@gmail.com>
@@ -31,12 +31,13 @@ Janito is a powerful AI-assisted command-line interface (CLI) tool built with Py
31
31
  - 🔍 Smart code search and editing
32
32
  - 💻 Interactive terminal interface with rich formatting
33
33
  - 📊 Detailed token usage tracking and cost reporting with cache savings analysis
34
- - 🛑 Token and tool usage reporting even when interrupted with Ctrl+C
35
34
  - 🌐 Web page fetching with content extraction capabilities
36
35
  - 🔄 Parameter profiles for optimizing Claude's behavior for different tasks
37
36
  - 📋 Line delta tracking to monitor net changes in files
38
- - 💬 Conversation history with ability to resume previous conversations
37
+ - 💬 Enhanced conversation history with browsing and management
39
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
40
41
 
41
42
  ## 🛠️ System Requirements
42
43
 
@@ -115,31 +116,60 @@ janito --trust "Optimize the HTML code"
115
116
  # Or use the short alias
116
117
  janito -t "Optimize the HTML code"
117
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
+
118
128
  # Continue the most recent conversation
119
129
  janito --continue "Please add one more line"
120
130
 
121
131
  # Continue a specific conversation using its message ID
122
132
  # (Janito displays the message ID after each conversation)
123
- janito --continue abc123def "Let's refine that code"
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"
124
142
 
125
143
  # Show current configuration and available profiles
126
144
  janito --show-config
127
145
 
146
+ # Set a local configuration value (applies to current workspace only)
147
+ janito --set-local-config "temperature=0.7"
148
+
149
+ # Set a global configuration value (applies to all workspaces by default)
150
+ janito --set-global-config "profile=creative"
151
+
152
+ # Reset local configuration
153
+ janito --reset-local-config
154
+
155
+ # Reset global configuration
156
+ janito --reset-global-config
157
+
128
158
  # You can press Ctrl+C at any time to interrupt a query
129
- # Janito will still display token and tool usage information
130
- # Even interrupted conversations can be continued with --continue
159
+ # Interrupted conversations can be continued with --continue
131
160
  ```
132
161
 
133
162
  ## 🔧 Available Tools
134
163
 
135
164
  Janito comes with several built-in tools:
136
- - 📄 `str_replace_editor` - View, create, and edit files
165
+ - 📄 `str_replace_editor` - View, create, and edit files with configurable display limits
137
166
  - 🔎 `find_files` - Find files matching patterns
138
167
  - 🗑️ `delete_file` - Delete files
139
168
  - 🔍 `search_text` - Search for text patterns in files
140
169
  - 🌐 `fetch_webpage` - Fetch and extract content from web pages
141
170
  - 📋 `move_file` - Move files from one location to another
142
171
  - 💻 `bash` - Execute bash commands with real-time output display
172
+ - 🧠 `think` - Tool to record thoughts for complex reasoning
143
173
 
144
174
  ## 📊 Usage Tracking
145
175
 
@@ -153,6 +183,24 @@ Janito includes a comprehensive token usage tracking system that helps you monit
153
183
  - Cache performance metrics with savings analysis
154
184
  - Line delta tracking for file modifications
155
185
 
186
+ ## 📄 Enhanced File Viewing
187
+
188
+ The str_replace_editor tool now includes improved file viewing capabilities:
189
+
190
+ - **Configurable Display Limits**: Set the maximum number of lines to display before showing a warning
191
+ - **Warning Instead of Truncation**: When a file exceeds the configured line limit, a warning is shown but the full content is still displayed
192
+ - **Customizable Limits**: Configure the `max_view_lines` setting to adjust the threshold (default: 500 lines)
193
+
194
+ ```bash
195
+ # Set a custom maximum view lines threshold globally
196
+ janito --set-global-config "max_view_lines=1000"
197
+
198
+ # Set a project-specific threshold
199
+ janito --set-local-config "max_view_lines=250"
200
+ ```
201
+
202
+ This improvement ensures you always see the complete file content while still being warned about potentially large files.
203
+
156
204
  ```bash
157
205
  # Show detailed token usage and cost information
158
206
  janito --show-tokens "Write a Python function to sort a list"
@@ -213,9 +261,58 @@ This feature is particularly useful for:
213
261
  - Focusing on results rather than the process
214
262
  - Creating cleaner output for documentation or sharing
215
263
 
264
+ ## 🚫 No-Tools Mode
265
+
266
+ Janito provides a no-tools mode that disables all file system and external tools for pure AI interactions:
267
+
268
+ ### How It Works
269
+
270
+ - When enabled with `--no-tools`, Janito disables all tools for the current session
271
+ - Claude will respond based purely on its knowledge without accessing or modifying files
272
+ - This mode is a per-session setting and not saved to your configuration
273
+
274
+ ### Using No-Tools Mode
275
+
276
+ ```bash
277
+ # Enable no-tools mode
278
+ janito --no-tools "Explain how Docker containers work"
279
+ ```
280
+
281
+ This feature is particularly useful for:
282
+ - Getting general information or explanations without file system access
283
+ - Brainstorming sessions where you don't need file operations
284
+ - Safer operation in sensitive environments
285
+ - Faster responses for queries that don't require tools
286
+
287
+ ## 📝 Custom System Instructions
288
+
289
+ Janito allows you to provide custom system instructions to change Claude's behavior:
290
+
291
+ ### How It Works
292
+
293
+ - When provided with `--system` or `-s`, Janito uses your custom instructions instead of the default
294
+ - This allows you to create specialized assistant personalities or behaviors
295
+ - Custom instructions are a per-session setting and not saved to your configuration
296
+
297
+ ### Using Custom System Instructions
298
+
299
+ ```bash
300
+ # Provide custom system instructions
301
+ janito --system "You are a poetry expert who speaks in rhymes" "Write about coding"
302
+
303
+ # Or use the short alias
304
+ janito -s "You are a cybersecurity expert" "Review this authentication code"
305
+ ```
306
+
307
+ This feature is particularly useful for:
308
+ - Creating specialized assistant personalities
309
+ - Focusing Claude on specific domains or expertise
310
+ - Setting up specific response formats or styles
311
+ - Educational scenarios where you need different expert perspectives
312
+
216
313
  ## 💬 Conversation History
217
314
 
218
- Janito automatically saves your conversation history, allowing you to continue previous discussions:
315
+ Janito automatically saves your conversation history, allowing you to browse, manage, and continue previous discussions:
219
316
 
220
317
  ### How It Works
221
318
 
@@ -223,6 +320,23 @@ Janito automatically saves your conversation history, allowing you to continue p
223
320
  - The most recent conversation is also saved as `.janito/last_message.json` for backward compatibility
224
321
  - After each conversation, Janito displays the command to continue that specific conversation
225
322
 
323
+ ### Browsing Your History
324
+
325
+ You can view your conversation history with the `--history` flag:
326
+
327
+ ```bash
328
+ # Show the 20 most recent conversations (default)
329
+ janito --history
330
+
331
+ # Show a specific number of recent conversations
332
+ janito --history 10
333
+ ```
334
+
335
+ This displays a table with:
336
+ - Conversation ID
337
+ - Date and time
338
+ - First query from each conversation
339
+
226
340
  ### Using the Continue Feature
227
341
 
228
342
  ```bash
@@ -231,6 +345,13 @@ janito --continue "Add more details to your previous response"
231
345
 
232
346
  # Continue a specific conversation using its ID
233
347
  janito --continue abc123def "Let's modify that code you suggested"
348
+
349
+ # Just use --continue without arguments to continue the most recent conversation
350
+ # and be prompted for your next query
351
+ janito --continue
352
+
353
+ # Alternative way to continue a specific conversation
354
+ janito --continue-id abc123def "Let's modify that code you suggested"
234
355
  ```
235
356
 
236
357
  The `--continue` flag (or `-c` for short) allows you to:
@@ -257,23 +378,73 @@ Janito automatically installs the following dependencies:
257
378
  Janito offers a variety of command-line options to customize its behavior:
258
379
 
259
380
  ```
260
- --verbose, -v Enable verbose mode with detailed output
261
- --show-tokens Show detailed token usage and pricing information
262
- --workspace, -w TEXT Set the workspace directory
263
- --set-config TEXT Configuration string in format 'key=value', e.g., 'temperature=0.7'
264
- --show-config Show current configuration
265
- --reset-config Reset configuration by removing the config file
266
- --set-api-key TEXT Set the Anthropic API key globally in the user's home directory
267
- --ask Enable ask mode which disables tools that perform changes
268
- --trust, -t Enable trust mode which suppresses tool outputs for concise execution
269
- --temperature FLOAT Set the temperature for model generation (0.0 to 1.0)
270
- --profile TEXT Use a predefined parameter profile (precise, balanced, conversational, creative, technical)
271
- --role TEXT Set the assistant's role (default: 'software engineer')
272
- --version Show the version and exit
273
- --continue, -c TEXT Continue a previous conversation, optionally with a specific message ID
274
- --help Show the help message and exit
381
+ Arguments:
382
+ [QUERY] Query to send to the claudine agent
383
+
384
+ Options:
385
+ --verbose, -v Enable verbose mode with detailed output
386
+ --show-tokens, --tokens Show detailed token usage and pricing information
387
+ --workspace, -w TEXT Set the workspace directory
388
+ --set-local-config TEXT Set a local configuration value in format 'key=value' (overrides global config)
389
+ --set-global-config TEXT Set a global configuration value in format 'key=value' (used as default)
390
+ --show-config Show current configuration
391
+ --reset-local-config Reset local configuration by removing the local config file
392
+ --reset-global-config Reset global configuration by removing the global config file
393
+ --set-api-key TEXT Set the Anthropic API key globally in the user's home directory
394
+ --ask Enable ask mode which disables tools that perform changes
395
+ --trust, -t Enable trust mode which suppresses tool outputs for concise execution
396
+ --no-tools Disable all tools for this session (pure AI interaction)
397
+ --temperature FLOAT Set the temperature for model generation (0.0 to 1.0)
398
+ --profile TEXT Use a predefined parameter profile (precise, balanced, conversational, creative, technical)
399
+ --role TEXT Set the assistant's role (default: 'software engineer')
400
+ --system, -s TEXT Provide custom system instructions, bypassing the default file load method
401
+ --version Show the version and exit
402
+ --continue, -c [TEXT] Continue a conversation. Can be used as: 1) --continue (to continue most recent),
403
+ 2) --continue 123 (to continue conversation with ID 123), or
404
+ 3) --continue "query" (to continue most recent with new query)
405
+ --history [N] Show a summary of conversations. Use --history for default (20) or --history n to specify count
406
+ --help Show the help message and exit
275
407
  ```
276
408
 
409
+ ## ⚙️ Configuration System
410
+
411
+ Janito uses a two-level configuration system with local and global settings:
412
+
413
+ ### Local vs Global Configuration
414
+
415
+ - **Local Configuration**: Stored in `.janito/config.json` in your current workspace directory
416
+ - **Global Configuration**: Stored in `~/.janito/config.json` in your home directory
417
+ - Local settings override global settings when both are present
418
+ - Use `--set-local-config` for project-specific settings and `--set-global-config` for user-wide defaults
419
+
420
+ ### Setting Configuration Values
421
+
422
+ ```bash
423
+ # Set a local configuration value (applies to current workspace only)
424
+ janito --set-local-config "temperature=0.7"
425
+
426
+ # Set a global configuration value (applies to all workspaces by default)
427
+ janito --set-global-config "profile=creative"
428
+
429
+ # Reset local configuration
430
+ janito --reset-local-config
431
+
432
+ # Reset global configuration
433
+ janito --reset-global-config
434
+
435
+ # View current configuration (shows both local and global settings)
436
+ janito --show-config
437
+ ```
438
+
439
+ ### Configurable Settings
440
+
441
+ You can configure various settings including:
442
+ - `profile`: Parameter profile (precise, balanced, conversational, creative, technical)
443
+ - `temperature`: Model temperature (0.0 to 1.0)
444
+ - `role`: Assistant's role (default: 'software engineer')
445
+ - `ask_mode`: Enable/disable ask mode (true/false)
446
+ - `max_view_lines`: Maximum number of lines to display before showing a warning (default: 500)
447
+
277
448
  ## 🔑 API Key Configuration
278
449
 
279
450
  You can configure your Anthropic API key in several ways:
@@ -295,6 +466,16 @@ Your API key is securely stored and used for all future sessions.
295
466
 
296
467
  For development instructions, please refer to [README_DEV.md](README_DEV.md).
297
468
 
469
+ ## 💡 Use Cases
470
+
471
+ ### Debugging Code
472
+
473
+ Below is an example of using Janito to help fix a bug in your code:
474
+
475
+ ![Using Janito to fix a bug](docs/images/use_cases/fix_bug_example.png)
476
+
477
+ Simply describe the bug to Janito, and it will help you identify and fix the issue in your code.
478
+
298
479
  ## 📜 License
299
480
 
300
481
  This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
@@ -0,0 +1,64 @@
1
+ janito/__init__.py,sha256=zsus-BGV8QuV6oDjBBKDMcceIgrr7KSYOcfkQBO657c,53
2
+ janito/__main__.py,sha256=Oy-Nc1tZkpyvTKuq1R8oHSuJTkvptN6H93kIHBu7DKY,107
3
+ janito/callbacks.py,sha256=E1FPXYHZUgiEGMabYuf999PSf_Su4ByHOWlc1-hMqWE,915
4
+ janito/token_report.py,sha256=Mks7o2yTxPChgQyBJNoQ5eMmrhSgEM4LKCKi2tHJbVo,9580
5
+ janito/cli/__init__.py,sha256=dVi9l3E86YyukjxQ-XSUnMZkghnNasXex-X5XAOBiwk,85
6
+ janito/cli/agent.py,sha256=gIkbQZHNcg8hH52ziqklhKY6EDSyl6URUbtRvQQHqyI,414
7
+ janito/cli/app.py,sha256=8YfBD0aiJIbKLyS1OtQW8lxDQQIEwDaVetLzRqsiqKg,9394
8
+ janito/cli/commands.py,sha256=M0DKCFZMS1mXA-s9Lm_4Ug7LJFlNg12fBdcDOhCnIWg,380
9
+ janito/cli/output.py,sha256=mo3hUokhrD4SWexUjCbLGGQeCDUf0369DA_i9BW7HjU,933
10
+ janito/cli/utils.py,sha256=gO4NtCNwtEzYDsQesrFlqB5FtYuw87yGwo4iG3nINgw,661
11
+ janito/cli/agent/__init__.py,sha256=3O3b_MnwX_-qApYlyXzXhdjT4-dHzfxpOAy1lK_ZAIE,250
12
+ janito/cli/agent/conversation.py,sha256=iif8ciIbsb_HZaZ6qvK40s0PyW3QmriZ1Q7PtUqKfI4,5644
13
+ janito/cli/agent/initialization.py,sha256=7EOdNAUvzx9SAwTaXSgl-qxzqwR_IsUJ475eLJdkY4M,6344
14
+ janito/cli/agent/query.py,sha256=zblUqyy6JjmA7d2JH8sjah4Kf4iNHBgrImb4d5joxLk,4920
15
+ janito/cli/commands/__init__.py,sha256=4zGGB0x-TeBetSArBV38SZQo0T1K59vJofhXhLiD3g0,331
16
+ janito/cli/commands/config.py,sha256=P-ScO3_PZvlny_nlTANNzLCbExAZejQIa2Zi9VJXyP4,827
17
+ janito/cli/commands/history.py,sha256=WzWgPRZ7mQwlbDCPw3Hapb-K_Ybk1uKLs-qLams6sO4,5409
18
+ janito/cli/commands/profile.py,sha256=_N2jaCe5sb5CbWkX5MK2tSbqkDMwDjY-g9barusVGCI,3679
19
+ janito/cli/commands/validation.py,sha256=ldtfk0vAOkrto1Ys6G0MDmUOQvYalHsTd_l_0fMVHcI,718
20
+ janito/cli/commands/workspace.py,sha256=D1kDnUmSYkItVJUj7TQEKstMlj9n4TW-7F6-DngACwY,867
21
+ janito/config/README.md,sha256=-O5yJ6S9-G34Gkr7leopYKwvn56wxApAsciQvzQ7M8U,3840
22
+ janito/config/__init__.py,sha256=6cgEQmhc3lmHU0onB_id4H_ToU570w3WNNUpqamZJm8,627
23
+ janito/config/cli/__init__.py,sha256=7NsEWbKFYyHurtLLTBsFsfSaeSiO7_RDlfzI6DGqbiE,785
24
+ janito/config/cli/commands.py,sha256=YucCvzsF0KuIb0JyfuER1y3-3qTL-4QCADZEtpKOIv0,16231
25
+ janito/config/cli/validators.py,sha256=Wl0-b_P3sKZoZG9wiFQTcU27x11lCTdz5wXLbwVc7RE,2766
26
+ janito/config/core/__init__.py,sha256=TgaRaJ_qeG5oK3aEBZlPjOmTaUv22a1onHPz_91csao,531
27
+ janito/config/core/file_operations.py,sha256=il_xwyY45EAxzo0rCil0Vj_3V6BHI93-z4CpK_xKIL8,2723
28
+ janito/config/core/properties.py,sha256=vaPTCXypsZ-RyAVgQCId4OY1kOLUhZffX3uaorG7ygY,12098
29
+ janito/config/core/singleton.py,sha256=m5dIcryOK9TPDFtAWyMCDDZRQCQ9-KXRRhQlPySy3Dw,10417
30
+ janito/config/profiles/__init__.py,sha256=69l2e2kgy0wPqzpXWNZFrtJOnwLq6_22EUJHJs_rsm4,281
31
+ janito/config/profiles/definitions.py,sha256=KJZQHvK6bvgnfttI7w6BqD5-477Rc7Xk3ZXAm6FPz18,1112
32
+ janito/config/profiles/manager.py,sha256=oLx1RqIJPkmxrOXVvqWjYDZGEkWtX70uZN62kYYSD7k,2321
33
+ janito/data/instructions_template.txt,sha256=JCH6LO_9Uo5r7yD2gRJRuCQRxpKrVY42L5jJivfo_CI,2307
34
+ janito/tools/__init__.py,sha256=mCtmWVFfgrk_SFWcwzw92O9Fb9P-5SYnO2rPMxkT5rM,1624
35
+ janito/tools/decorators.py,sha256=Tp48n5y4LKsjyV3HeOA9wk2dV413RrEG-23kRyQVlKs,2522
36
+ janito/tools/delete_file.py,sha256=UrZ5q59SIxWfuJcqgol6yPBqL-RhO9lFCF4MqAc6o00,2252
37
+ janito/tools/find_files.py,sha256=c_N9ETcRPprQeuZYanwFnl-9E05ZqUYhNVoCRS5uqQg,8300
38
+ janito/tools/move_file.py,sha256=EkSKFXY47HU7gNpLA4H4z7S3oD5iWkyb55iS2r6jB3E,2732
39
+ janito/tools/prompt_user.py,sha256=OnTiWVBCbL_2MYu7oThlKr8X_pnYdG-dzxXSOgJF41c,1942
40
+ janito/tools/replace_file.py,sha256=i4GoLtS14eKSU5lYI18mJ96S0_ekeHMwlQfazg-fxrM,2296
41
+ janito/tools/rich_console.py,sha256=0zWYRF8qk4N-upuwswUSEfYFAfkEYDYeCgxst-czWtY,6044
42
+ janito/tools/search_text.py,sha256=GXc8fuqKD6r0dEr2lMs5LrYYMM5RtTApvMXlvdt2ZiY,8839
43
+ janito/tools/think.py,sha256=VsfYzYSfdBz6ayUYE8aoeAsdeN2PFpHjwUkxtaw1YYQ,1204
44
+ janito/tools/usage_tracker.py,sha256=3qHXIs9rzm0oY2iaaFHqlLre6ZoWicZgOc46s6XyGc0,4681
45
+ janito/tools/bash/bash.py,sha256=lY6OX7EgxkkBHmQpTwoe53onxfaA-z4UCE1hdRhqYos,6522
46
+ janito/tools/bash/unix_persistent_bash.py,sha256=PxwYU-YNTBixp4RgecoVPGnfqVNjy8u3ScIkzfQfT18,8522
47
+ janito/tools/bash/win_persistent_bash.py,sha256=aglpYIF6JZJiER5c2IBPqM5ufo096y96qtuzA34TKX8,14339
48
+ janito/tools/fetch_webpage/__init__.py,sha256=Rnzni75VX1JfmGJ2LHckGWQqr7xC95wahh5Q-1PlncQ,514
49
+ janito/tools/fetch_webpage/core.py,sha256=3Q8dAlWYMU_Mg8DyrNCBaLuriAxItSYIyGAcPZFktcI,7555
50
+ janito/tools/str_replace_editor/__init__.py,sha256=kYmscmQgft3Jzt3oCNz7k2FiRbJvku6OFDDC3Q_zoAA,144
51
+ janito/tools/str_replace_editor/editor.py,sha256=BckYfiMRUYDfDrbu871qMt2AfZexth_02QhwYYOd53g,2489
52
+ janito/tools/str_replace_editor/utils.py,sha256=akiPqCHjky_RwL9OitHJJ7uQ-3fNaA8wt_K_YO1EP6I,954
53
+ janito/tools/str_replace_editor/handlers/__init__.py,sha256=RP6JCeDRIL4R-lTpGowIoOAi64gg6VxZvJGp8Q2UOVU,373
54
+ janito/tools/str_replace_editor/handlers/create.py,sha256=s8RQE04kDAL7OLZA8WxJkDqTmJlGmCNiit4tIHnmNMo,2470
55
+ janito/tools/str_replace_editor/handlers/insert.py,sha256=eKHodm2ozKUlRMxWMLAsu9ca6unUo1jfXWwHSld-pSU,4061
56
+ janito/tools/str_replace_editor/handlers/str_replace.py,sha256=RciLTlA7R2PGljeeyluLcBHUAje9c1OCxm-bFE7j6iY,4473
57
+ janito/tools/str_replace_editor/handlers/undo.py,sha256=3OIdAWkpXC2iDe94_sfx_WxEFh3a1cRzoP0NtPXq1Ks,2491
58
+ janito/tools/str_replace_editor/handlers/view.py,sha256=5NEdWM53oqofdbQNw3DU86icai2BWdf0WzeIAgZIzzg,7158
59
+ janito/data/instructions_template.txt,sha256=JCH6LO_9Uo5r7yD2gRJRuCQRxpKrVY42L5jJivfo_CI,2307
60
+ janito-0.15.0.dist-info/METADATA,sha256=9ZODZE5o2a45v78I2ptNveo8vAGr9l-_fK2d7ywkmaE,17212
61
+ janito-0.15.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
62
+ janito-0.15.0.dist-info/entry_points.txt,sha256=JMbF_1jg-xQddidpAYkzjOKdw70fy_ymJfcmerY2wIY,47
63
+ janito-0.15.0.dist-info/licenses/LICENSE,sha256=6-H8LXExbBIAuT4cyiE-Qy8Bad1K4pagQRVTWr6wkhk,1096
64
+ janito-0.15.0.dist-info/RECORD,,