janito 2.31.0__tar.gz → 2.31.1__tar.gz

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 (490) hide show
  1. janito-2.31.1/LICENSE +201 -0
  2. janito-2.31.1/PKG-INFO +84 -0
  3. janito-2.31.1/README.md +49 -0
  4. {janito-2.31.0 → janito-2.31.1}/docs/plugins/ACTUAL_TOOLS_LOCATION.md +3 -0
  5. {janito-2.31.0 → janito-2.31.1}/docs/plugins/built-in-plugins/filemanager.md +49 -0
  6. janito-2.31.1/docs/plugins/built-in-plugins/imagedisplay.md +19 -0
  7. {janito-2.31.0 → janito-2.31.1}/docs/plugins/built-in-plugins/visualization.md +7 -0
  8. {janito-2.31.0 → janito-2.31.1}/docs/plugins/configuration.md +3 -1
  9. janito-2.31.1/docs/tools/show-image-grid.md +19 -0
  10. janito-2.31.1/docs/tools/show-image.md +16 -0
  11. {janito-2.31.0 → janito-2.31.1}/docs/tools-index.md +33 -0
  12. janito-2.31.1/img/tux.png +0 -0
  13. janito-2.31.1/img/tux_display.png +0 -0
  14. {janito-2.31.0 → janito-2.31.1}/janito/cli/chat_mode/session.py +0 -2
  15. janito-2.31.1/janito/cli/cli_commands/list_plugins.py +228 -0
  16. {janito-2.31.0 → janito-2.31.1}/janito/cli/prompt_core.py +0 -2
  17. {janito-2.31.0 → janito-2.31.1}/janito/cli/rich_terminal_reporter.py +1 -1
  18. {janito-2.31.0 → janito-2.31.1}/janito/cli/single_shot_mode/handler.py +0 -2
  19. janito-2.31.1/janito/plugins/auto_loader.py +91 -0
  20. janito-2.31.1/janito/plugins/auto_loader_fixed.py +90 -0
  21. janito-2.31.1/janito/plugins/core_adapter.py +53 -0
  22. janito-2.31.1/janito/plugins/core_loader.py +120 -0
  23. janito-2.31.1/janito/plugins/core_loader_fixed.py +125 -0
  24. {janito-2.31.0 → janito-2.31.1}/janito/plugins/discovery.py +8 -0
  25. janito-2.31.1/janito/plugins/discovery_core.py +49 -0
  26. {janito-2.31.0 → janito-2.31.1}/janito/provider_registry.py +1 -1
  27. {janito-2.31.0 → janito-2.31.1}/janito/providers/openai/provider.py +1 -1
  28. {janito-2.31.0 → janito-2.31.1}/janito/tools/adapters/local/__init__.py +4 -0
  29. janito-2.31.1/janito/tools/adapters/local/create_file.py +138 -0
  30. {janito-2.31.0/plugins/web/webtools/tools → janito-2.31.1/janito/tools/adapters/local}/fetch_url.py +35 -6
  31. {janito-2.31.0/plugins/core/codeanalyzer/tools → janito-2.31.1/janito/tools/adapters/local}/search_text/core.py +1 -1
  32. janito-2.31.1/janito/tools/adapters/local/show_image.py +70 -0
  33. janito-2.31.1/janito/tools/adapters/local/show_image_grid.py +75 -0
  34. janito-2.31.1/janito/tools/function_adapter.py +65 -0
  35. janito-2.31.1/janito.egg-info/PKG-INFO +84 -0
  36. {janito-2.31.0 → janito-2.31.1}/janito.egg-info/SOURCES.txt +21 -0
  37. {janito-2.31.0 → janito-2.31.1}/janito.egg-info/requires.txt +1 -0
  38. janito-2.31.1/janito.egg-info/top_level.txt +2 -0
  39. {janito-2.31.0 → janito-2.31.1}/plugins/__init__.py +2 -1
  40. {janito-2.31.0/janito/tools/adapters/local → janito-2.31.1/plugins/core/codeanalyzer/tools}/search_text/core.py +1 -1
  41. janito-2.31.1/plugins/core/imagedisplay/__init__.py +14 -0
  42. janito-2.31.1/plugins/core/imagedisplay/plugin.py +51 -0
  43. janito-2.31.1/plugins/core/imagedisplay/tools/__init__.py +1 -0
  44. janito-2.31.1/plugins/core/imagedisplay/tools/show_image.py +70 -0
  45. janito-2.31.1/plugins/core/imagedisplay/tools/show_image_grid.py +74 -0
  46. {janito-2.31.0/janito/tools/adapters/local → janito-2.31.1/plugins/web/webtools/tools}/fetch_url.py +35 -6
  47. {janito-2.31.0 → janito-2.31.1}/requirements.txt +1 -0
  48. janito-2.31.1/test.txt +1 -0
  49. janito-2.31.1/tux.png +0 -0
  50. janito-2.31.0/LICENSE +0 -21
  51. janito-2.31.0/PKG-INFO +0 -431
  52. janito-2.31.0/README.md +0 -397
  53. janito-2.31.0/janito/cli/cli_commands/list_plugins.py +0 -117
  54. janito-2.31.0/janito.egg-info/PKG-INFO +0 -431
  55. janito-2.31.0/janito.egg-info/top_level.txt +0 -1
  56. janito-2.31.0/plugins/core/filemanager/tools/create_file.py +0 -87
  57. {janito-2.31.0 → janito-2.31.1}/.codespellrc +0 -0
  58. {janito-2.31.0 → janito-2.31.1}/.gitattributes +0 -0
  59. {janito-2.31.0 → janito-2.31.1}/.github/workflows/python-app.yml.disabled +0 -0
  60. {janito-2.31.0 → janito-2.31.1}/.gitignore +0 -0
  61. {janito-2.31.0 → janito-2.31.1}/.pre-commit-config.yaml +0 -0
  62. {janito-2.31.0 → janito-2.31.1}/.secrets.baseline +0 -0
  63. {janito-2.31.0 → janito-2.31.1}/.vscode/settings.json +0 -0
  64. {janito-2.31.0 → janito-2.31.1}/MARKET_ANALYST_README.md +0 -0
  65. {janito-2.31.0 → janito-2.31.1}/README-dev.md +0 -0
  66. {janito-2.31.0 → janito-2.31.1}/RELEASE_COMPARISON.md +0 -0
  67. {janito-2.31.0 → janito-2.31.1}/UPDATING_DOCS.md +0 -0
  68. {janito-2.31.0 → janito-2.31.1}/adding_mcp.txt +0 -0
  69. {janito-2.31.0 → janito-2.31.1}/docs/CHANGELOG.md +0 -0
  70. {janito-2.31.0 → janito-2.31.1}/docs/DIV.md +0 -0
  71. {janito-2.31.0 → janito-2.31.1}/docs/Interfaces.txt +0 -0
  72. {janito-2.31.0 → janito-2.31.1}/docs/PROFILES.md +0 -0
  73. {janito-2.31.0 → janito-2.31.1}/docs/TOOLBAR-STYLING.md +0 -0
  74. {janito-2.31.0 → janito-2.31.1}/docs/about/costs.md +0 -0
  75. {janito-2.31.0 → janito-2.31.1}/docs/about/vs-webchats.md +0 -0
  76. {janito-2.31.0 → janito-2.31.1}/docs/about/why.md +0 -0
  77. {janito-2.31.0 → janito-2.31.1}/docs/alibaba-setup.md +0 -0
  78. {janito-2.31.0 → janito-2.31.1}/docs/alternatives.md +0 -0
  79. {janito-2.31.0 → janito-2.31.1}/docs/cerebras-setup.md +0 -0
  80. {janito-2.31.0 → janito-2.31.1}/docs/changelogs/CHANGELOG.md +0 -0
  81. {janito-2.31.0 → janito-2.31.1}/docs/changelogs/CHANGELOG_2.16.0.md +0 -0
  82. {janito-2.31.0 → janito-2.31.1}/docs/changelogs/CHANGELOG_2.23.0.md +0 -0
  83. {janito-2.31.0 → janito-2.31.1}/docs/changelogs/CHANGELOG_2.26.0.md +0 -0
  84. {janito-2.31.0 → janito-2.31.1}/docs/changelogs/CHANGELOG_2.27.0.md +0 -0
  85. {janito-2.31.0 → janito-2.31.1}/docs/changelogs/RELEASE_NOTES_2.22.0.md +0 -0
  86. {janito-2.31.0 → janito-2.31.1}/docs/changelogs/RELEASE_NOTES_2.24.1.md +0 -0
  87. {janito-2.31.0 → janito-2.31.1}/docs/code_intelligence/agentic-frameworks-comparison.md +0 -0
  88. {janito-2.31.0 → janito-2.31.1}/docs/code_intelligence/code-generation-challenges.md +0 -0
  89. {janito-2.31.0 → janito-2.31.1}/docs/code_intelligence/code-generation-observability.md +0 -0
  90. {janito-2.31.0 → janito-2.31.1}/docs/code_intelligence/our-approach.md +0 -0
  91. {janito-2.31.0 → janito-2.31.1}/docs/code_intelligence/why-string-replacement.md +0 -0
  92. {janito-2.31.0 → janito-2.31.1}/docs/concepts/analysis-style.md +0 -0
  93. {janito-2.31.0 → janito-2.31.1}/docs/concepts/human-guided-ai.md +0 -0
  94. {janito-2.31.0 → janito-2.31.1}/docs/concepts/index.md +0 -0
  95. {janito-2.31.0 → janito-2.31.1}/docs/concepts/language-model-clients.md +0 -0
  96. {janito-2.31.0 → janito-2.31.1}/docs/concepts/prompt-design-style.md +0 -0
  97. {janito-2.31.0 → janito-2.31.1}/docs/deepseek-setup.md +0 -0
  98. {janito-2.31.0 → janito-2.31.1}/docs/driver-flow.md +0 -0
  99. {janito-2.31.0 → janito-2.31.1}/docs/driver-request-cancellation.md +0 -0
  100. {janito-2.31.0 → janito-2.31.1}/docs/drivers/events.md +0 -0
  101. {janito-2.31.0 → janito-2.31.1}/docs/drivers.md +0 -0
  102. {janito-2.31.0 → janito-2.31.1}/docs/event-bus.md +0 -0
  103. {janito-2.31.0 → janito-2.31.1}/docs/guides/configuration.md +0 -0
  104. {janito-2.31.0 → janito-2.31.1}/docs/guides/developing.md +0 -0
  105. {janito-2.31.0 → janito-2.31.1}/docs/guides/disabled-tools.md +0 -0
  106. {janito-2.31.0 → janito-2.31.1}/docs/guides/installation.md +0 -0
  107. {janito-2.31.0 → janito-2.31.1}/docs/guides/market-data-sources.md +0 -0
  108. {janito-2.31.0 → janito-2.31.1}/docs/guides/profiles.md +0 -0
  109. {janito-2.31.0 → janito-2.31.1}/docs/guides/prompting/README.md +0 -0
  110. {janito-2.31.0 → janito-2.31.1}/docs/guides/read-chart-examples.md +0 -0
  111. {janito-2.31.0 → janito-2.31.1}/docs/guides/security-commands.md +0 -0
  112. {janito-2.31.0 → janito-2.31.1}/docs/guides/single-shot-terminal.md +0 -0
  113. {janito-2.31.0 → janito-2.31.1}/docs/guides/stock-market-guide.md +0 -0
  114. {janito-2.31.0 → janito-2.31.1}/docs/guides/terminal-shell.md +0 -0
  115. {janito-2.31.0 → janito-2.31.1}/docs/guides/tools-developer-guide.md +0 -0
  116. {janito-2.31.0 → janito-2.31.1}/docs/guides/url-whitelist.md +0 -0
  117. {janito-2.31.0 → janito-2.31.1}/docs/guides/using.md +0 -0
  118. {janito-2.31.0 → janito-2.31.1}/docs/guides/using_tools.md +0 -0
  119. {janito-2.31.0 → janito-2.31.1}/docs/ibm-setup.md +0 -0
  120. {janito-2.31.0 → janito-2.31.1}/docs/imgs/code-generation-observability.png +0 -0
  121. {janito-2.31.0 → janito-2.31.1}/docs/imgs/code_generation_observability.png +0 -0
  122. {janito-2.31.0 → janito-2.31.1}/docs/imgs/happy-programmer.png +0 -0
  123. {janito-2.31.0 → janito-2.31.1}/docs/imgs/happy-programmer.svg +0 -0
  124. {janito-2.31.0 → janito-2.31.1}/docs/imgs/terminal-one-shot.png +0 -0
  125. {janito-2.31.0 → janito-2.31.1}/docs/imgs/terminal-shell.png +0 -0
  126. {janito-2.31.0 → janito-2.31.1}/docs/imgs/terminal_one_shot.png +0 -0
  127. {janito-2.31.0 → janito-2.31.1}/docs/imgs/terminal_shell.png +0 -0
  128. {janito-2.31.0 → janito-2.31.1}/docs/index.md +0 -0
  129. {janito-2.31.0 → janito-2.31.1}/docs/llm-drivers-required-config.md +0 -0
  130. {janito-2.31.0 → janito-2.31.1}/docs/llm-drivers.md +0 -0
  131. {janito-2.31.0 → janito-2.31.1}/docs/meta/developer-toolchain.md +0 -0
  132. {janito-2.31.0 → janito-2.31.1}/docs/meta/quality-checks.txt +0 -0
  133. {janito-2.31.0 → janito-2.31.1}/docs/mistral-setup.md +0 -0
  134. {janito-2.31.0 → janito-2.31.1}/docs/moonshot-setup.md +0 -0
  135. {janito-2.31.0 → janito-2.31.1}/docs/openai-setup.md +0 -0
  136. {janito-2.31.0 → janito-2.31.1}/docs/overrides/partials/copyright.html +0 -0
  137. {janito-2.31.0 → janito-2.31.1}/docs/plugins/MIGRATION_COMPLETE.md +0 -0
  138. {janito-2.31.0 → janito-2.31.1}/docs/plugins/README.md +0 -0
  139. {janito-2.31.0 → janito-2.31.1}/docs/plugins/api-reference.md +0 -0
  140. {janito-2.31.0 → janito-2.31.1}/docs/plugins/architecture.md +0 -0
  141. {janito-2.31.0 → janito-2.31.1}/docs/plugins/built-in-plugins/codeanalyzer.md +0 -0
  142. {janito-2.31.0 → janito-2.31.1}/docs/plugins/built-in-plugins/pythondev.md +0 -0
  143. {janito-2.31.0 → janito-2.31.1}/docs/plugins/built-in-plugins/system.md +0 -0
  144. {janito-2.31.0 → janito-2.31.1}/docs/plugins/built-in-plugins/userinterface.md +0 -0
  145. {janito-2.31.0 → janito-2.31.1}/docs/plugins/built-in-plugins/webtools.md +0 -0
  146. {janito-2.31.0 → janito-2.31.1}/docs/plugins/examples/advanced.md +0 -0
  147. {janito-2.31.0 → janito-2.31.1}/docs/plugins/examples/basic.md +0 -0
  148. {janito-2.31.0 → janito-2.31.1}/docs/plugins/examples/intermediate.md +0 -0
  149. {janito-2.31.0 → janito-2.31.1}/docs/plugins/plugin-development.md +0 -0
  150. {janito-2.31.0 → janito-2.31.1}/docs/plugins/plugin-resources.md +0 -0
  151. {janito-2.31.0 → janito-2.31.1}/docs/plugins/publishing.md +0 -0
  152. {janito-2.31.0 → janito-2.31.1}/docs/plugins/remote-plugins.md +0 -0
  153. {janito-2.31.0 → janito-2.31.1}/docs/plugins/testing.md +0 -0
  154. {janito-2.31.0 → janito-2.31.1}/docs/provider-platform-access.md +0 -0
  155. {janito-2.31.0 → janito-2.31.1}/docs/public-sources.md +0 -0
  156. {janito-2.31.0 → janito-2.31.1}/docs/reference/api.md +0 -0
  157. {janito-2.31.0 → janito-2.31.1}/docs/reference/azure-openai.md +0 -0
  158. {janito-2.31.0 → janito-2.31.1}/docs/reference/cli-options.md +0 -0
  159. {janito-2.31.0 → janito-2.31.1}/docs/reference/message-handler-model.md +0 -0
  160. {janito-2.31.0 → janito-2.31.1}/docs/reference/rich-message-handler.md +0 -0
  161. {janito-2.31.0 → janito-2.31.1}/docs/security.md +0 -0
  162. {janito-2.31.0 → janito-2.31.1}/docs/supported-providers-models.md +0 -0
  163. {janito-2.31.0 → janito-2.31.1}/docs/tools/search-text.md +0 -0
  164. {janito-2.31.0 → janito-2.31.1}/docs/tools-natural-results.md +0 -0
  165. {janito-2.31.0 → janito-2.31.1}/docs/tools-precision.md +0 -0
  166. {janito-2.31.0 → janito-2.31.1}/docs/z-ai-setup.md +0 -0
  167. {janito-2.31.0 → janito-2.31.1}/examples/loop_protection_example.py +0 -0
  168. {janito-2.31.0 → janito-2.31.1}/examples/loop_protection_tool_example.py +0 -0
  169. {janito-2.31.0 → janito-2.31.1}/get_nasdaq_top.py +0 -0
  170. {janito-2.31.0 → janito-2.31.1}/ibm-logo.txt +0 -0
  171. {janito-2.31.0 → janito-2.31.1}/janito/README.md +0 -0
  172. {janito-2.31.0 → janito-2.31.1}/janito/__init__.py +0 -0
  173. {janito-2.31.0 → janito-2.31.1}/janito/__main__.py +0 -0
  174. {janito-2.31.0 → janito-2.31.1}/janito/_version.py +0 -0
  175. {janito-2.31.0 → janito-2.31.1}/janito/agent/setup_agent.py +0 -0
  176. {janito-2.31.0 → janito-2.31.1}/janito/agent/templates/profiles/system_prompt_template_Developer_with_Python_Tools.txt.j2 +0 -0
  177. {janito-2.31.0 → janito-2.31.1}/janito/agent/templates/profiles/system_prompt_template_developer.txt.j2 +0 -0
  178. {janito-2.31.0 → janito-2.31.1}/janito/agent/templates/profiles/system_prompt_template_market_analyst.txt.j2 +0 -0
  179. {janito-2.31.0 → janito-2.31.1}/janito/agent/templates/profiles/system_prompt_template_model_conversation_without_tools_or_context.txt.j2 +0 -0
  180. {janito-2.31.0 → janito-2.31.1}/janito/cli/__init__.py +0 -0
  181. {janito-2.31.0 → janito-2.31.1}/janito/cli/chat_mode/bindings.py +0 -0
  182. {janito-2.31.0 → janito-2.31.1}/janito/cli/chat_mode/chat_entry.py +0 -0
  183. {janito-2.31.0 → janito-2.31.1}/janito/cli/chat_mode/prompt_style.py +0 -0
  184. {janito-2.31.0 → janito-2.31.1}/janito/cli/chat_mode/script_runner.py +0 -0
  185. {janito-2.31.0 → janito-2.31.1}/janito/cli/chat_mode/shell/autocomplete.py +0 -0
  186. {janito-2.31.0 → janito-2.31.1}/janito/cli/chat_mode/shell/commands/__init__.py +0 -0
  187. {janito-2.31.0 → janito-2.31.1}/janito/cli/chat_mode/shell/commands/_priv_check.py +0 -0
  188. {janito-2.31.0 → janito-2.31.1}/janito/cli/chat_mode/shell/commands/_priv_status.py +0 -0
  189. {janito-2.31.0 → janito-2.31.1}/janito/cli/chat_mode/shell/commands/bang.py +0 -0
  190. {janito-2.31.0 → janito-2.31.1}/janito/cli/chat_mode/shell/commands/base.py +0 -0
  191. {janito-2.31.0 → janito-2.31.1}/janito/cli/chat_mode/shell/commands/clear.py +0 -0
  192. {janito-2.31.0 → janito-2.31.1}/janito/cli/chat_mode/shell/commands/conversation_restart.py +0 -0
  193. {janito-2.31.0 → janito-2.31.1}/janito/cli/chat_mode/shell/commands/execute.py +0 -0
  194. {janito-2.31.0 → janito-2.31.1}/janito/cli/chat_mode/shell/commands/help.py +0 -0
  195. {janito-2.31.0 → janito-2.31.1}/janito/cli/chat_mode/shell/commands/history_view.py +0 -0
  196. {janito-2.31.0 → janito-2.31.1}/janito/cli/chat_mode/shell/commands/lang.py +0 -0
  197. {janito-2.31.0 → janito-2.31.1}/janito/cli/chat_mode/shell/commands/model.py +0 -0
  198. {janito-2.31.0 → janito-2.31.1}/janito/cli/chat_mode/shell/commands/multi.py +0 -0
  199. {janito-2.31.0 → janito-2.31.1}/janito/cli/chat_mode/shell/commands/privileges.py +0 -0
  200. {janito-2.31.0 → janito-2.31.1}/janito/cli/chat_mode/shell/commands/prompt.py +0 -0
  201. {janito-2.31.0 → janito-2.31.1}/janito/cli/chat_mode/shell/commands/provider.py +0 -0
  202. {janito-2.31.0 → janito-2.31.1}/janito/cli/chat_mode/shell/commands/read.py +0 -0
  203. {janito-2.31.0 → janito-2.31.1}/janito/cli/chat_mode/shell/commands/role.py +0 -0
  204. {janito-2.31.0 → janito-2.31.1}/janito/cli/chat_mode/shell/commands/security/__init__.py +0 -0
  205. {janito-2.31.0 → janito-2.31.1}/janito/cli/chat_mode/shell/commands/security/allowed_sites.py +0 -0
  206. {janito-2.31.0 → janito-2.31.1}/janito/cli/chat_mode/shell/commands/security_command.py +0 -0
  207. {janito-2.31.0 → janito-2.31.1}/janito/cli/chat_mode/shell/commands/session.py +0 -0
  208. {janito-2.31.0 → janito-2.31.1}/janito/cli/chat_mode/shell/commands/session_control.py +0 -0
  209. {janito-2.31.0 → janito-2.31.1}/janito/cli/chat_mode/shell/commands/tools.py +0 -0
  210. {janito-2.31.0 → janito-2.31.1}/janito/cli/chat_mode/shell/commands/unrestricted.py +0 -0
  211. {janito-2.31.0 → janito-2.31.1}/janito/cli/chat_mode/shell/commands/utility.py +0 -0
  212. {janito-2.31.0 → janito-2.31.1}/janito/cli/chat_mode/shell/commands/verbose.py +0 -0
  213. {janito-2.31.0 → janito-2.31.1}/janito/cli/chat_mode/shell/commands/write.py +0 -0
  214. {janito-2.31.0 → janito-2.31.1}/janito/cli/chat_mode/shell/commands.bak.zip +0 -0
  215. {janito-2.31.0 → janito-2.31.1}/janito/cli/chat_mode/shell/input_history.py +0 -0
  216. {janito-2.31.0 → janito-2.31.1}/janito/cli/chat_mode/shell/session/__init__.py +0 -0
  217. {janito-2.31.0 → janito-2.31.1}/janito/cli/chat_mode/shell/session/history.py +0 -0
  218. {janito-2.31.0 → janito-2.31.1}/janito/cli/chat_mode/shell/session/manager.py +0 -0
  219. {janito-2.31.0 → janito-2.31.1}/janito/cli/chat_mode/shell/session.bak.zip +0 -0
  220. {janito-2.31.0 → janito-2.31.1}/janito/cli/chat_mode/toolbar.py +0 -0
  221. {janito-2.31.0 → janito-2.31.1}/janito/cli/cli_commands/enable_disable_plugin.py +0 -0
  222. {janito-2.31.0 → janito-2.31.1}/janito/cli/cli_commands/list_config.py +0 -0
  223. {janito-2.31.0 → janito-2.31.1}/janito/cli/cli_commands/list_drivers.py +0 -0
  224. {janito-2.31.0 → janito-2.31.1}/janito/cli/cli_commands/list_models.py +0 -0
  225. {janito-2.31.0 → janito-2.31.1}/janito/cli/cli_commands/list_profiles.py +0 -0
  226. {janito-2.31.0 → janito-2.31.1}/janito/cli/cli_commands/list_providers.py +0 -0
  227. {janito-2.31.0 → janito-2.31.1}/janito/cli/cli_commands/list_providers_region.py +0 -0
  228. {janito-2.31.0 → janito-2.31.1}/janito/cli/cli_commands/list_tools.py +0 -0
  229. {janito-2.31.0 → janito-2.31.1}/janito/cli/cli_commands/model_selection.py +0 -0
  230. {janito-2.31.0 → janito-2.31.1}/janito/cli/cli_commands/model_utils.py +0 -0
  231. {janito-2.31.0 → janito-2.31.1}/janito/cli/cli_commands/ping_providers.py +0 -0
  232. {janito-2.31.0 → janito-2.31.1}/janito/cli/cli_commands/set_api_key.py +0 -0
  233. {janito-2.31.0 → janito-2.31.1}/janito/cli/cli_commands/show_config.py +0 -0
  234. {janito-2.31.0 → janito-2.31.1}/janito/cli/cli_commands/show_system_prompt.py +0 -0
  235. {janito-2.31.0 → janito-2.31.1}/janito/cli/config.py +0 -0
  236. {janito-2.31.0 → janito-2.31.1}/janito/cli/console.py +0 -0
  237. {janito-2.31.0 → janito-2.31.1}/janito/cli/core/__init__.py +0 -0
  238. {janito-2.31.0 → janito-2.31.1}/janito/cli/core/event_logger.py +0 -0
  239. {janito-2.31.0 → janito-2.31.1}/janito/cli/core/getters.py +0 -0
  240. {janito-2.31.0 → janito-2.31.1}/janito/cli/core/model_guesser.py +0 -0
  241. {janito-2.31.0 → janito-2.31.1}/janito/cli/core/runner.py +0 -0
  242. {janito-2.31.0 → janito-2.31.1}/janito/cli/core/setters.py +0 -0
  243. {janito-2.31.0 → janito-2.31.1}/janito/cli/core/unsetters.py +0 -0
  244. {janito-2.31.0 → janito-2.31.1}/janito/cli/main.py +0 -0
  245. {janito-2.31.0 → janito-2.31.1}/janito/cli/main_cli.py +0 -0
  246. {janito-2.31.0 → janito-2.31.1}/janito/cli/prompt_handler.py +0 -0
  247. {janito-2.31.0 → janito-2.31.1}/janito/cli/prompt_setup.py +0 -0
  248. {janito-2.31.0 → janito-2.31.1}/janito/cli/single_shot_mode/__init__.py +0 -0
  249. {janito-2.31.0 → janito-2.31.1}/janito/cli/utils.py +0 -0
  250. {janito-2.31.0 → janito-2.31.1}/janito/cli/verbose_output.py +0 -0
  251. {janito-2.31.0 → janito-2.31.1}/janito/config.py +0 -0
  252. {janito-2.31.0 → janito-2.31.1}/janito/config_manager.py +0 -0
  253. {janito-2.31.0 → janito-2.31.1}/janito/conversation_history.py +0 -0
  254. {janito-2.31.0 → janito-2.31.1}/janito/dir_walk_utils.py +0 -0
  255. {janito-2.31.0 → janito-2.31.1}/janito/docs/GETTING_STARTED.md +0 -0
  256. {janito-2.31.0 → janito-2.31.1}/janito/driver_events.py +0 -0
  257. {janito-2.31.0 → janito-2.31.1}/janito/drivers/azure_openai/driver.py +0 -0
  258. {janito-2.31.0 → janito-2.31.1}/janito/drivers/cerebras/__init__.py +0 -0
  259. {janito-2.31.0 → janito-2.31.1}/janito/drivers/dashscope.bak.zip +0 -0
  260. {janito-2.31.0 → janito-2.31.1}/janito/drivers/openai/README.md +0 -0
  261. {janito-2.31.0 → janito-2.31.1}/janito/drivers/openai/driver.py +0 -0
  262. {janito-2.31.0 → janito-2.31.1}/janito/drivers/openai_responses.bak.zip +0 -0
  263. {janito-2.31.0 → janito-2.31.1}/janito/drivers/zai/__init__.py +0 -0
  264. {janito-2.31.0 → janito-2.31.1}/janito/drivers/zai/driver.py +0 -0
  265. {janito-2.31.0 → janito-2.31.1}/janito/event_bus/__init__.py +0 -0
  266. {janito-2.31.0 → janito-2.31.1}/janito/event_bus/bus.py +0 -0
  267. {janito-2.31.0 → janito-2.31.1}/janito/event_bus/event.py +0 -0
  268. {janito-2.31.0 → janito-2.31.1}/janito/event_bus/handler.py +0 -0
  269. {janito-2.31.0 → janito-2.31.1}/janito/event_bus/queue_bus.py +0 -0
  270. {janito-2.31.0 → janito-2.31.1}/janito/exceptions.py +0 -0
  271. {janito-2.31.0 → janito-2.31.1}/janito/formatting.py +0 -0
  272. {janito-2.31.0 → janito-2.31.1}/janito/formatting_token.py +0 -0
  273. {janito-2.31.0 → janito-2.31.1}/janito/gitignore_utils.py +0 -0
  274. {janito-2.31.0 → janito-2.31.1}/janito/i18n/__init__.py +0 -0
  275. {janito-2.31.0 → janito-2.31.1}/janito/i18n/it.py +0 -0
  276. {janito-2.31.0 → janito-2.31.1}/janito/i18n/messages.py +0 -0
  277. {janito-2.31.0 → janito-2.31.1}/janito/i18n/pt.py +0 -0
  278. {janito-2.31.0 → janito-2.31.1}/janito/llm/README.md +0 -0
  279. {janito-2.31.0 → janito-2.31.1}/janito/llm/__init__.py +0 -0
  280. {janito-2.31.0 → janito-2.31.1}/janito/llm/agent.py +0 -0
  281. {janito-2.31.0 → janito-2.31.1}/janito/llm/auth.py +0 -0
  282. {janito-2.31.0 → janito-2.31.1}/janito/llm/auth_utils.py +0 -0
  283. {janito-2.31.0 → janito-2.31.1}/janito/llm/driver.py +0 -0
  284. {janito-2.31.0 → janito-2.31.1}/janito/llm/driver_config.py +0 -0
  285. {janito-2.31.0 → janito-2.31.1}/janito/llm/driver_config_builder.py +0 -0
  286. {janito-2.31.0 → janito-2.31.1}/janito/llm/driver_input.py +0 -0
  287. {janito-2.31.0 → janito-2.31.1}/janito/llm/message_parts.py +0 -0
  288. {janito-2.31.0 → janito-2.31.1}/janito/llm/model.py +0 -0
  289. {janito-2.31.0 → janito-2.31.1}/janito/llm/provider.py +0 -0
  290. {janito-2.31.0 → janito-2.31.1}/janito/mkdocs.yml +0 -0
  291. {janito-2.31.0 → janito-2.31.1}/janito/perf_singleton.py +0 -0
  292. {janito-2.31.0 → janito-2.31.1}/janito/performance_collector.py +0 -0
  293. {janito-2.31.0 → janito-2.31.1}/janito/platform_discovery.py +0 -0
  294. {janito-2.31.0 → janito-2.31.1}/janito/plugins/__init__.py +0 -0
  295. {janito-2.31.0 → janito-2.31.1}/janito/plugins/base.py +0 -0
  296. {janito-2.31.0 → janito-2.31.1}/janito/plugins/builtin.py +0 -0
  297. {janito-2.31.0 → janito-2.31.1}/janito/plugins/config.py +0 -0
  298. {janito-2.31.0 → janito-2.31.1}/janito/plugins/manager.py +0 -0
  299. {janito-2.31.0 → janito-2.31.1}/janito/provider_config.py +0 -0
  300. {janito-2.31.0 → janito-2.31.1}/janito/providers/__init__.py +0 -0
  301. {janito-2.31.0 → janito-2.31.1}/janito/providers/alibaba/__init__.py +0 -0
  302. {janito-2.31.0 → janito-2.31.1}/janito/providers/alibaba/model_info.py +0 -0
  303. {janito-2.31.0 → janito-2.31.1}/janito/providers/alibaba/provider.py +0 -0
  304. {janito-2.31.0 → janito-2.31.1}/janito/providers/anthropic/model_info.py +0 -0
  305. {janito-2.31.0 → janito-2.31.1}/janito/providers/anthropic/provider.py +0 -0
  306. {janito-2.31.0 → janito-2.31.1}/janito/providers/azure_openai/model_info.py +0 -0
  307. {janito-2.31.0 → janito-2.31.1}/janito/providers/azure_openai/provider.py +0 -0
  308. {janito-2.31.0 → janito-2.31.1}/janito/providers/cerebras/__init__.py +0 -0
  309. {janito-2.31.0 → janito-2.31.1}/janito/providers/cerebras/model_info.py +0 -0
  310. {janito-2.31.0 → janito-2.31.1}/janito/providers/cerebras/provider.py +0 -0
  311. {janito-2.31.0 → janito-2.31.1}/janito/providers/dashscope.bak.zip +0 -0
  312. {janito-2.31.0 → janito-2.31.1}/janito/providers/deepseek/__init__.py +0 -0
  313. {janito-2.31.0 → janito-2.31.1}/janito/providers/deepseek/model_info.py +0 -0
  314. {janito-2.31.0 → janito-2.31.1}/janito/providers/deepseek/provider.py +0 -0
  315. {janito-2.31.0 → janito-2.31.1}/janito/providers/google/__init__.py +0 -0
  316. {janito-2.31.0 → janito-2.31.1}/janito/providers/google/model_info.py +0 -0
  317. {janito-2.31.0 → janito-2.31.1}/janito/providers/google/provider.py +0 -0
  318. {janito-2.31.0 → janito-2.31.1}/janito/providers/ibm/README.md +0 -0
  319. {janito-2.31.0 → janito-2.31.1}/janito/providers/ibm/__init__.py +0 -0
  320. {janito-2.31.0 → janito-2.31.1}/janito/providers/ibm/model_info.py +0 -0
  321. {janito-2.31.0 → janito-2.31.1}/janito/providers/ibm/provider.py +0 -0
  322. {janito-2.31.0 → janito-2.31.1}/janito/providers/mistral/__init__.py +0 -0
  323. {janito-2.31.0 → janito-2.31.1}/janito/providers/mistral/model_info.py +0 -0
  324. {janito-2.31.0 → janito-2.31.1}/janito/providers/mistral/provider.py +0 -0
  325. {janito-2.31.0 → janito-2.31.1}/janito/providers/moonshot/__init__.py +0 -0
  326. {janito-2.31.0 → janito-2.31.1}/janito/providers/moonshot/model_info.py +0 -0
  327. {janito-2.31.0 → janito-2.31.1}/janito/providers/moonshot/provider.py +0 -0
  328. {janito-2.31.0 → janito-2.31.1}/janito/providers/openai/__init__.py +0 -0
  329. {janito-2.31.0 → janito-2.31.1}/janito/providers/openai/model_info.py +0 -0
  330. {janito-2.31.0 → janito-2.31.1}/janito/providers/openai/schema_generator.py +0 -0
  331. {janito-2.31.0 → janito-2.31.1}/janito/providers/registry.py +0 -0
  332. {janito-2.31.0 → janito-2.31.1}/janito/providers/zai/__init__.py +0 -0
  333. {janito-2.31.0 → janito-2.31.1}/janito/providers/zai/model_info.py +0 -0
  334. {janito-2.31.0 → janito-2.31.1}/janito/providers/zai/provider.py +0 -0
  335. {janito-2.31.0 → janito-2.31.1}/janito/providers/zai/schema_generator.py +0 -0
  336. {janito-2.31.0 → janito-2.31.1}/janito/regions/__init__.py +0 -0
  337. {janito-2.31.0 → janito-2.31.1}/janito/regions/cli.py +0 -0
  338. {janito-2.31.0 → janito-2.31.1}/janito/regions/geo_utils.py +0 -0
  339. {janito-2.31.0 → janito-2.31.1}/janito/regions/provider_regions.py +0 -0
  340. {janito-2.31.0 → janito-2.31.1}/janito/report_events.py +0 -0
  341. {janito-2.31.0 → janito-2.31.1}/janito/shell.bak.zip +0 -0
  342. {janito-2.31.0 → janito-2.31.1}/janito/tools/DOCSTRING_STANDARD.txt +0 -0
  343. {janito-2.31.0 → janito-2.31.1}/janito/tools/README.md +0 -0
  344. {janito-2.31.0 → janito-2.31.1}/janito/tools/__init__.py +0 -0
  345. {janito-2.31.0 → janito-2.31.1}/janito/tools/adapters/__init__.py +0 -0
  346. {janito-2.31.0 → janito-2.31.1}/janito/tools/adapters/local/adapter.py +0 -0
  347. {janito-2.31.0 → janito-2.31.1}/janito/tools/adapters/local/ask_user.py +0 -0
  348. {janito-2.31.0 → janito-2.31.1}/janito/tools/adapters/local/copy_file.py +0 -0
  349. {janito-2.31.0 → janito-2.31.1}/janito/tools/adapters/local/create_directory.py +0 -0
  350. {janito-2.31.0 → janito-2.31.1}/janito/tools/adapters/local/delete_text_in_file.py +0 -0
  351. {janito-2.31.0 → janito-2.31.1}/janito/tools/adapters/local/find_files.py +0 -0
  352. {janito-2.31.0 → janito-2.31.1}/janito/tools/adapters/local/get_file_outline/__init__.py +0 -0
  353. {janito-2.31.0 → janito-2.31.1}/janito/tools/adapters/local/get_file_outline/core.py +0 -0
  354. {janito-2.31.0 → janito-2.31.1}/janito/tools/adapters/local/get_file_outline/java_outline.py +0 -0
  355. {janito-2.31.0 → janito-2.31.1}/janito/tools/adapters/local/get_file_outline/markdown_outline.py +0 -0
  356. {janito-2.31.0 → janito-2.31.1}/janito/tools/adapters/local/get_file_outline/python_outline.py +0 -0
  357. {janito-2.31.0 → janito-2.31.1}/janito/tools/adapters/local/get_file_outline/search_outline.py +0 -0
  358. {janito-2.31.0 → janito-2.31.1}/janito/tools/adapters/local/move_file.py +0 -0
  359. {janito-2.31.0 → janito-2.31.1}/janito/tools/adapters/local/open_html_in_browser.py +0 -0
  360. {janito-2.31.0 → janito-2.31.1}/janito/tools/adapters/local/open_url.py +0 -0
  361. {janito-2.31.0 → janito-2.31.1}/janito/tools/adapters/local/python_code_run.py +0 -0
  362. {janito-2.31.0 → janito-2.31.1}/janito/tools/adapters/local/python_command_run.py +0 -0
  363. {janito-2.31.0 → janito-2.31.1}/janito/tools/adapters/local/python_file_run.py +0 -0
  364. {janito-2.31.0 → janito-2.31.1}/janito/tools/adapters/local/read_chart.py +0 -0
  365. {janito-2.31.0 → janito-2.31.1}/janito/tools/adapters/local/read_files.py +0 -0
  366. {janito-2.31.0 → janito-2.31.1}/janito/tools/adapters/local/remove_directory.py +0 -0
  367. {janito-2.31.0 → janito-2.31.1}/janito/tools/adapters/local/remove_file.py +0 -0
  368. {janito-2.31.0 → janito-2.31.1}/janito/tools/adapters/local/replace_text_in_file.py +0 -0
  369. {janito-2.31.0 → janito-2.31.1}/janito/tools/adapters/local/run_bash_command.py +0 -0
  370. {janito-2.31.0 → janito-2.31.1}/janito/tools/adapters/local/run_powershell_command.py +0 -0
  371. {janito-2.31.0 → janito-2.31.1}/janito/tools/adapters/local/search_text/__init__.py +0 -0
  372. {janito-2.31.0 → janito-2.31.1}/janito/tools/adapters/local/search_text/match_lines.py +0 -0
  373. {janito-2.31.0 → janito-2.31.1}/janito/tools/adapters/local/search_text/pattern_utils.py +0 -0
  374. {janito-2.31.0 → janito-2.31.1}/janito/tools/adapters/local/search_text/traverse_directory.py +0 -0
  375. {janito-2.31.0 → janito-2.31.1}/janito/tools/adapters/local/validate_file_syntax/__init__.py +0 -0
  376. {janito-2.31.0 → janito-2.31.1}/janito/tools/adapters/local/validate_file_syntax/core.py +0 -0
  377. {janito-2.31.0 → janito-2.31.1}/janito/tools/adapters/local/validate_file_syntax/css_validator.py +0 -0
  378. {janito-2.31.0 → janito-2.31.1}/janito/tools/adapters/local/validate_file_syntax/html_validator.py +0 -0
  379. {janito-2.31.0 → janito-2.31.1}/janito/tools/adapters/local/validate_file_syntax/jinja2_validator.py +0 -0
  380. {janito-2.31.0 → janito-2.31.1}/janito/tools/adapters/local/validate_file_syntax/js_validator.py +0 -0
  381. {janito-2.31.0 → janito-2.31.1}/janito/tools/adapters/local/validate_file_syntax/json_validator.py +0 -0
  382. {janito-2.31.0 → janito-2.31.1}/janito/tools/adapters/local/validate_file_syntax/markdown_validator.py +0 -0
  383. {janito-2.31.0 → janito-2.31.1}/janito/tools/adapters/local/validate_file_syntax/ps1_validator.py +0 -0
  384. {janito-2.31.0 → janito-2.31.1}/janito/tools/adapters/local/validate_file_syntax/python_validator.py +0 -0
  385. {janito-2.31.0 → janito-2.31.1}/janito/tools/adapters/local/validate_file_syntax/xml_validator.py +0 -0
  386. {janito-2.31.0 → janito-2.31.1}/janito/tools/adapters/local/validate_file_syntax/yaml_validator.py +0 -0
  387. {janito-2.31.0 → janito-2.31.1}/janito/tools/adapters/local/view_file.py +0 -0
  388. {janito-2.31.0 → janito-2.31.1}/janito/tools/base.py +0 -0
  389. {janito-2.31.0 → janito-2.31.1}/janito/tools/disabled_tools.py +0 -0
  390. {janito-2.31.0 → janito-2.31.1}/janito/tools/inspect_registry.py +0 -0
  391. {janito-2.31.0 → janito-2.31.1}/janito/tools/loop_protection.py +0 -0
  392. {janito-2.31.0 → janito-2.31.1}/janito/tools/loop_protection_decorator.py +0 -0
  393. {janito-2.31.0 → janito-2.31.1}/janito/tools/outline_file.bak.zip +0 -0
  394. {janito-2.31.0 → janito-2.31.1}/janito/tools/path_security.py +0 -0
  395. {janito-2.31.0 → janito-2.31.1}/janito/tools/path_utils.py +0 -0
  396. {janito-2.31.0 → janito-2.31.1}/janito/tools/permissions.py +0 -0
  397. {janito-2.31.0 → janito-2.31.1}/janito/tools/permissions_parse.py +0 -0
  398. {janito-2.31.0 → janito-2.31.1}/janito/tools/tool_base.py +0 -0
  399. {janito-2.31.0 → janito-2.31.1}/janito/tools/tool_events.py +0 -0
  400. {janito-2.31.0 → janito-2.31.1}/janito/tools/tool_run_exception.py +0 -0
  401. {janito-2.31.0 → janito-2.31.1}/janito/tools/tool_use_tracker.py +0 -0
  402. {janito-2.31.0 → janito-2.31.1}/janito/tools/tool_utils.py +0 -0
  403. {janito-2.31.0 → janito-2.31.1}/janito/tools/tools_adapter.py +0 -0
  404. {janito-2.31.0 → janito-2.31.1}/janito/tools/tools_schema.py +0 -0
  405. {janito-2.31.0 → janito-2.31.1}/janito/tools/url_whitelist.py +0 -0
  406. {janito-2.31.0 → janito-2.31.1}/janito/utils.py +0 -0
  407. {janito-2.31.0 → janito-2.31.1}/janito.egg-info/dependency_links.txt +0 -0
  408. {janito-2.31.0 → janito-2.31.1}/janito.egg-info/entry_points.txt +0 -0
  409. {janito-2.31.0 → janito-2.31.1}/market_prompt_fix.py +0 -0
  410. {janito-2.31.0 → janito-2.31.1}/market_test.py +0 -0
  411. {janito-2.31.0 → janito-2.31.1}/mkdocs.yml +0 -0
  412. {janito-2.31.0 → janito-2.31.1}/mkdocs_hooks.py +0 -0
  413. {janito-2.31.0 → janito-2.31.1}/plugins/core/__init__.py +0 -0
  414. {janito-2.31.0 → janito-2.31.1}/plugins/core/codeanalyzer/__init__.py +0 -0
  415. {janito-2.31.0 → janito-2.31.1}/plugins/core/codeanalyzer/tools/get_file_outline/__init__.py +0 -0
  416. {janito-2.31.0 → janito-2.31.1}/plugins/core/codeanalyzer/tools/get_file_outline/core.py +0 -0
  417. {janito-2.31.0 → janito-2.31.1}/plugins/core/codeanalyzer/tools/get_file_outline/java_outline.py +0 -0
  418. {janito-2.31.0 → janito-2.31.1}/plugins/core/codeanalyzer/tools/get_file_outline/markdown_outline.py +0 -0
  419. {janito-2.31.0 → janito-2.31.1}/plugins/core/codeanalyzer/tools/get_file_outline/python_outline.py +0 -0
  420. {janito-2.31.0 → janito-2.31.1}/plugins/core/codeanalyzer/tools/get_file_outline/search_outline.py +0 -0
  421. {janito-2.31.0 → janito-2.31.1}/plugins/core/codeanalyzer/tools/search_text/__init__.py +0 -0
  422. {janito-2.31.0 → janito-2.31.1}/plugins/core/codeanalyzer/tools/search_text/match_lines.py +0 -0
  423. {janito-2.31.0 → janito-2.31.1}/plugins/core/codeanalyzer/tools/search_text/pattern_utils.py +0 -0
  424. {janito-2.31.0 → janito-2.31.1}/plugins/core/codeanalyzer/tools/search_text/traverse_directory.py +0 -0
  425. {janito-2.31.0 → janito-2.31.1}/plugins/core/filemanager/__init__.py +0 -0
  426. {janito-2.31.0 → janito-2.31.1}/plugins/core/filemanager/tools/copy_file.py +0 -0
  427. {janito-2.31.0 → janito-2.31.1}/plugins/core/filemanager/tools/create_directory.py +0 -0
  428. {janito-2.31.0/janito/tools/adapters/local → janito-2.31.1/plugins/core/filemanager/tools}/create_file.py +0 -0
  429. {janito-2.31.0 → janito-2.31.1}/plugins/core/filemanager/tools/delete_text_in_file.py +0 -0
  430. {janito-2.31.0 → janito-2.31.1}/plugins/core/filemanager/tools/find_files.py +0 -0
  431. {janito-2.31.0 → janito-2.31.1}/plugins/core/filemanager/tools/move_file.py +0 -0
  432. {janito-2.31.0 → janito-2.31.1}/plugins/core/filemanager/tools/read_files.py +0 -0
  433. {janito-2.31.0 → janito-2.31.1}/plugins/core/filemanager/tools/remove_directory.py +0 -0
  434. {janito-2.31.0 → janito-2.31.1}/plugins/core/filemanager/tools/remove_file.py +0 -0
  435. {janito-2.31.0 → janito-2.31.1}/plugins/core/filemanager/tools/replace_text_in_file.py +0 -0
  436. {janito-2.31.0 → janito-2.31.1}/plugins/core/filemanager/tools/validate_file_syntax/__init__.py +0 -0
  437. {janito-2.31.0 → janito-2.31.1}/plugins/core/filemanager/tools/validate_file_syntax/core.py +0 -0
  438. {janito-2.31.0 → janito-2.31.1}/plugins/core/filemanager/tools/validate_file_syntax/css_validator.py +0 -0
  439. {janito-2.31.0 → janito-2.31.1}/plugins/core/filemanager/tools/validate_file_syntax/html_validator.py +0 -0
  440. {janito-2.31.0 → janito-2.31.1}/plugins/core/filemanager/tools/validate_file_syntax/jinja2_validator.py +0 -0
  441. {janito-2.31.0 → janito-2.31.1}/plugins/core/filemanager/tools/validate_file_syntax/js_validator.py +0 -0
  442. {janito-2.31.0 → janito-2.31.1}/plugins/core/filemanager/tools/validate_file_syntax/json_validator.py +0 -0
  443. {janito-2.31.0 → janito-2.31.1}/plugins/core/filemanager/tools/validate_file_syntax/markdown_validator.py +0 -0
  444. {janito-2.31.0 → janito-2.31.1}/plugins/core/filemanager/tools/validate_file_syntax/ps1_validator.py +0 -0
  445. {janito-2.31.0 → janito-2.31.1}/plugins/core/filemanager/tools/validate_file_syntax/python_validator.py +0 -0
  446. {janito-2.31.0 → janito-2.31.1}/plugins/core/filemanager/tools/validate_file_syntax/xml_validator.py +0 -0
  447. {janito-2.31.0 → janito-2.31.1}/plugins/core/filemanager/tools/validate_file_syntax/yaml_validator.py +0 -0
  448. {janito-2.31.0 → janito-2.31.1}/plugins/core/filemanager/tools/view_file.py +0 -0
  449. {janito-2.31.0 → janito-2.31.1}/plugins/core/system/__init__.py +0 -0
  450. {janito-2.31.0 → janito-2.31.1}/plugins/core/system/tools/run_bash_command.py +0 -0
  451. {janito-2.31.0 → janito-2.31.1}/plugins/core/system/tools/run_powershell_command.py +0 -0
  452. {janito-2.31.0 → janito-2.31.1}/plugins/dev/__init__.py +0 -0
  453. {janito-2.31.0 → janito-2.31.1}/plugins/dev/pythondev/__init__.py +0 -0
  454. {janito-2.31.0 → janito-2.31.1}/plugins/dev/pythondev/tools/python_code_run.py +0 -0
  455. {janito-2.31.0 → janito-2.31.1}/plugins/dev/pythondev/tools/python_command_run.py +0 -0
  456. {janito-2.31.0 → janito-2.31.1}/plugins/dev/pythondev/tools/python_file_run.py +0 -0
  457. {janito-2.31.0 → janito-2.31.1}/plugins/dev/visualization/__init__.py +0 -0
  458. {janito-2.31.0 → janito-2.31.1}/plugins/dev/visualization/tools/read_chart.py +0 -0
  459. {janito-2.31.0 → janito-2.31.1}/plugins/example_plugin.py +0 -0
  460. {janito-2.31.0 → janito-2.31.1}/plugins/ui/__init__.py +0 -0
  461. {janito-2.31.0 → janito-2.31.1}/plugins/ui/userinterface/__init__.py +0 -0
  462. {janito-2.31.0 → janito-2.31.1}/plugins/ui/userinterface/tools/ask_user.py +0 -0
  463. {janito-2.31.0 → janito-2.31.1}/plugins/web/__init__.py +0 -0
  464. {janito-2.31.0 → janito-2.31.1}/plugins/web/webtools/__init__.py +0 -0
  465. {janito-2.31.0 → janito-2.31.1}/plugins/web/webtools/tools/open_html_in_browser.py +0 -0
  466. {janito-2.31.0 → janito-2.31.1}/plugins/web/webtools/tools/open_url.py +0 -0
  467. {janito-2.31.0 → janito-2.31.1}/plugins.txt +0 -0
  468. {janito-2.31.0 → janito-2.31.1}/pyproject.toml +0 -0
  469. {janito-2.31.0 → janito-2.31.1}/pytest.ini +0 -0
  470. {janito-2.31.0 → janito-2.31.1}/requirements-dev.txt +0 -0
  471. {janito-2.31.0 → janito-2.31.1}/setup.cfg +0 -0
  472. {janito-2.31.0 → janito-2.31.1}/test_example.py +0 -0
  473. {janito-2.31.0 → janito-2.31.1}/test_key_field_behavior.py +0 -0
  474. {janito-2.31.0 → janito-2.31.1}/test_key_field_protection.py +0 -0
  475. {janito-2.31.0 → janito-2.31.1}/test_loop_protection_return.py +0 -0
  476. {janito-2.31.0 → janito-2.31.1}/test_market_analyst.py +0 -0
  477. {janito-2.31.0 → janito-2.31.1}/tests/adapters/local/get_file_outline/test_core_outline.py +0 -0
  478. {janito-2.31.0 → janito-2.31.1}/tests/adapters/local/test_read_files.py +0 -0
  479. {janito-2.31.0 → janito-2.31.1}/tests/test_cli_list_models.py +0 -0
  480. {janito-2.31.0 → janito-2.31.1}/tests/test_cli_list_providers.py +0 -0
  481. {janito-2.31.0 → janito-2.31.1}/tests/test_cli_list_providers_alibaba.py +0 -0
  482. {janito-2.31.0 → janito-2.31.1}/tests/test_cli_list_providers_moonshot.py +0 -0
  483. {janito-2.31.0 → janito-2.31.1}/tests/test_cli_version.py +0 -0
  484. {janito-2.31.0 → janito-2.31.1}/tests/test_disabled_tools.py +0 -0
  485. {janito-2.31.0 → janito-2.31.1}/tests/test_plugin_system.py +0 -0
  486. {janito-2.31.0 → janito-2.31.1}/tests/test_provider_alibaba.py +0 -0
  487. {janito-2.31.0 → janito-2.31.1}/tests/test_provider_cerebras.py +0 -0
  488. {janito-2.31.0 → janito-2.31.1}/tests/test_provider_moonshot.py +0 -0
  489. {janito-2.31.0 → janito-2.31.1}/tools/release.py +0 -0
  490. {janito-2.31.0 → janito-2.31.1}/tox.ini +0 -0
janito-2.31.1/LICENSE ADDED
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright 2023 Nine Internet Solutions AG
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
janito-2.31.1/PKG-INFO ADDED
@@ -0,0 +1,84 @@
1
+ Metadata-Version: 2.4
2
+ Name: janito
3
+ Version: 2.31.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
+ Provides-Extra: coder
33
+ Requires-Dist: janito-coder; extra == "coder"
34
+ Dynamic: license-file
35
+
36
+ # nctl
37
+
38
+ ```bash
39
+ $ nctl --help
40
+ Usage: nctl <command>
41
+
42
+ Interact with Nine API resources. See https://docs.nineapis.ch for the full API docs.
43
+
44
+ Run "nctl <command> --help" for more information on a command.
45
+ ```
46
+
47
+ ## Setup
48
+
49
+ ```bash
50
+ # If you have go already installed
51
+ go install github.com/ninech/nctl@latest
52
+
53
+ # Homebrew
54
+ brew install ninech/taps/nctl
55
+
56
+ # Debian/Ubuntu
57
+ echo "deb [trusted=yes] https://repo.nine.ch/deb/ /" | sudo tee /etc/apt/sources.list.d/repo.nine.ch.list
58
+ sudo apt-get update
59
+ sudo apt-get install nctl
60
+
61
+ # Fedora/RHEL
62
+ cat <<EOF > /etc/yum.repos.d/repo.nine.ch.repo
63
+ [repo.nine.ch]
64
+ name=Nine Repo
65
+ baseurl=https://repo.nine.ch/yum/
66
+ enabled=1
67
+ gpgcheck=0
68
+ EOF
69
+ dnf install nctl
70
+
71
+ # Arch
72
+ # Install yay: https://github.com/Jguer/yay#binary
73
+ yay --version
74
+ yay -S nctl-bin
75
+ ```
76
+
77
+ For Windows users, nctl is also built for arm64 and amd64. You can download the
78
+ latest exe file from the [releases](https://github.com/ninech/nctl/releases) and
79
+ install it.
80
+
81
+ ## Getting started
82
+
83
+ * login to the API using `nctl auth login`
84
+ * run `nctl --help` to get a list of all available commands
@@ -0,0 +1,49 @@
1
+ # nctl
2
+
3
+ ```bash
4
+ $ nctl --help
5
+ Usage: nctl <command>
6
+
7
+ Interact with Nine API resources. See https://docs.nineapis.ch for the full API docs.
8
+
9
+ Run "nctl <command> --help" for more information on a command.
10
+ ```
11
+
12
+ ## Setup
13
+
14
+ ```bash
15
+ # If you have go already installed
16
+ go install github.com/ninech/nctl@latest
17
+
18
+ # Homebrew
19
+ brew install ninech/taps/nctl
20
+
21
+ # Debian/Ubuntu
22
+ echo "deb [trusted=yes] https://repo.nine.ch/deb/ /" | sudo tee /etc/apt/sources.list.d/repo.nine.ch.list
23
+ sudo apt-get update
24
+ sudo apt-get install nctl
25
+
26
+ # Fedora/RHEL
27
+ cat <<EOF > /etc/yum.repos.d/repo.nine.ch.repo
28
+ [repo.nine.ch]
29
+ name=Nine Repo
30
+ baseurl=https://repo.nine.ch/yum/
31
+ enabled=1
32
+ gpgcheck=0
33
+ EOF
34
+ dnf install nctl
35
+
36
+ # Arch
37
+ # Install yay: https://github.com/Jguer/yay#binary
38
+ yay --version
39
+ yay -S nctl-bin
40
+ ```
41
+
42
+ For Windows users, nctl is also built for arm64 and amd64. You can download the
43
+ latest exe file from the [releases](https://github.com/ninech/nctl/releases) and
44
+ install it.
45
+
46
+ ## Getting started
47
+
48
+ * login to the API using `nctl auth login`
49
+ * run `nctl --help` to get a list of all available commands
@@ -39,6 +39,9 @@ janito/tools/adapters/local/
39
39
  | `python_file_run` | `janito/tools/adapters/local/python_file_run.py` | Python script execution |
40
40
  | **dev.visualization** | | |
41
41
  | `read_chart` | `janito/tools/adapters/local/read_chart.py` | Data visualization |
42
+ | **core.imagedisplay** | | |
43
+ | `show_image` | `janito/tools/adapters/local/show_image.py` | Display single image |
44
+ | `show_image_grid` | `janito/tools/adapters/local/show_image_grid.py` | Display multiple images in a grid |
42
45
  | **ui.userinterface** | | |
43
46
  | `ask_user` | `janito/tools/adapters/local/ask_user.py` | User interaction |
44
47
 
@@ -25,6 +25,10 @@ The File Manager plugin provides essential file and directory operations for man
25
25
  ## Usage Examples
26
26
 
27
27
  ### Creating a New File
28
+
29
+ The `create_file` tool provides comprehensive file creation with built-in safety features and automatic validation.
30
+
31
+ **Basic Usage:**
28
32
  ```json
29
33
  {
30
34
  "tool": "create_file",
@@ -33,6 +37,51 @@ The File Manager plugin provides essential file and directory operations for man
33
37
  }
34
38
  ```
35
39
 
40
+ **Advanced Examples:**
41
+
42
+ Create nested directory structure:
43
+ ```json
44
+ {
45
+ "tool": "create_file",
46
+ "path": "src/components/Button/index.js",
47
+ "content": "export default function Button() { return <button>Click me</button>; }"
48
+ }
49
+ ```
50
+
51
+ Create configuration file with environment variables:
52
+ ```json
53
+ {
54
+ "tool": "create_file",
55
+ "path": "$HOME/.myapp/config.json",
56
+ "content": "{\n \"api_url\": \"https://api.example.com\",\n \"timeout\": 30\n}"
57
+ }
58
+ ```
59
+
60
+ Overwrite existing file (use with caution):
61
+ ```json
62
+ {
63
+ "tool": "create_file",
64
+ "path": "README.md",
65
+ "content": "# My Project\n\nUpdated documentation...",
66
+ "overwrite": true
67
+ }
68
+ ```
69
+
70
+ **Safety Features:**
71
+
72
+ - **Overwrite Protection**: Prevents accidental file overwrites by default
73
+ - **Syntax Validation**: Automatically checks Python, JavaScript, JSON, YAML, and other common file types
74
+ - **Path Expansion**: Supports `~` for home directory and environment variables like `$HOME`
75
+ - **Directory Creation**: Automatically creates parent directories as needed
76
+ - **Encoding Safety**: Uses UTF-8 encoding with proper error handling for international characters
77
+ - **Loop Protection**: Prevents excessive file creation calls (max 5 per 10 seconds per file)
78
+
79
+ **Return Values:**
80
+
81
+ - Success: Includes line count and syntax validation results
82
+ - Failure: Provides detailed error messages and existing content preview when overwrite is blocked
83
+ - Validation: Shows syntax check results for supported file types
84
+
36
85
  ### Reading Multiple Files
37
86
  ```json
38
87
  {
@@ -0,0 +1,19 @@
1
+ # Image Display Plugin (core.imagedisplay)
2
+
3
+ Display images inline in the terminal using the rich library.
4
+
5
+ Tools provided:
6
+
7
+ - show_image: display a single image
8
+ - show_image_grid: display multiple images in a grid
9
+
10
+ Dependencies:
11
+
12
+ - rich
13
+ - pillow
14
+
15
+ Example:
16
+
17
+ ```bash
18
+ janito --tool show_image --path img/tux.png --width 60
19
+ ```
@@ -11,6 +11,8 @@ The Visualization plugin provides data visualization and charting capabilities.
11
11
  | Tool Name | Function | Description |
12
12
  |-----------|----------|-------------|
13
13
  | `read_chart` | Display charts in terminal | Renders various chart types (bar, line, pie, table) in the terminal using rich formatting |
14
+ | `show_image` | Display single image | Shows a single image inline in the terminal using rich |
15
+ | `show_image_grid` | Display image grid | Shows multiple images in a grid inline in the terminal |
14
16
 
15
17
  ## Usage Examples
16
18
 
@@ -69,6 +71,11 @@ The Visualization plugin provides data visualization and charting capabilities.
69
71
 
70
72
  This plugin does not require any specific configuration. Chart rendering uses default dimensions and styling.
71
73
 
74
+ Image Display tools (core.imagedisplay) have optional settings:
75
+ - default_width (int): Default width for image display
76
+ - default_height (int): Default height for image display
77
+ - preserve_aspect (bool): Preserve aspect ratio by default
78
+
72
79
  ## Security Considerations
73
80
 
74
81
  - Chart data is rendered client-side with no external dependencies
@@ -14,6 +14,7 @@ Plugins can be configured through the main configuration file `janito.json`. The
14
14
  "load": {
15
15
  "core.filemanager": true,
16
16
  "core.codeanalyzer": true,
17
+ "core.imagedisplay": true,
17
18
  "web.webtools": false
18
19
  },
19
20
  "config": {
@@ -41,7 +42,8 @@ The `plugins.load` section controls which plugins are enabled:
41
42
  "load": {
42
43
  "core.filemanager": true,
43
44
  "dev.pythondev": true,
44
- "ui.userinterface": true
45
+ "ui.userinterface": true,
46
+ "core.imagedisplay": true
45
47
  }
46
48
  }
47
49
  ```
@@ -0,0 +1,19 @@
1
+ # show_image_grid
2
+
3
+ Display multiple images in a grid inline in the terminal using rich.
4
+
5
+ Arguments:
6
+
7
+ - paths (list[str]): List of image file paths.
8
+ - columns (int, optional): Number of columns in the grid. Default: 2.
9
+ - width (int, optional): Max width for each image cell. Default: None (auto).
10
+ - height (int, optional): Max height for each image cell. Default: None (auto).
11
+ - preserve_aspect (bool, optional): Preserve aspect ratio. Default: True.
12
+
13
+ Returns:
14
+
15
+ - Status string summarizing the grid display.
16
+
17
+ Example Usage:
18
+
19
+ - `show_image_grid(paths=["img/tux.png", "img/tux_display.png"], columns=2, width=40)`
@@ -0,0 +1,16 @@
1
+ # show_image
2
+
3
+ Display an image inline in the terminal using the rich library.
4
+
5
+ Arguments:
6
+ - path (str): Path to the image file.
7
+ - width (int, optional): Target width in terminal cells. If unset, auto-fit.
8
+ - height (int, optional): Target height in terminal rows. If unset, auto-fit.
9
+ - preserve_aspect (bool, optional): Preserve aspect ratio. Default: True.
10
+
11
+ Returns:
12
+ - Status message indicating display result or error details.
13
+
14
+ Example Usage:
15
+ - show a PNG: `show_image(path="img/tux.png", width=60)`
16
+ - auto-fit: `show_image(path="~/Pictures/photo.jpg")`
@@ -6,6 +6,39 @@ Janito provides a comprehensive set of tools for file operations, code execution
6
6
 
7
7
  ### Visualization Tools
8
8
 
9
+ #### show_image
10
+
11
+ Display an image inline in the terminal using rich.
12
+
13
+ Arguments:
14
+ - path (str): Path to the image file.
15
+ - width (int, optional): Target width in terminal cells. If unset, auto-fit.
16
+ - height (int, optional): Target height in terminal rows. If unset, auto-fit.
17
+ - preserve_aspect (bool, optional): Preserve aspect ratio. Default: True.
18
+
19
+ Returns:
20
+ - Status message indicating display result or error details.
21
+
22
+ Example Usage:
23
+ - show a PNG: `show_image(path="img/tux.png", width=60)`
24
+
25
+ #### show_image_grid
26
+
27
+ Display multiple images in a grid inline in the terminal using rich.
28
+
29
+ Arguments:
30
+ - paths (list[str]): List of image file paths.
31
+ - columns (int, optional): Number of columns in the grid. Default: 2.
32
+ - width (int, optional): Max width for each image cell. Default: None (auto).
33
+ - height (int, optional): Max height for each image cell. Default: None (auto).
34
+ - preserve_aspect (bool, optional): Preserve aspect ratio. Default: True.
35
+
36
+ Returns:
37
+ - Status string summarizing the grid display.
38
+
39
+ Example Usage:
40
+ - `show_image_grid(paths=["img/tux.png", "img/tux_display.png"], columns=2, width=40)`
41
+
9
42
  #### read_chart
10
43
 
11
44
  Display charts and data visualizations in the terminal using rich.
Binary file
Binary file
@@ -293,8 +293,6 @@ class ChatSession:
293
293
  print_token_message_summary(
294
294
  self.console, self.msg_count, usage, elapsed=elapsed
295
295
  )
296
- # Send terminal bell character to trigger TUI bell after printing token summary
297
- print("\a", end="", flush=True)
298
296
  if final_event and hasattr(final_event, "metadata"):
299
297
  exit_reason = (
300
298
  final_event.metadata.get("exit_reason")