janito 3.4.0__tar.gz → 3.5.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 (525) hide show
  1. janito-3.5.1/ANNOUNCEMENT_v3.1.0.md +63 -0
  2. janito-3.5.1/ANNOUNCEMENT_v3.5.1.md +50 -0
  3. janito-3.5.1/PKG-INFO +229 -0
  4. {janito-3.4.0/janito → janito-3.5.1}/README.md +3 -0
  5. janito-3.5.1/docs/CHANGELOG.md +202 -0
  6. janito-3.5.1/docs/CHANGELOG_3.0.0.md +141 -0
  7. janito-3.5.1/docs/CNAME +1 -0
  8. janito-3.5.1/docs/assets/images/social-preview.png +0 -0
  9. {janito-3.4.0 → janito-3.5.1}/docs/changelogs/CHANGELOG.md +33 -0
  10. janito-3.5.1/docs/changelogs/CHANGELOG_3.1.0.md +51 -0
  11. janito-3.5.1/docs/changelogs/CHANGELOG_3.5.0.md +63 -0
  12. janito-3.5.1/docs/changelogs/CHANGELOG_3.5.1.md +62 -0
  13. {janito-3.4.0 → janito-3.5.1}/docs/guides/using.md +1 -0
  14. {janito-3.4.0 → janito-3.5.1}/docs/index.md +6 -1
  15. janito-3.5.1/docs/overrides/main.html +7 -0
  16. janito-3.5.1/docs/overrides/partials/social.html +55 -0
  17. {janito-3.4.0 → janito-3.5.1}/docs/plugins/built-in-plugins/filemanager.md +1 -1
  18. janito-3.5.1/docs/together-setup.md +86 -0
  19. janito-3.5.1/init_janito_tools.py +51 -0
  20. janito-3.5.1/janito/README.md +195 -0
  21. janito-3.5.1/janito/cli/chat_mode/bindings.py +88 -0
  22. {janito-3.4.0 → janito-3.5.1}/janito/cli/chat_mode/session.py +12 -1
  23. {janito-3.4.0 → janito-3.5.1}/janito/cli/chat_mode/shell/commands/multi.py +5 -0
  24. {janito-3.4.0 → janito-3.5.1}/janito/cli/chat_mode/shell/commands/security/allowed_sites.py +47 -33
  25. janito-3.5.1/janito/cli/cli_commands/check_tools.py +212 -0
  26. {janito-3.4.0 → janito-3.5.1}/janito/cli/cli_commands/list_plugins.py +52 -43
  27. {janito-3.4.0 → janito-3.5.1}/janito/cli/core/getters.py +3 -0
  28. janito-3.5.1/janito/cli/core/model_guesser.py +70 -0
  29. {janito-3.4.0 → janito-3.5.1}/janito/cli/main_cli.py +9 -12
  30. {janito-3.4.0 → janito-3.5.1}/janito/cli/prompt_core.py +47 -9
  31. {janito-3.4.0 → janito-3.5.1}/janito/cli/rich_terminal_reporter.py +2 -2
  32. {janito-3.4.0 → janito-3.5.1}/janito/drivers/openai/driver.py +1 -0
  33. {janito-3.4.0 → janito-3.5.1}/janito/drivers/zai/driver.py +1 -0
  34. {janito-3.4.0 → janito-3.5.1}/janito/i18n/it.py +46 -46
  35. {janito-3.4.0 → janito-3.5.1}/janito/llm/agent.py +32 -16
  36. janito-3.5.1/janito/llm/auth_utils.py +30 -0
  37. janito-3.5.1/janito/llm/cancellation_manager.py +63 -0
  38. {janito-3.4.0 → janito-3.5.1}/janito/llm/driver.py +8 -0
  39. janito-3.5.1/janito/llm/enter_cancellation.py +107 -0
  40. janito-3.5.1/janito/plugin_system/__init__.py +10 -0
  41. {janito-3.4.0/janito/plugins → janito-3.5.1/janito/plugin_system}/base.py +5 -2
  42. janito-3.5.1/janito/plugin_system/core_loader.py +217 -0
  43. janito-3.5.1/janito/plugin_system/core_loader_fixed.py +225 -0
  44. {janito-3.4.0 → janito-3.5.1}/janito/plugins/auto_loader.py +12 -11
  45. {janito-3.4.0 → janito-3.5.1}/janito/plugins/auto_loader_fixed.py +12 -11
  46. {janito-3.4.0 → janito-3.5.1}/janito/plugins/builtin.py +15 -1
  47. {janito-3.4.0 → janito-3.5.1/janito}/plugins/core/codeanalyzer/__init__.py +9 -0
  48. {janito-3.4.0 → janito-3.5.1/janito}/plugins/core/filemanager/__init__.py +33 -0
  49. {janito-3.4.0 → janito-3.5.1/janito}/plugins/core/filemanager/tools/create_file.py +2 -2
  50. {janito-3.4.0 → janito-3.5.1/janito}/plugins/core/imagedisplay/__init__.py +1 -1
  51. {janito-3.4.0 → janito-3.5.1/janito}/plugins/core/imagedisplay/plugin.py +2 -2
  52. janito-3.5.1/janito/plugins/core/imagedisplay/tools/__init__.py +1 -0
  53. {janito-3.4.0 → janito-3.5.1/janito}/plugins/core/imagedisplay/tools/show_image.py +12 -3
  54. {janito-3.4.0 → janito-3.5.1/janito}/plugins/core/imagedisplay/tools/show_image_grid.py +12 -3
  55. {janito-3.4.0 → janito-3.5.1/janito}/plugins/core/system/__init__.py +3 -0
  56. {janito-3.4.0/janito/tools/adapters/local → janito-3.5.1/janito/plugins/core/system/tools}/run_bash_command.py +23 -2
  57. {janito-3.4.0 → janito-3.5.1/janito}/plugins/core/system/tools/run_powershell_command.py +16 -0
  58. janito-3.5.1/janito/plugins/core_adapter.py +131 -0
  59. {janito-3.4.0 → janito-3.5.1/janito}/plugins/dev/pythondev/__init__.py +9 -0
  60. {janito-3.4.0 → janito-3.5.1/janito}/plugins/dev/visualization/__init__.py +3 -0
  61. {janito-3.4.0 → janito-3.5.1}/janito/plugins/discovery.py +5 -5
  62. {janito-3.4.0 → janito-3.5.1}/janito/plugins/discovery_core.py +14 -9
  63. {janito-3.4.0 → janito-3.5.1/janito}/plugins/example_plugin.py +1 -1
  64. {janito-3.4.0 → janito-3.5.1}/janito/plugins/manager.py +1 -1
  65. janito-3.5.1/janito/plugins/tools/__init__.py +10 -0
  66. {janito-3.4.0/janito/tools/adapters/local → janito-3.5.1/janito/plugins/tools}/ask_user.py +3 -3
  67. {janito-3.4.0/plugins/core/filemanager → janito-3.5.1/janito/plugins}/tools/copy_file.py +3 -3
  68. janito-3.5.1/janito/plugins/tools/core_tools_plugin.py +87 -0
  69. {janito-3.4.0/plugins/core/filemanager → janito-3.5.1/janito/plugins}/tools/create_directory.py +3 -3
  70. {janito-3.4.0/janito/tools/adapters/local → janito-3.5.1/janito/plugins/tools}/create_file.py +6 -6
  71. janito-3.5.1/janito/plugins/tools/decorators.py +19 -0
  72. {janito-3.4.0/plugins/core/filemanager → janito-3.5.1/janito/plugins}/tools/delete_text_in_file.py +4 -4
  73. {janito-3.4.0/janito/tools/adapters/local → janito-3.5.1/janito/plugins/tools}/fetch_url.py +3 -3
  74. {janito-3.4.0/plugins/core/filemanager → janito-3.5.1/janito/plugins}/tools/find_files.py +3 -3
  75. janito-3.5.1/janito/plugins/tools/get_file_outline/__init__.py +7 -0
  76. {janito-3.4.0/plugins/core/codeanalyzer → janito-3.5.1/janito/plugins}/tools/get_file_outline/core.py +3 -3
  77. {janito-3.4.0/plugins/core/filemanager → janito-3.5.1/janito/plugins}/tools/move_file.py +3 -3
  78. {janito-3.4.0/plugins/web/webtools → janito-3.5.1/janito/plugins}/tools/open_html_in_browser.py +3 -3
  79. {janito-3.4.0/plugins/web/webtools → janito-3.5.1/janito/plugins}/tools/open_url.py +3 -3
  80. {janito-3.4.0/janito/tools/adapters/local → janito-3.5.1/janito/plugins/tools}/python_code_run.py +23 -7
  81. {janito-3.4.0/plugins/dev/pythondev → janito-3.5.1/janito/plugins}/tools/python_command_run.py +21 -5
  82. {janito-3.4.0/janito/tools/adapters/local → janito-3.5.1/janito/plugins/tools}/python_file_run.py +21 -5
  83. {janito-3.4.0/plugins/dev/visualization → janito-3.5.1/janito/plugins}/tools/read_chart.py +3 -3
  84. {janito-3.4.0/plugins/core/filemanager → janito-3.5.1/janito/plugins}/tools/read_files.py +3 -3
  85. {janito-3.4.0/plugins/core/filemanager → janito-3.5.1/janito/plugins}/tools/remove_directory.py +3 -3
  86. {janito-3.4.0/plugins/core/filemanager → janito-3.5.1/janito/plugins}/tools/remove_file.py +3 -3
  87. {janito-3.4.0/janito/tools/adapters/local → janito-3.5.1/janito/plugins/tools}/replace_text_in_file.py +4 -4
  88. {janito-3.4.0/plugins/core/system → janito-3.5.1/janito/plugins}/tools/run_bash_command.py +3 -3
  89. {janito-3.4.0/janito/tools/adapters/local → janito-3.5.1/janito/plugins/tools}/run_powershell_command.py +3 -3
  90. janito-3.5.1/janito/plugins/tools/search_text/__init__.py +7 -0
  91. {janito-3.4.0/plugins/core/codeanalyzer → janito-3.5.1/janito/plugins}/tools/search_text/core.py +3 -3
  92. {janito-3.4.0/janito/tools/adapters/local → janito-3.5.1/janito/plugins/tools}/show_image.py +15 -6
  93. {janito-3.4.0/janito/tools/adapters/local → janito-3.5.1/janito/plugins/tools}/show_image_grid.py +15 -6
  94. janito-3.5.1/janito/plugins/tools/validate_file_syntax/__init__.py +7 -0
  95. {janito-3.4.0/plugins/core/filemanager → janito-3.5.1/janito/plugins}/tools/validate_file_syntax/core.py +2 -2
  96. {janito-3.4.0/plugins/core/filemanager → janito-3.5.1/janito/plugins}/tools/view_file.py +3 -3
  97. {janito-3.4.0 → janito-3.5.1}/janito/providers/__init__.py +1 -0
  98. janito-3.5.1/janito/providers/together/__init__.py +1 -0
  99. janito-3.5.1/janito/providers/together/model_info.py +69 -0
  100. janito-3.5.1/janito/providers/together/provider.py +108 -0
  101. janito-3.5.1/janito/tools/__init__.py +60 -0
  102. janito-3.5.1/janito/tools/adapters/__init__.py +6 -0
  103. janito-3.5.1/janito/tools/adapters/local/__init__.py +10 -0
  104. janito-3.5.1/janito/tools/cli_initializer.py +88 -0
  105. janito-3.5.1/janito/tools/initialize.py +70 -0
  106. janito-3.5.1/janito/tools/loop_protection_decorator.py +142 -0
  107. janito-3.5.1/janito.egg-info/PKG-INFO +229 -0
  108. {janito-3.4.0 → janito-3.5.1}/janito.egg-info/SOURCES.txt +131 -113
  109. {janito-3.4.0 → janito-3.5.1}/janito.egg-info/requires.txt +0 -1
  110. {janito-3.4.0 → janito-3.5.1}/mkdocs.yml +21 -3
  111. janito-3.4.0/PKG-INFO +0 -84
  112. janito-3.4.0/README.md +0 -49
  113. janito-3.4.0/docs/CHANGELOG.md +0 -49
  114. janito-3.4.0/janito/cli/chat_mode/bindings.py +0 -38
  115. janito-3.4.0/janito/cli/core/model_guesser.py +0 -54
  116. janito-3.4.0/janito/llm/auth_utils.py +0 -21
  117. janito-3.4.0/janito/plugins/__init__.py +0 -17
  118. janito-3.4.0/janito/plugins/core_adapter.py +0 -53
  119. janito-3.4.0/janito/plugins/core_loader.py +0 -120
  120. janito-3.4.0/janito/plugins/core_loader_fixed.py +0 -125
  121. janito-3.4.0/janito/tools/__init__.py +0 -36
  122. janito-3.4.0/janito/tools/adapters/__init__.py +0 -1
  123. janito-3.4.0/janito/tools/adapters/local/__init__.py +0 -73
  124. janito-3.4.0/janito/tools/adapters/local/python_command_run.py +0 -171
  125. janito-3.4.0/janito/tools/function_adapter.py +0 -65
  126. janito-3.4.0/janito/tools/loop_protection_decorator.py +0 -145
  127. janito-3.4.0/janito.egg-info/PKG-INFO +0 -84
  128. janito-3.4.0/plugins/core/codeanalyzer/tools/get_file_outline/__init__.py +0 -1
  129. janito-3.4.0/plugins/core/codeanalyzer/tools/search_text/__init__.py +0 -1
  130. janito-3.4.0/plugins/core/filemanager/tools/validate_file_syntax/__init__.py +0 -1
  131. janito-3.4.0/plugins/core/imagedisplay/tools/__init__.py +0 -1
  132. janito-3.4.0/plugins/dev/pythondev/tools/python_code_run.py +0 -172
  133. janito-3.4.0/plugins/dev/pythondev/tools/python_file_run.py +0 -172
  134. janito-3.4.0/plugins.txt +0 -1
  135. {janito-3.4.0 → janito-3.5.1}/.codespellrc +0 -0
  136. {janito-3.4.0 → janito-3.5.1}/.gitattributes +0 -0
  137. {janito-3.4.0 → janito-3.5.1}/.github/workflows/python-app.yml.disabled +0 -0
  138. {janito-3.4.0 → janito-3.5.1}/.gitignore +0 -0
  139. {janito-3.4.0 → janito-3.5.1}/.pre-commit-config.yaml +0 -0
  140. {janito-3.4.0 → janito-3.5.1}/.secrets.baseline +0 -0
  141. {janito-3.4.0 → janito-3.5.1}/.vscode/settings.json +0 -0
  142. {janito-3.4.0 → janito-3.5.1}/LICENSE +0 -0
  143. {janito-3.4.0 → janito-3.5.1}/MARKET_ANALYST_README.md +0 -0
  144. {janito-3.4.0 → janito-3.5.1}/README-dev.md +0 -0
  145. {janito-3.4.0 → janito-3.5.1}/RELEASE_COMPARISON.md +0 -0
  146. {janito-3.4.0 → janito-3.5.1}/UPDATING_DOCS.md +0 -0
  147. {janito-3.4.0 → janito-3.5.1}/adding_mcp.txt +0 -0
  148. {janito-3.4.0 → janito-3.5.1}/docs/DIV.md +0 -0
  149. {janito-3.4.0 → janito-3.5.1}/docs/Interfaces.txt +0 -0
  150. {janito-3.4.0 → janito-3.5.1}/docs/PROFILES.md +0 -0
  151. {janito-3.4.0 → janito-3.5.1}/docs/TOOLBAR-STYLING.md +0 -0
  152. {janito-3.4.0 → janito-3.5.1}/docs/about/costs.md +0 -0
  153. {janito-3.4.0 → janito-3.5.1}/docs/about/vs-webchats.md +0 -0
  154. {janito-3.4.0 → janito-3.5.1}/docs/about/why.md +0 -0
  155. {janito-3.4.0 → janito-3.5.1}/docs/alibaba-setup.md +0 -0
  156. {janito-3.4.0 → janito-3.5.1}/docs/alternatives.md +0 -0
  157. {janito-3.4.0 → janito-3.5.1}/docs/cerebras-setup.md +0 -0
  158. {janito-3.4.0 → janito-3.5.1}/docs/changelogs/CHANGELOG_2.16.0.md +0 -0
  159. {janito-3.4.0 → janito-3.5.1}/docs/changelogs/CHANGELOG_2.23.0.md +0 -0
  160. {janito-3.4.0 → janito-3.5.1}/docs/changelogs/CHANGELOG_2.26.0.md +0 -0
  161. {janito-3.4.0 → janito-3.5.1}/docs/changelogs/CHANGELOG_2.27.0.md +0 -0
  162. {janito-3.4.0 → janito-3.5.1}/docs/changelogs/RELEASE_NOTES_2.22.0.md +0 -0
  163. {janito-3.4.0 → janito-3.5.1}/docs/changelogs/RELEASE_NOTES_2.24.1.md +0 -0
  164. {janito-3.4.0 → janito-3.5.1}/docs/code_intelligence/agentic-frameworks-comparison.md +0 -0
  165. {janito-3.4.0 → janito-3.5.1}/docs/code_intelligence/code-generation-challenges.md +0 -0
  166. {janito-3.4.0 → janito-3.5.1}/docs/code_intelligence/code-generation-observability.md +0 -0
  167. {janito-3.4.0 → janito-3.5.1}/docs/code_intelligence/our-approach.md +0 -0
  168. {janito-3.4.0 → janito-3.5.1}/docs/code_intelligence/why-string-replacement.md +0 -0
  169. {janito-3.4.0 → janito-3.5.1}/docs/concepts/analysis-style.md +0 -0
  170. {janito-3.4.0 → janito-3.5.1}/docs/concepts/human-guided-ai.md +0 -0
  171. {janito-3.4.0 → janito-3.5.1}/docs/concepts/index.md +0 -0
  172. {janito-3.4.0 → janito-3.5.1}/docs/concepts/language-model-clients.md +0 -0
  173. {janito-3.4.0 → janito-3.5.1}/docs/concepts/prompt-design-style.md +0 -0
  174. {janito-3.4.0 → janito-3.5.1}/docs/deepseek-setup.md +0 -0
  175. {janito-3.4.0 → janito-3.5.1}/docs/driver-flow.md +0 -0
  176. {janito-3.4.0 → janito-3.5.1}/docs/driver-request-cancellation.md +0 -0
  177. {janito-3.4.0 → janito-3.5.1}/docs/drivers/events.md +0 -0
  178. {janito-3.4.0 → janito-3.5.1}/docs/drivers.md +0 -0
  179. {janito-3.4.0 → janito-3.5.1}/docs/event-bus.md +0 -0
  180. {janito-3.4.0 → janito-3.5.1}/docs/guides/configuration.md +0 -0
  181. {janito-3.4.0 → janito-3.5.1}/docs/guides/developing.md +0 -0
  182. {janito-3.4.0 → janito-3.5.1}/docs/guides/disabled-tools.md +0 -0
  183. {janito-3.4.0 → janito-3.5.1}/docs/guides/installation.md +0 -0
  184. {janito-3.4.0 → janito-3.5.1}/docs/guides/market-data-sources.md +0 -0
  185. {janito-3.4.0 → janito-3.5.1}/docs/guides/profiles.md +0 -0
  186. {janito-3.4.0 → janito-3.5.1}/docs/guides/prompting/README.md +0 -0
  187. {janito-3.4.0 → janito-3.5.1}/docs/guides/read-chart-examples.md +0 -0
  188. {janito-3.4.0 → janito-3.5.1}/docs/guides/security-commands.md +0 -0
  189. {janito-3.4.0 → janito-3.5.1}/docs/guides/single-shot-terminal.md +0 -0
  190. {janito-3.4.0 → janito-3.5.1}/docs/guides/stock-market-guide.md +0 -0
  191. {janito-3.4.0 → janito-3.5.1}/docs/guides/terminal-shell.md +0 -0
  192. {janito-3.4.0 → janito-3.5.1}/docs/guides/tools-developer-guide.md +0 -0
  193. {janito-3.4.0 → janito-3.5.1}/docs/guides/url-whitelist.md +0 -0
  194. {janito-3.4.0 → janito-3.5.1}/docs/guides/using_tools.md +0 -0
  195. {janito-3.4.0 → janito-3.5.1}/docs/ibm-setup.md +0 -0
  196. {janito-3.4.0 → janito-3.5.1}/docs/imgs/code-generation-observability.png +0 -0
  197. {janito-3.4.0 → janito-3.5.1}/docs/imgs/code_generation_observability.png +0 -0
  198. {janito-3.4.0 → janito-3.5.1}/docs/imgs/happy-programmer.png +0 -0
  199. {janito-3.4.0 → janito-3.5.1}/docs/imgs/happy-programmer.svg +0 -0
  200. {janito-3.4.0 → janito-3.5.1}/docs/imgs/terminal-one-shot.png +0 -0
  201. {janito-3.4.0 → janito-3.5.1}/docs/imgs/terminal-shell.png +0 -0
  202. {janito-3.4.0 → janito-3.5.1}/docs/imgs/terminal_one_shot.png +0 -0
  203. {janito-3.4.0 → janito-3.5.1}/docs/imgs/terminal_shell.png +0 -0
  204. {janito-3.4.0 → janito-3.5.1}/docs/llm-drivers-required-config.md +0 -0
  205. {janito-3.4.0 → janito-3.5.1}/docs/llm-drivers.md +0 -0
  206. {janito-3.4.0 → janito-3.5.1}/docs/meta/developer-toolchain.md +0 -0
  207. {janito-3.4.0 → janito-3.5.1}/docs/meta/quality-checks.txt +0 -0
  208. {janito-3.4.0 → janito-3.5.1}/docs/mistral-setup.md +0 -0
  209. {janito-3.4.0 → janito-3.5.1}/docs/moonshot-setup.md +0 -0
  210. {janito-3.4.0 → janito-3.5.1}/docs/openai-setup.md +0 -0
  211. {janito-3.4.0 → janito-3.5.1}/docs/overrides/partials/copyright.html +0 -0
  212. {janito-3.4.0 → janito-3.5.1}/docs/plugins/ACTUAL_TOOLS_LOCATION.md +0 -0
  213. {janito-3.4.0 → janito-3.5.1}/docs/plugins/MIGRATION_COMPLETE.md +0 -0
  214. {janito-3.4.0 → janito-3.5.1}/docs/plugins/README.md +0 -0
  215. {janito-3.4.0 → janito-3.5.1}/docs/plugins/api-reference.md +0 -0
  216. {janito-3.4.0 → janito-3.5.1}/docs/plugins/architecture.md +0 -0
  217. {janito-3.4.0 → janito-3.5.1}/docs/plugins/built-in-plugins/codeanalyzer.md +0 -0
  218. {janito-3.4.0 → janito-3.5.1}/docs/plugins/built-in-plugins/imagedisplay.md +0 -0
  219. {janito-3.4.0 → janito-3.5.1}/docs/plugins/built-in-plugins/pythondev.md +0 -0
  220. {janito-3.4.0 → janito-3.5.1}/docs/plugins/built-in-plugins/system.md +0 -0
  221. {janito-3.4.0 → janito-3.5.1}/docs/plugins/built-in-plugins/userinterface.md +0 -0
  222. {janito-3.4.0 → janito-3.5.1}/docs/plugins/built-in-plugins/visualization.md +0 -0
  223. {janito-3.4.0 → janito-3.5.1}/docs/plugins/built-in-plugins/webtools.md +0 -0
  224. {janito-3.4.0 → janito-3.5.1}/docs/plugins/configuration.md +0 -0
  225. {janito-3.4.0 → janito-3.5.1}/docs/plugins/examples/advanced.md +0 -0
  226. {janito-3.4.0 → janito-3.5.1}/docs/plugins/examples/basic.md +0 -0
  227. {janito-3.4.0 → janito-3.5.1}/docs/plugins/examples/intermediate.md +0 -0
  228. {janito-3.4.0 → janito-3.5.1}/docs/plugins/plugin-development.md +0 -0
  229. {janito-3.4.0 → janito-3.5.1}/docs/plugins/plugin-resources.md +0 -0
  230. {janito-3.4.0 → janito-3.5.1}/docs/plugins/publishing.md +0 -0
  231. {janito-3.4.0 → janito-3.5.1}/docs/plugins/remote-plugins.md +0 -0
  232. {janito-3.4.0 → janito-3.5.1}/docs/plugins/testing.md +0 -0
  233. {janito-3.4.0 → janito-3.5.1}/docs/provider-platform-access.md +0 -0
  234. {janito-3.4.0 → janito-3.5.1}/docs/public-sources.md +0 -0
  235. {janito-3.4.0 → janito-3.5.1}/docs/reference/api.md +0 -0
  236. {janito-3.4.0 → janito-3.5.1}/docs/reference/azure-openai.md +0 -0
  237. {janito-3.4.0 → janito-3.5.1}/docs/reference/cli-options.md +0 -0
  238. {janito-3.4.0 → janito-3.5.1}/docs/reference/message-handler-model.md +0 -0
  239. {janito-3.4.0 → janito-3.5.1}/docs/reference/rich-message-handler.md +0 -0
  240. {janito-3.4.0 → janito-3.5.1}/docs/security.md +0 -0
  241. {janito-3.4.0 → janito-3.5.1}/docs/supported-providers-models.md +0 -0
  242. {janito-3.4.0 → janito-3.5.1}/docs/tools/search-text.md +0 -0
  243. {janito-3.4.0 → janito-3.5.1}/docs/tools/show-image-grid.md +0 -0
  244. {janito-3.4.0 → janito-3.5.1}/docs/tools/show-image.md +0 -0
  245. {janito-3.4.0 → janito-3.5.1}/docs/tools-index.md +0 -0
  246. {janito-3.4.0 → janito-3.5.1}/docs/tools-natural-results.md +0 -0
  247. {janito-3.4.0 → janito-3.5.1}/docs/tools-precision.md +0 -0
  248. {janito-3.4.0 → janito-3.5.1}/docs/z-ai-setup.md +0 -0
  249. {janito-3.4.0 → janito-3.5.1}/examples/loop_protection_example.py +0 -0
  250. {janito-3.4.0 → janito-3.5.1}/examples/loop_protection_tool_example.py +0 -0
  251. {janito-3.4.0 → janito-3.5.1}/get_nasdaq_top.py +0 -0
  252. {janito-3.4.0 → janito-3.5.1}/ibm-logo.txt +0 -0
  253. {janito-3.4.0 → janito-3.5.1}/janito/__init__.py +0 -0
  254. {janito-3.4.0 → janito-3.5.1}/janito/__main__.py +0 -0
  255. {janito-3.4.0 → janito-3.5.1}/janito/_version.py +0 -0
  256. {janito-3.4.0 → janito-3.5.1}/janito/agent/setup_agent.py +0 -0
  257. {janito-3.4.0 → janito-3.5.1}/janito/agent/templates/profiles/system_prompt_template_Developer_with_Python_Tools.txt.j2 +0 -0
  258. {janito-3.4.0 → janito-3.5.1}/janito/agent/templates/profiles/system_prompt_template_developer.txt.j2 +0 -0
  259. {janito-3.4.0 → janito-3.5.1}/janito/agent/templates/profiles/system_prompt_template_market_analyst.txt.j2 +0 -0
  260. {janito-3.4.0 → janito-3.5.1}/janito/agent/templates/profiles/system_prompt_template_model_conversation_without_tools_or_context.txt.j2 +0 -0
  261. {janito-3.4.0 → janito-3.5.1}/janito/cli/__init__.py +0 -0
  262. {janito-3.4.0 → janito-3.5.1}/janito/cli/chat_mode/chat_entry.py +0 -0
  263. {janito-3.4.0 → janito-3.5.1}/janito/cli/chat_mode/prompt_style.py +0 -0
  264. {janito-3.4.0 → janito-3.5.1}/janito/cli/chat_mode/script_runner.py +0 -0
  265. {janito-3.4.0 → janito-3.5.1}/janito/cli/chat_mode/shell/autocomplete.py +0 -0
  266. {janito-3.4.0 → janito-3.5.1}/janito/cli/chat_mode/shell/commands/__init__.py +0 -0
  267. {janito-3.4.0 → janito-3.5.1}/janito/cli/chat_mode/shell/commands/_priv_check.py +0 -0
  268. {janito-3.4.0 → janito-3.5.1}/janito/cli/chat_mode/shell/commands/_priv_status.py +0 -0
  269. {janito-3.4.0 → janito-3.5.1}/janito/cli/chat_mode/shell/commands/bang.py +0 -0
  270. {janito-3.4.0 → janito-3.5.1}/janito/cli/chat_mode/shell/commands/base.py +0 -0
  271. {janito-3.4.0 → janito-3.5.1}/janito/cli/chat_mode/shell/commands/clear.py +0 -0
  272. {janito-3.4.0 → janito-3.5.1}/janito/cli/chat_mode/shell/commands/conversation_restart.py +0 -0
  273. {janito-3.4.0 → janito-3.5.1}/janito/cli/chat_mode/shell/commands/execute.py +0 -0
  274. {janito-3.4.0 → janito-3.5.1}/janito/cli/chat_mode/shell/commands/help.py +0 -0
  275. {janito-3.4.0 → janito-3.5.1}/janito/cli/chat_mode/shell/commands/history_view.py +0 -0
  276. {janito-3.4.0 → janito-3.5.1}/janito/cli/chat_mode/shell/commands/lang.py +0 -0
  277. {janito-3.4.0 → janito-3.5.1}/janito/cli/chat_mode/shell/commands/model.py +0 -0
  278. {janito-3.4.0 → janito-3.5.1}/janito/cli/chat_mode/shell/commands/privileges.py +0 -0
  279. {janito-3.4.0 → janito-3.5.1}/janito/cli/chat_mode/shell/commands/prompt.py +0 -0
  280. {janito-3.4.0 → janito-3.5.1}/janito/cli/chat_mode/shell/commands/provider.py +0 -0
  281. {janito-3.4.0 → janito-3.5.1}/janito/cli/chat_mode/shell/commands/read.py +0 -0
  282. {janito-3.4.0 → janito-3.5.1}/janito/cli/chat_mode/shell/commands/role.py +0 -0
  283. {janito-3.4.0 → janito-3.5.1}/janito/cli/chat_mode/shell/commands/security/__init__.py +0 -0
  284. {janito-3.4.0 → janito-3.5.1}/janito/cli/chat_mode/shell/commands/security_command.py +0 -0
  285. {janito-3.4.0 → janito-3.5.1}/janito/cli/chat_mode/shell/commands/session.py +0 -0
  286. {janito-3.4.0 → janito-3.5.1}/janito/cli/chat_mode/shell/commands/session_control.py +0 -0
  287. {janito-3.4.0 → janito-3.5.1}/janito/cli/chat_mode/shell/commands/tools.py +0 -0
  288. {janito-3.4.0 → janito-3.5.1}/janito/cli/chat_mode/shell/commands/unrestricted.py +0 -0
  289. {janito-3.4.0 → janito-3.5.1}/janito/cli/chat_mode/shell/commands/utility.py +0 -0
  290. {janito-3.4.0 → janito-3.5.1}/janito/cli/chat_mode/shell/commands/verbose.py +0 -0
  291. {janito-3.4.0 → janito-3.5.1}/janito/cli/chat_mode/shell/commands/write.py +0 -0
  292. {janito-3.4.0 → janito-3.5.1}/janito/cli/chat_mode/shell/commands.bak.zip +0 -0
  293. {janito-3.4.0 → janito-3.5.1}/janito/cli/chat_mode/shell/input_history.py +0 -0
  294. {janito-3.4.0 → janito-3.5.1}/janito/cli/chat_mode/shell/session/__init__.py +0 -0
  295. {janito-3.4.0 → janito-3.5.1}/janito/cli/chat_mode/shell/session/history.py +0 -0
  296. {janito-3.4.0 → janito-3.5.1}/janito/cli/chat_mode/shell/session/manager.py +0 -0
  297. {janito-3.4.0 → janito-3.5.1}/janito/cli/chat_mode/shell/session.bak.zip +0 -0
  298. {janito-3.4.0 → janito-3.5.1}/janito/cli/chat_mode/toolbar.py +0 -0
  299. {janito-3.4.0 → janito-3.5.1}/janito/cli/cli_commands/enable_disable_plugin.py +0 -0
  300. {janito-3.4.0 → janito-3.5.1}/janito/cli/cli_commands/list_config.py +0 -0
  301. {janito-3.4.0 → janito-3.5.1}/janito/cli/cli_commands/list_drivers.py +0 -0
  302. {janito-3.4.0 → janito-3.5.1}/janito/cli/cli_commands/list_models.py +0 -0
  303. {janito-3.4.0 → janito-3.5.1}/janito/cli/cli_commands/list_profiles.py +0 -0
  304. {janito-3.4.0 → janito-3.5.1}/janito/cli/cli_commands/list_providers.py +0 -0
  305. {janito-3.4.0 → janito-3.5.1}/janito/cli/cli_commands/list_providers_region.py +0 -0
  306. {janito-3.4.0 → janito-3.5.1}/janito/cli/cli_commands/list_tools.py +0 -0
  307. {janito-3.4.0 → janito-3.5.1}/janito/cli/cli_commands/model_selection.py +0 -0
  308. {janito-3.4.0 → janito-3.5.1}/janito/cli/cli_commands/model_utils.py +0 -0
  309. {janito-3.4.0 → janito-3.5.1}/janito/cli/cli_commands/ping_providers.py +0 -0
  310. {janito-3.4.0 → janito-3.5.1}/janito/cli/cli_commands/set_api_key.py +0 -0
  311. {janito-3.4.0 → janito-3.5.1}/janito/cli/cli_commands/show_config.py +0 -0
  312. {janito-3.4.0 → janito-3.5.1}/janito/cli/cli_commands/show_system_prompt.py +0 -0
  313. {janito-3.4.0 → janito-3.5.1}/janito/cli/config.py +0 -0
  314. {janito-3.4.0 → janito-3.5.1}/janito/cli/console.py +0 -0
  315. {janito-3.4.0 → janito-3.5.1}/janito/cli/core/__init__.py +0 -0
  316. {janito-3.4.0 → janito-3.5.1}/janito/cli/core/event_logger.py +0 -0
  317. {janito-3.4.0 → janito-3.5.1}/janito/cli/core/runner.py +0 -0
  318. {janito-3.4.0 → janito-3.5.1}/janito/cli/core/setters.py +0 -0
  319. {janito-3.4.0 → janito-3.5.1}/janito/cli/core/unsetters.py +0 -0
  320. {janito-3.4.0 → janito-3.5.1}/janito/cli/main.py +0 -0
  321. {janito-3.4.0 → janito-3.5.1}/janito/cli/prompt_handler.py +0 -0
  322. {janito-3.4.0 → janito-3.5.1}/janito/cli/prompt_setup.py +0 -0
  323. {janito-3.4.0 → janito-3.5.1}/janito/cli/single_shot_mode/__init__.py +0 -0
  324. {janito-3.4.0 → janito-3.5.1}/janito/cli/single_shot_mode/handler.py +0 -0
  325. {janito-3.4.0 → janito-3.5.1}/janito/cli/utils.py +0 -0
  326. {janito-3.4.0 → janito-3.5.1}/janito/cli/verbose_output.py +0 -0
  327. {janito-3.4.0 → janito-3.5.1}/janito/config.py +0 -0
  328. {janito-3.4.0 → janito-3.5.1}/janito/config_manager.py +0 -0
  329. {janito-3.4.0 → janito-3.5.1}/janito/conversation_history.py +0 -0
  330. {janito-3.4.0 → janito-3.5.1}/janito/dir_walk_utils.py +0 -0
  331. {janito-3.4.0 → janito-3.5.1}/janito/docs/GETTING_STARTED.md +0 -0
  332. {janito-3.4.0 → janito-3.5.1}/janito/driver_events.py +0 -0
  333. {janito-3.4.0 → janito-3.5.1}/janito/drivers/azure_openai/driver.py +0 -0
  334. {janito-3.4.0 → janito-3.5.1}/janito/drivers/cerebras/__init__.py +0 -0
  335. {janito-3.4.0 → janito-3.5.1}/janito/drivers/dashscope.bak.zip +0 -0
  336. {janito-3.4.0 → janito-3.5.1}/janito/drivers/openai/README.md +0 -0
  337. {janito-3.4.0 → janito-3.5.1}/janito/drivers/openai_responses.bak.zip +0 -0
  338. {janito-3.4.0 → janito-3.5.1}/janito/drivers/zai/__init__.py +0 -0
  339. {janito-3.4.0 → janito-3.5.1}/janito/event_bus/__init__.py +0 -0
  340. {janito-3.4.0 → janito-3.5.1}/janito/event_bus/bus.py +0 -0
  341. {janito-3.4.0 → janito-3.5.1}/janito/event_bus/event.py +0 -0
  342. {janito-3.4.0 → janito-3.5.1}/janito/event_bus/handler.py +0 -0
  343. {janito-3.4.0 → janito-3.5.1}/janito/event_bus/queue_bus.py +0 -0
  344. {janito-3.4.0 → janito-3.5.1}/janito/exceptions.py +0 -0
  345. {janito-3.4.0 → janito-3.5.1}/janito/formatting.py +0 -0
  346. {janito-3.4.0 → janito-3.5.1}/janito/formatting_token.py +0 -0
  347. {janito-3.4.0 → janito-3.5.1}/janito/gitignore_utils.py +0 -0
  348. {janito-3.4.0 → janito-3.5.1}/janito/hello.txt +0 -0
  349. {janito-3.4.0 → janito-3.5.1}/janito/i18n/__init__.py +0 -0
  350. {janito-3.4.0 → janito-3.5.1}/janito/i18n/messages.py +0 -0
  351. {janito-3.4.0 → janito-3.5.1}/janito/i18n/pt.py +0 -0
  352. {janito-3.4.0 → janito-3.5.1}/janito/llm/README.md +0 -0
  353. {janito-3.4.0 → janito-3.5.1}/janito/llm/__init__.py +0 -0
  354. {janito-3.4.0 → janito-3.5.1}/janito/llm/auth.py +0 -0
  355. {janito-3.4.0 → janito-3.5.1}/janito/llm/driver_config.py +0 -0
  356. {janito-3.4.0 → janito-3.5.1}/janito/llm/driver_config_builder.py +0 -0
  357. {janito-3.4.0 → janito-3.5.1}/janito/llm/driver_input.py +0 -0
  358. {janito-3.4.0 → janito-3.5.1}/janito/llm/message_parts.py +0 -0
  359. {janito-3.4.0 → janito-3.5.1}/janito/llm/model.py +0 -0
  360. {janito-3.4.0 → janito-3.5.1}/janito/llm/provider.py +0 -0
  361. {janito-3.4.0 → janito-3.5.1}/janito/mkdocs.yml +0 -0
  362. {janito-3.4.0 → janito-3.5.1}/janito/perf_singleton.py +0 -0
  363. {janito-3.4.0 → janito-3.5.1}/janito/performance_collector.py +0 -0
  364. {janito-3.4.0 → janito-3.5.1}/janito/platform_discovery.py +0 -0
  365. {janito-3.4.0 → janito-3.5.1/janito}/plugins/__init__.py +0 -0
  366. {janito-3.4.0 → janito-3.5.1}/janito/plugins/config.py +0 -0
  367. {janito-3.4.0 → janito-3.5.1/janito}/plugins/core/__init__.py +0 -0
  368. {janito-3.4.0/janito/tools/adapters/local → janito-3.5.1/janito/plugins/core/codeanalyzer/tools}/get_file_outline/__init__.py +0 -0
  369. {janito-3.4.0/janito/tools/adapters/local → janito-3.5.1/janito/plugins/core/codeanalyzer/tools}/get_file_outline/core.py +0 -0
  370. {janito-3.4.0/janito/tools/adapters/local → janito-3.5.1/janito/plugins/core/codeanalyzer/tools}/get_file_outline/java_outline.py +0 -0
  371. {janito-3.4.0/janito/tools/adapters/local → janito-3.5.1/janito/plugins/core/codeanalyzer/tools}/get_file_outline/markdown_outline.py +0 -0
  372. {janito-3.4.0/janito/tools/adapters/local → janito-3.5.1/janito/plugins/core/codeanalyzer/tools}/get_file_outline/python_outline.py +0 -0
  373. {janito-3.4.0/janito/tools/adapters/local → janito-3.5.1/janito/plugins/core/codeanalyzer/tools}/get_file_outline/search_outline.py +0 -0
  374. {janito-3.4.0/janito/tools/adapters/local → janito-3.5.1/janito/plugins/core/codeanalyzer/tools}/search_text/__init__.py +0 -0
  375. {janito-3.4.0/janito/tools/adapters/local → janito-3.5.1/janito/plugins/core/codeanalyzer/tools}/search_text/core.py +0 -0
  376. {janito-3.4.0/janito/tools/adapters/local → janito-3.5.1/janito/plugins/core/codeanalyzer/tools}/search_text/match_lines.py +0 -0
  377. {janito-3.4.0/janito/tools/adapters/local → janito-3.5.1/janito/plugins/core/codeanalyzer/tools}/search_text/pattern_utils.py +0 -0
  378. {janito-3.4.0/janito/tools/adapters/local → janito-3.5.1/janito/plugins/core/codeanalyzer/tools}/search_text/traverse_directory.py +0 -0
  379. {janito-3.4.0/janito/tools/adapters/local → janito-3.5.1/janito/plugins/core/filemanager/tools}/copy_file.py +0 -0
  380. {janito-3.4.0/janito/tools/adapters/local → janito-3.5.1/janito/plugins/core/filemanager/tools}/create_directory.py +0 -0
  381. {janito-3.4.0/janito/tools/adapters/local → janito-3.5.1/janito/plugins/core/filemanager/tools}/delete_text_in_file.py +0 -0
  382. {janito-3.4.0/janito/tools/adapters/local → janito-3.5.1/janito/plugins/core/filemanager/tools}/find_files.py +0 -0
  383. {janito-3.4.0/janito/tools/adapters/local → janito-3.5.1/janito/plugins/core/filemanager/tools}/move_file.py +0 -0
  384. {janito-3.4.0/janito/tools/adapters/local → janito-3.5.1/janito/plugins/core/filemanager/tools}/read_files.py +0 -0
  385. {janito-3.4.0/janito/tools/adapters/local → janito-3.5.1/janito/plugins/core/filemanager/tools}/remove_directory.py +0 -0
  386. {janito-3.4.0/janito/tools/adapters/local → janito-3.5.1/janito/plugins/core/filemanager/tools}/remove_file.py +0 -0
  387. {janito-3.4.0 → janito-3.5.1/janito}/plugins/core/filemanager/tools/replace_text_in_file.py +0 -0
  388. {janito-3.4.0/janito/tools/adapters/local → janito-3.5.1/janito/plugins/core/filemanager/tools}/validate_file_syntax/__init__.py +0 -0
  389. {janito-3.4.0/janito/tools/adapters/local → janito-3.5.1/janito/plugins/core/filemanager/tools}/validate_file_syntax/core.py +0 -0
  390. {janito-3.4.0/janito/tools/adapters/local → janito-3.5.1/janito/plugins/core/filemanager/tools}/validate_file_syntax/css_validator.py +0 -0
  391. {janito-3.4.0/janito/tools/adapters/local → janito-3.5.1/janito/plugins/core/filemanager/tools}/validate_file_syntax/html_validator.py +0 -0
  392. {janito-3.4.0/janito/tools/adapters/local → janito-3.5.1/janito/plugins/core/filemanager/tools}/validate_file_syntax/jinja2_validator.py +0 -0
  393. {janito-3.4.0/janito/tools/adapters/local → janito-3.5.1/janito/plugins/core/filemanager/tools}/validate_file_syntax/js_validator.py +0 -0
  394. {janito-3.4.0/janito/tools/adapters/local → janito-3.5.1/janito/plugins/core/filemanager/tools}/validate_file_syntax/json_validator.py +0 -0
  395. {janito-3.4.0/janito/tools/adapters/local → janito-3.5.1/janito/plugins/core/filemanager/tools}/validate_file_syntax/markdown_validator.py +0 -0
  396. {janito-3.4.0/janito/tools/adapters/local → janito-3.5.1/janito/plugins/core/filemanager/tools}/validate_file_syntax/ps1_validator.py +0 -0
  397. {janito-3.4.0/janito/tools/adapters/local → janito-3.5.1/janito/plugins/core/filemanager/tools}/validate_file_syntax/python_validator.py +0 -0
  398. {janito-3.4.0/janito/tools/adapters/local → janito-3.5.1/janito/plugins/core/filemanager/tools}/validate_file_syntax/xml_validator.py +0 -0
  399. {janito-3.4.0/janito/tools/adapters/local → janito-3.5.1/janito/plugins/core/filemanager/tools}/validate_file_syntax/yaml_validator.py +0 -0
  400. {janito-3.4.0/janito/tools/adapters/local → janito-3.5.1/janito/plugins/core/filemanager/tools}/view_file.py +0 -0
  401. {janito-3.4.0 → janito-3.5.1/janito}/plugins/dev/__init__.py +0 -0
  402. {janito-3.4.0/janito/tools/adapters/local → janito-3.5.1/janito/plugins/dev/visualization/tools}/read_chart.py +0 -0
  403. {janito-3.4.0/plugins/core/codeanalyzer → janito-3.5.1/janito/plugins}/tools/get_file_outline/java_outline.py +0 -0
  404. {janito-3.4.0/plugins/core/codeanalyzer → janito-3.5.1/janito/plugins}/tools/get_file_outline/markdown_outline.py +0 -0
  405. {janito-3.4.0/plugins/core/codeanalyzer → janito-3.5.1/janito/plugins}/tools/get_file_outline/python_outline.py +0 -0
  406. {janito-3.4.0/plugins/core/codeanalyzer → janito-3.5.1/janito/plugins}/tools/get_file_outline/search_outline.py +0 -0
  407. {janito-3.4.0/plugins/core/codeanalyzer → janito-3.5.1/janito/plugins}/tools/search_text/match_lines.py +0 -0
  408. {janito-3.4.0/plugins/core/codeanalyzer → janito-3.5.1/janito/plugins}/tools/search_text/pattern_utils.py +0 -0
  409. {janito-3.4.0/plugins/core/codeanalyzer → janito-3.5.1/janito/plugins}/tools/search_text/traverse_directory.py +0 -0
  410. {janito-3.4.0/plugins/core/filemanager → janito-3.5.1/janito/plugins}/tools/validate_file_syntax/css_validator.py +0 -0
  411. {janito-3.4.0/plugins/core/filemanager → janito-3.5.1/janito/plugins}/tools/validate_file_syntax/html_validator.py +0 -0
  412. {janito-3.4.0/plugins/core/filemanager → janito-3.5.1/janito/plugins}/tools/validate_file_syntax/jinja2_validator.py +0 -0
  413. {janito-3.4.0/plugins/core/filemanager → janito-3.5.1/janito/plugins}/tools/validate_file_syntax/js_validator.py +0 -0
  414. {janito-3.4.0/plugins/core/filemanager → janito-3.5.1/janito/plugins}/tools/validate_file_syntax/json_validator.py +0 -0
  415. {janito-3.4.0/plugins/core/filemanager → janito-3.5.1/janito/plugins}/tools/validate_file_syntax/markdown_validator.py +0 -0
  416. {janito-3.4.0/plugins/core/filemanager → janito-3.5.1/janito/plugins}/tools/validate_file_syntax/ps1_validator.py +0 -0
  417. {janito-3.4.0/plugins/core/filemanager → janito-3.5.1/janito/plugins}/tools/validate_file_syntax/python_validator.py +0 -0
  418. {janito-3.4.0/plugins/core/filemanager → janito-3.5.1/janito/plugins}/tools/validate_file_syntax/xml_validator.py +0 -0
  419. {janito-3.4.0/plugins/core/filemanager → janito-3.5.1/janito/plugins}/tools/validate_file_syntax/yaml_validator.py +0 -0
  420. {janito-3.4.0 → janito-3.5.1/janito}/plugins/ui/__init__.py +0 -0
  421. {janito-3.4.0 → janito-3.5.1/janito}/plugins/ui/userinterface/__init__.py +0 -0
  422. {janito-3.4.0 → janito-3.5.1/janito}/plugins/ui/userinterface/tools/ask_user.py +0 -0
  423. {janito-3.4.0 → janito-3.5.1/janito}/plugins/web/__init__.py +0 -0
  424. {janito-3.4.0 → janito-3.5.1/janito}/plugins/web/webtools/__init__.py +0 -0
  425. {janito-3.4.0 → janito-3.5.1/janito}/plugins/web/webtools/tools/fetch_url.py +0 -0
  426. {janito-3.4.0/janito/tools/adapters/local → janito-3.5.1/janito/plugins/web/webtools/tools}/open_html_in_browser.py +0 -0
  427. {janito-3.4.0/janito/tools/adapters/local → janito-3.5.1/janito/plugins/web/webtools/tools}/open_url.py +0 -0
  428. {janito-3.4.0 → janito-3.5.1}/janito/provider_config.py +0 -0
  429. {janito-3.4.0 → janito-3.5.1}/janito/provider_registry.py +0 -0
  430. {janito-3.4.0 → janito-3.5.1}/janito/providers/alibaba/__init__.py +0 -0
  431. {janito-3.4.0 → janito-3.5.1}/janito/providers/alibaba/model_info.py +0 -0
  432. {janito-3.4.0 → janito-3.5.1}/janito/providers/alibaba/provider.py +0 -0
  433. {janito-3.4.0 → janito-3.5.1}/janito/providers/anthropic/model_info.py +0 -0
  434. {janito-3.4.0 → janito-3.5.1}/janito/providers/anthropic/provider.py +0 -0
  435. {janito-3.4.0 → janito-3.5.1}/janito/providers/azure_openai/model_info.py +0 -0
  436. {janito-3.4.0 → janito-3.5.1}/janito/providers/azure_openai/provider.py +0 -0
  437. {janito-3.4.0 → janito-3.5.1}/janito/providers/cerebras/__init__.py +0 -0
  438. {janito-3.4.0 → janito-3.5.1}/janito/providers/cerebras/model_info.py +0 -0
  439. {janito-3.4.0 → janito-3.5.1}/janito/providers/cerebras/provider.py +0 -0
  440. {janito-3.4.0 → janito-3.5.1}/janito/providers/dashscope.bak.zip +0 -0
  441. {janito-3.4.0 → janito-3.5.1}/janito/providers/deepseek/__init__.py +0 -0
  442. {janito-3.4.0 → janito-3.5.1}/janito/providers/deepseek/model_info.py +0 -0
  443. {janito-3.4.0 → janito-3.5.1}/janito/providers/deepseek/provider.py +0 -0
  444. {janito-3.4.0 → janito-3.5.1}/janito/providers/google/__init__.py +0 -0
  445. {janito-3.4.0 → janito-3.5.1}/janito/providers/google/model_info.py +0 -0
  446. {janito-3.4.0 → janito-3.5.1}/janito/providers/google/provider.py +0 -0
  447. {janito-3.4.0 → janito-3.5.1}/janito/providers/ibm/README.md +0 -0
  448. {janito-3.4.0 → janito-3.5.1}/janito/providers/ibm/__init__.py +0 -0
  449. {janito-3.4.0 → janito-3.5.1}/janito/providers/ibm/model_info.py +0 -0
  450. {janito-3.4.0 → janito-3.5.1}/janito/providers/ibm/provider.py +0 -0
  451. {janito-3.4.0 → janito-3.5.1}/janito/providers/mistral/__init__.py +0 -0
  452. {janito-3.4.0 → janito-3.5.1}/janito/providers/mistral/model_info.py +0 -0
  453. {janito-3.4.0 → janito-3.5.1}/janito/providers/mistral/provider.py +0 -0
  454. {janito-3.4.0 → janito-3.5.1}/janito/providers/moonshot/__init__.py +0 -0
  455. {janito-3.4.0 → janito-3.5.1}/janito/providers/moonshot/model_info.py +0 -0
  456. {janito-3.4.0 → janito-3.5.1}/janito/providers/moonshot/provider.py +0 -0
  457. {janito-3.4.0 → janito-3.5.1}/janito/providers/openai/__init__.py +0 -0
  458. {janito-3.4.0 → janito-3.5.1}/janito/providers/openai/model_info.py +0 -0
  459. {janito-3.4.0 → janito-3.5.1}/janito/providers/openai/provider.py +0 -0
  460. {janito-3.4.0 → janito-3.5.1}/janito/providers/openai/schema_generator.py +0 -0
  461. {janito-3.4.0 → janito-3.5.1}/janito/providers/registry.py +0 -0
  462. {janito-3.4.0 → janito-3.5.1}/janito/providers/zai/__init__.py +0 -0
  463. {janito-3.4.0 → janito-3.5.1}/janito/providers/zai/model_info.py +0 -0
  464. {janito-3.4.0 → janito-3.5.1}/janito/providers/zai/provider.py +0 -0
  465. {janito-3.4.0 → janito-3.5.1}/janito/providers/zai/schema_generator.py +0 -0
  466. {janito-3.4.0 → janito-3.5.1}/janito/regions/__init__.py +0 -0
  467. {janito-3.4.0 → janito-3.5.1}/janito/regions/cli.py +0 -0
  468. {janito-3.4.0 → janito-3.5.1}/janito/regions/geo_utils.py +0 -0
  469. {janito-3.4.0 → janito-3.5.1}/janito/regions/provider_regions.py +0 -0
  470. {janito-3.4.0 → janito-3.5.1}/janito/report_events.py +0 -0
  471. {janito-3.4.0 → janito-3.5.1}/janito/shell.bak.zip +0 -0
  472. {janito-3.4.0 → janito-3.5.1}/janito/tools/DOCSTRING_STANDARD.txt +0 -0
  473. {janito-3.4.0 → janito-3.5.1}/janito/tools/README.md +0 -0
  474. {janito-3.4.0 → janito-3.5.1}/janito/tools/adapters/local/adapter.py +0 -0
  475. {janito-3.4.0 → janito-3.5.1}/janito/tools/base.py +0 -0
  476. {janito-3.4.0 → janito-3.5.1}/janito/tools/disabled_tools.py +0 -0
  477. {janito-3.4.0 → janito-3.5.1}/janito/tools/inspect_registry.py +0 -0
  478. {janito-3.4.0 → janito-3.5.1}/janito/tools/loop_protection.py +0 -0
  479. {janito-3.4.0 → janito-3.5.1}/janito/tools/outline_file.bak.zip +0 -0
  480. {janito-3.4.0 → janito-3.5.1}/janito/tools/path_security.py +0 -0
  481. {janito-3.4.0 → janito-3.5.1}/janito/tools/path_utils.py +0 -0
  482. {janito-3.4.0 → janito-3.5.1}/janito/tools/permissions.py +0 -0
  483. {janito-3.4.0 → janito-3.5.1}/janito/tools/permissions_parse.py +0 -0
  484. {janito-3.4.0 → janito-3.5.1}/janito/tools/tool_base.py +0 -0
  485. {janito-3.4.0 → janito-3.5.1}/janito/tools/tool_events.py +0 -0
  486. {janito-3.4.0 → janito-3.5.1}/janito/tools/tool_run_exception.py +0 -0
  487. {janito-3.4.0 → janito-3.5.1}/janito/tools/tool_use_tracker.py +0 -0
  488. {janito-3.4.0 → janito-3.5.1}/janito/tools/tool_utils.py +0 -0
  489. {janito-3.4.0 → janito-3.5.1}/janito/tools/tools_adapter.py +0 -0
  490. {janito-3.4.0 → janito-3.5.1}/janito/tools/tools_schema.py +0 -0
  491. {janito-3.4.0 → janito-3.5.1}/janito/tools/url_whitelist.py +0 -0
  492. {janito-3.4.0 → janito-3.5.1}/janito/utils.py +0 -0
  493. {janito-3.4.0 → janito-3.5.1}/janito.egg-info/dependency_links.txt +0 -0
  494. {janito-3.4.0 → janito-3.5.1}/janito.egg-info/entry_points.txt +0 -0
  495. {janito-3.4.0 → janito-3.5.1}/janito.egg-info/top_level.txt +0 -0
  496. {janito-3.4.0 → janito-3.5.1}/market_prompt_fix.py +0 -0
  497. {janito-3.4.0 → janito-3.5.1}/market_test.py +0 -0
  498. {janito-3.4.0 → janito-3.5.1}/mkdocs_hooks.py +0 -0
  499. {janito-3.4.0 → janito-3.5.1}/pyproject.toml +0 -0
  500. {janito-3.4.0 → janito-3.5.1}/pytest.ini +0 -0
  501. {janito-3.4.0 → janito-3.5.1}/requirements-dev.txt +0 -0
  502. {janito-3.4.0 → janito-3.5.1}/requirements.txt +0 -0
  503. {janito-3.4.0 → janito-3.5.1}/setup.cfg +0 -0
  504. {janito-3.4.0 → janito-3.5.1}/test.txt +0 -0
  505. {janito-3.4.0 → janito-3.5.1}/test_example.py +0 -0
  506. {janito-3.4.0 → janito-3.5.1}/test_http_errors.py +0 -0
  507. {janito-3.4.0 → janito-3.5.1}/test_http_errors_direct.py +0 -0
  508. {janito-3.4.0 → janito-3.5.1}/test_key_field_behavior.py +0 -0
  509. {janito-3.4.0 → janito-3.5.1}/test_key_field_protection.py +0 -0
  510. {janito-3.4.0 → janito-3.5.1}/test_loop_protection_return.py +0 -0
  511. {janito-3.4.0 → janito-3.5.1}/test_market_analyst.py +0 -0
  512. {janito-3.4.0 → janito-3.5.1}/tests/adapters/local/get_file_outline/test_core_outline.py +0 -0
  513. {janito-3.4.0 → janito-3.5.1}/tests/adapters/local/test_read_files.py +0 -0
  514. {janito-3.4.0 → janito-3.5.1}/tests/test_cli_list_models.py +0 -0
  515. {janito-3.4.0 → janito-3.5.1}/tests/test_cli_list_providers.py +0 -0
  516. {janito-3.4.0 → janito-3.5.1}/tests/test_cli_list_providers_alibaba.py +0 -0
  517. {janito-3.4.0 → janito-3.5.1}/tests/test_cli_list_providers_moonshot.py +0 -0
  518. {janito-3.4.0 → janito-3.5.1}/tests/test_cli_version.py +0 -0
  519. {janito-3.4.0 → janito-3.5.1}/tests/test_disabled_tools.py +0 -0
  520. {janito-3.4.0 → janito-3.5.1}/tests/test_plugin_system.py +0 -0
  521. {janito-3.4.0 → janito-3.5.1}/tests/test_provider_alibaba.py +0 -0
  522. {janito-3.4.0 → janito-3.5.1}/tests/test_provider_cerebras.py +0 -0
  523. {janito-3.4.0 → janito-3.5.1}/tests/test_provider_moonshot.py +0 -0
  524. {janito-3.4.0 → janito-3.5.1}/tools/release.py +0 -0
  525. {janito-3.4.0 → janito-3.5.1}/tox.ini +0 -0
@@ -0,0 +1,63 @@
1
+ # 🚀 Janito v3.1.0 Released - Enter Key Cancellation for Chat Mode
2
+
3
+ **Release Date:** August 23, 2025
4
+ **Version:** v3.1.0
5
+ **PyPI:** [janito 3.1.0](https://pypi.org/project/janito/3.1.0/)
6
+
7
+ ## 🎯 What's New
8
+
9
+ ### Instant Request Cancellation in Chat Mode
10
+
11
+ Say goodbye to waiting for stuck LLM requests! Janito v3.1.0 introduces **Enter key cancellation support** for interactive chat mode.
12
+
13
+ #### ✨ Key Features
14
+ - **Press Enter to Cancel**: Instantly cancel any running request with a single key press
15
+ - **Real-time Feedback**: Clear visual confirmation when cancellation occurs
16
+ - **Clean Recovery**: Session remains active and ready for your next prompt
17
+ - **Cross-Platform**: Works seamlessly across all supported platforms
18
+
19
+ #### 🎮 How to Use
20
+ 1. Start chat mode: `janito`
21
+ 2. Submit any prompt
22
+ 3. **Press Enter** at any time to cancel the current request
23
+ 4. See immediate confirmation: "Request cancelled by Enter key"
24
+ 5. Continue chatting without interruption
25
+
26
+ ## 📦 Installation & Upgrade
27
+
28
+ ```bash
29
+ # New installation
30
+ pip install janito==3.1.0
31
+
32
+ # Upgrade existing installation
33
+ pip install --upgrade janito
34
+ ```
35
+
36
+ ## 🔧 Technical Highlights
37
+
38
+ - **Global Cancellation Manager**: Robust cross-component cancellation system
39
+ - **Thread-Safe**: Safe cancellation across async operations
40
+ - **Backward Compatible**: All existing functionality preserved
41
+ - **Clean Architecture**: Extensible design for future enhancements
42
+
43
+ ## 📚 Documentation
44
+
45
+ - [Full Release Notes](docs/changelogs/CHANGELOG_3.1.0.md)
46
+ - [Updated Usage Guide](docs/guides/using.md)
47
+ - [CLI Options Reference](docs/reference/cli-options.md)
48
+
49
+ ## 🌟 Try It Now
50
+
51
+ Experience the improved chat mode with instant cancellation:
52
+
53
+ ```bash
54
+ janito
55
+ # Then try: "Write a comprehensive analysis of quantum computing applications"
56
+ # Press Enter anytime to cancel if needed!
57
+ ```
58
+
59
+ ---
60
+
61
+ **Happy coding!** 🎉
62
+
63
+ *Join our community for support and discussions.*
@@ -0,0 +1,50 @@
1
+ # 🚀 Janito v3.5.1 Released - Enhanced Cancellation Support
2
+
3
+ We're excited to announce the release of **Janito v3.5.1**, a focused patch release that brings comprehensive cancellation support to all system and Python execution tools.
4
+
5
+ ## ✨ Key Features
6
+
7
+ ### 🛑 Real-time Cancellation Support
8
+ - **Cancel long-running bash commands** instantly
9
+ - **Interrupt Python code execution** without hanging processes
10
+ - **Stop Python file runs** mid-execution with graceful cleanup
11
+ - **Immediate user feedback** when operations are cancelled
12
+
13
+ ### 🎨 Cleaner Terminal Output
14
+ - **Plain text stdout/stderr** for better readability
15
+ - **Improved tool integration** compatibility
16
+ - **Copy-paste friendly** output formatting
17
+
18
+ ## 🔧 Technical Improvements
19
+
20
+ - **Enhanced process lifecycle management**
21
+ - **Thread-safe cancellation handling**
22
+ - **Proper resource cleanup** on cancellation
23
+ - **Backward compatibility** maintained
24
+
25
+ ## 📦 Installation & Upgrade
26
+
27
+ ```bash
28
+ # New installation
29
+ pip install janito
30
+
31
+ # Upgrade from v3.5.0
32
+ pip install --upgrade janito
33
+ ```
34
+
35
+ ## 📚 Documentation
36
+
37
+ Updated documentation and examples are available at: https://ikignosis.org/janito/
38
+
39
+ ## 🎯 Use Cases
40
+
41
+ This release is particularly valuable for:
42
+ - **Long-running data processing** - Cancel operations that are taking too long
43
+ - **Development workflows** - Interrupt builds or tests when needed
44
+ - **Interactive sessions** - Better control over command execution
45
+ - **Resource management** - Prevent hanging processes
46
+
47
+ ---
48
+
49
+ **Release Date:** August 29, 2025
50
+ **Full Changelog:** [View on GitHub](https://github.com/ikignosis/janito/releases/tag/v3.5.1)
janito-3.5.1/PKG-INFO ADDED
@@ -0,0 +1,229 @@
1
+ Metadata-Version: 2.4
2
+ Name: janito
3
+ Version: 3.5.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
+ Dynamic: license-file
34
+
35
+ # Janito CLI
36
+
37
+ A powerful command-line tool for running LLM-powered workflows with built-in tool execution capabilities.
38
+
39
+ ## Quick Start
40
+
41
+ ### Installation
42
+
43
+ ```bash
44
+ pip install janito
45
+ ```
46
+
47
+ ### First-Time Setup
48
+
49
+ 1. **Get your API key**: Sign up at [Moonshot AI](https://platform.moonshot.cn/) and get your API key
50
+ 2. **Set your API key**:
51
+ ```bash
52
+ janito --set-api-key YOUR_MOONSHOT_API_KEY -p moonshot
53
+ ```
54
+
55
+ ### Basic Usage
56
+
57
+ **Moonshot (Recommended - Default Provider)**
58
+ ```bash
59
+ # Using the default provider (moonshot) and model
60
+ janito "Create a Python script that reads a CSV file"
61
+
62
+ # Using a specific Moonshot model
63
+ janito -m kimi-k1-8k "Explain quantum computing"
64
+ ```
65
+
66
+ **Other Providers**
67
+ ```bash
68
+ # OpenAI
69
+ janito -p openai -m gpt-4 "Write a React component"
70
+
71
+ # Anthropic
72
+ janito -p anthropic -m claude-3-5-sonnet-20241022 "Analyze this code"
73
+
74
+ # Google
75
+ janito -p google -m gemini-2.0-flash-exp "Generate unit tests"
76
+ ```
77
+
78
+ ### Interactive Chat Mode
79
+
80
+ Start an interactive session (default mode):
81
+ ```bash
82
+ janito
83
+ ```
84
+
85
+ Or explicitly:
86
+ ```bash
87
+ janito --chat
88
+ ```
89
+
90
+ In chat mode, you can:
91
+
92
+ - Have multi-turn conversations
93
+ - Execute code and commands
94
+ - Read and write files
95
+ - Use built-in tools
96
+
97
+ ### Available Commands
98
+
99
+ - `janito --list-providers` - List all supported providers
100
+ - `janito --list-models` - List all available models
101
+ - `janito --list-tools` - List available tools
102
+ - `janito --show-config` - Show current configuration
103
+
104
+ ### Configuration
105
+
106
+ Set default provider and model:
107
+ ```bash
108
+ janito --set provider=moonshot
109
+ janito --set model=kimi-k1-8k
110
+ ```
111
+
112
+ ## Providers
113
+
114
+ ### Moonshot (Recommended)
115
+
116
+ - **Models**: kimi-k1-8k, kimi-k1-32k, kimi-k1-128k, kimi-k2-turbo-preview
117
+ - **Strengths**: Excellent Chinese/English support, competitive pricing, fast responses
118
+ - **Setup**: Get API key from [Moonshot AI Platform](https://platform.moonshot.cn/)
119
+
120
+ ### OpenAI
121
+
122
+ - **Models**: gpt-5, gpt-4.1, gpt-4o, gpt-4-turbo, gpt-3.5-turbo
123
+ - **Setup**: Get API key from [OpenAI Platform](https://platform.openai.com/)
124
+
125
+ ### Anthropic
126
+
127
+ - **Models**: claude-3-7-sonnet-20250219, claude-3-5-sonnet-20241022, claude-3-opus-20250514
128
+ - **Setup**: Get API key from [Anthropic Console](https://console.anthropic.com/)
129
+
130
+ ### IBM WatsonX
131
+
132
+ - **Models**: ibm/granite-3-8b-instruct, ibm/granite-3-2b-instruct, meta-llama/llama-3-1-8b-instruct, meta-llama/llama-3-1-70b-instruct, mistralai/mistral-large
133
+ - **Strengths**: Enterprise-grade AI, IBM Granite models, hosted Llama and Mistral models
134
+ - **Setup**: Get API key and project ID from [IBM Cloud](https://cloud.ibm.com/)
135
+
136
+ ### Google
137
+
138
+ - **Models**: gemini-2.5-flash, gemini-2.5-pro, gemini-2.5-flash-lite-preview-06-17
139
+ - **Setup**: Get API key from [Google AI Studio](https://makersuite.google.com/)
140
+
141
+ ## Advanced Features
142
+
143
+ ### 🚀 New in v3.1.0: Enter Key Cancellation
144
+ **Chat Mode Enhancement**: Press **Enter** at any time to instantly cancel long-running requests in interactive chat mode. No more waiting for stuck requests!
145
+
146
+ ### Tool Usage
147
+
148
+ Janito includes powerful built-in tools for:
149
+
150
+ - File operations (read, write, search)
151
+ - Code execution
152
+ - Web scraping
153
+ - System commands
154
+ - And more...
155
+
156
+ ### Profiles
157
+ Use predefined system prompts:
158
+ ```bash
159
+ janito --developer "Create a REST API" # Same as --profile developer
160
+ janito --market "Analyze market trends" # Same as --profile market-analyst
161
+ ```
162
+
163
+ ### Environment Variables
164
+ You can also configure via environment variables:
165
+
166
+ **Moonshot:**
167
+ ```bash
168
+ export MOONSHOT_API_KEY=your_key_here
169
+ export JANITO_PROVIDER=moonshot
170
+ export JANITO_MODEL=kimi-k1-8k
171
+ ```
172
+
173
+ **OpenAI:**
174
+ ```bash
175
+ export OPENAI_API_KEY=your_key_here
176
+ export JANITO_PROVIDER=openai
177
+ export JANITO_MODEL=gpt-5
178
+ ```
179
+
180
+ **IBM WatsonX:**
181
+ ```bash
182
+ export WATSONX_API_KEY=your_key_here
183
+ export WATSONX_PROJECT_ID=your_project_id
184
+ export WATSONX_SPACE_ID=your_space_id # optional
185
+ export JANITO_PROVIDER=ibm
186
+ export JANITO_MODEL=ibm/granite-3-8b-instruct
187
+ ```
188
+
189
+ **Anthropic:**
190
+ ```bash
191
+ export ANTHROPIC_API_KEY=your_key_here
192
+ export JANITO_PROVIDER=anthropic
193
+ export JANITO_MODEL=claude-3-7-sonnet-20250219
194
+ ```
195
+
196
+ **Google:**
197
+ ```bash
198
+ export GOOGLE_API_KEY=your_key_here
199
+ export JANITO_PROVIDER=google
200
+ export JANITO_MODEL=gemini-2.5-flash
201
+ ```
202
+
203
+ ## Examples
204
+
205
+ ### Code Generation
206
+ ```bash
207
+ janito "Create a Python FastAPI application with user authentication"
208
+ ```
209
+
210
+ ### File Analysis
211
+ ```bash
212
+ janito "Analyze the performance bottlenecks in my_app.py"
213
+ ```
214
+
215
+ ### Data Processing
216
+ ```bash
217
+ janito "Process this CSV file and generate summary statistics"
218
+ ```
219
+
220
+ ### Web Development
221
+ ```bash
222
+ janito "Create a responsive landing page with Tailwind CSS"
223
+ ```
224
+
225
+ ## Support
226
+
227
+ - **Documentation**: Check individual provider directories for detailed setup guides
228
+ - **Issues**: Report bugs and feature requests on GitHub
229
+ - **Discord**: Join our community for help and discussions
@@ -106,6 +106,9 @@ janito --set model=kimi-k1-8k
106
106
 
107
107
  ## Advanced Features
108
108
 
109
+ ### 🚀 New in v3.1.0: Enter Key Cancellation
110
+ **Chat Mode Enhancement**: Press **Enter** at any time to instantly cancel long-running requests in interactive chat mode. No more waiting for stuck requests!
111
+
109
112
  ### Tool Usage
110
113
 
111
114
  Janito includes powerful built-in tools for:
@@ -0,0 +1,202 @@
1
+ # Changelog
2
+
3
+ All notable changes to Janito will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [Unreleased]
9
+
10
+ ### Added
11
+
12
+ ### Changed
13
+
14
+ ### Deprecated
15
+
16
+ ### Removed
17
+
18
+ ### Fixed
19
+
20
+ ### Security
21
+
22
+ ## [3.5.1] - 2025-08-29
23
+
24
+ ### Added
25
+
26
+ - **Cancellation Support**: Added comprehensive cancellation support to system and Python execution tools
27
+ - **Real-time Cancellation**: Users can now cancel long-running bash commands, Python code execution, and Python file runs
28
+ - **Graceful Termination**: Clean cancellation handling with proper process cleanup
29
+ - **User Feedback**: Clear cancellation messages when operations are interrupted
30
+ - **Thread Safety**: Proper thread cleanup and resource management on cancellation
31
+
32
+ ### Fixed
33
+
34
+ - **Terminal Output**: Removed styling from stdout/stderr output in rich terminal reporter
35
+ - **Cleaner Output**: Plain text output for better readability and copy-paste compatibility
36
+ - **Tool Integration**: Improved compatibility with external tools and scripts
37
+ - **Consistent Formatting**: Standardized output across all terminal environments
38
+
39
+ ### Technical Improvements
40
+
41
+ - **Enhanced User Experience**: Cancellation support prevents hanging operations
42
+ - **Code Quality**: Improved error handling and resource cleanup
43
+ - **Process Management**: Better process lifecycle management for external commands
44
+ - **Thread Safety**: Enhanced thread management for concurrent operations
45
+
46
+ ## [3.5.0] - 2025-08-28
47
+
48
+ ### Added
49
+
50
+ - **Live Timer Display**: Added real-time timer display while waiting for LLM responses
51
+ - Shows elapsed time during LLM processing
52
+ - Provides visual feedback for long-running requests
53
+ - Clean, non-intrusive display in terminal interface
54
+
55
+ - **Social Media Integration**: Added comprehensive social media preview support
56
+ - **LinkedIn Integration**: Custom preview images and meta tags for LinkedIn sharing
57
+ - **Platform Support**: Enhanced meta tags for Twitter, Facebook, and other social platforms
58
+ - **Professional Branding**: Consistent visual identity across social media platforms
59
+
60
+ - **Enhanced Documentation**: Major improvements to documentation system
61
+ - **Navigation Features**: Added comprehensive navigation and search capabilities
62
+ - **Google Integration**: Added Google site verification meta tag for better indexing
63
+ - **Preview Tags**: Enhanced markdown extensions with preview tag support
64
+ - **User Experience**: Improved documentation layout and accessibility
65
+
66
+ ### Changed
67
+
68
+ - **Loop Protection Enhancement**: Relaxed create_file loop protection from 10 seconds to 1 hour per path
69
+ - **Better User Experience**: Reduced false positives for legitimate rapid file creation
70
+ - **Maintained Security**: Still prevents abuse while allowing normal development workflows
71
+ - **Configurable**: Protection adapts to actual usage patterns
72
+
73
+ - **Terminal Output Cleanup**: Removed styling from stdout/stderr output in rich terminal reporter
74
+ - **Cleaner Output**: Plain text output for better readability and copy-paste compatibility
75
+ - **Tool Integration**: Improved compatibility with external tools and scripts
76
+ - **Consistent Formatting**: Standardized output across all terminal environments
77
+
78
+ ### Fixed
79
+
80
+ - **Documentation Corrections**: Fixed various documentation issues and broken links
81
+ - **Shell Command Fixes**: Updated documentation with correct shell commands and examples
82
+ - **Thin Client Description**: Restored accurate thin client documentation
83
+
84
+ ### Technical Improvements
85
+
86
+ - **Code Quality**: Minor cleanups and structure improvements across CLI and plugins
87
+ - **Cancellation Handling**: Improved cancellation handling mechanisms
88
+ - **Provider Configuration**: Updated bindings and provider configurations for latest APIs
89
+ - **Working Directory**: Cleaned working directory before release for optimal distribution
90
+
91
+ ## [3.0.0] - 2025-08-23
92
+
93
+ ### Major Architecture Refactoring
94
+
95
+ #### Plugin System Overhaul
96
+ - **Complete plugin system redesign** with unified architecture
97
+ - **Consolidated core plugins** into cohesive `janito/plugins/` structure
98
+ - **Eliminated legacy loading mechanisms** (`core_loader.py`, `core_loader_fixed.py`, `base.py`)
99
+ - **Streamlined plugin discovery** with improved initialization process
100
+ - **Enhanced maintainability** through simplified plugin architecture
101
+
102
+ #### Removed Legacy Components
103
+ - Deleted deprecated plugin loading systems
104
+ - Removed redundant `plugins.txt` configuration file
105
+ - Eliminated duplicate tool adapter implementations
106
+ - Cleaned up temporary test files (`test_core_plugins*.py`)
107
+
108
+ #### Enhanced Plugin Organization
109
+ - **Unified plugin structure** with clear module hierarchy
110
+ - **Consolidated tool categories**:
111
+ - Core system tools (file operations, system commands)
112
+ - Development tools (Python execution, code analysis)
113
+ - UI tools (user interaction, visualization)
114
+ - Web tools (URL fetching, browser integration)
115
+ - **Improved plugin discovery** with automatic initialization
116
+
117
+ ### Technical Improvements
118
+
119
+ #### Code Quality
120
+ - **Reduced complexity** through architectural simplification
121
+ - **Eliminated code duplication** across plugin implementations
122
+ - **Enhanced modularity** with clear separation of concerns
123
+ - **Improved testability** with focused plugin modules
124
+
125
+ #### Configuration Simplification
126
+ - **Streamlined plugin configuration** with unified settings
127
+ - **Simplified initialization process** for new plugins
128
+ - **Reduced configuration overhead** for plugin developers
129
+
130
+ ### Breaking Changes
131
+
132
+ #### Plugin System
133
+ - **Legacy plugin loading mechanisms removed** - plugins must use new system
134
+ - **Plugin directory structure changed** - see updated documentation
135
+ - **Configuration format updated** - simplified plugin settings
136
+
137
+ #### Removed Files
138
+ - `plugins.txt` configuration file
139
+ - Legacy plugin loading modules
140
+ - Temporary test files
141
+ - Redundant tool adapter implementations
142
+
143
+ ### Migration Guide
144
+
145
+ #### For Plugin Developers
146
+ 1. **Update plugin structure** to match new unified architecture
147
+ 2. **Migrate configuration** to new simplified format
148
+ 3. **Test compatibility** with new plugin discovery system
149
+ 4. **Review documentation** for updated development patterns
150
+
151
+ #### For Users
152
+ 1. **Update configuration files** to use new plugin system
153
+ 2. **Review plugin settings** for simplified format
154
+ 3. **Test existing workflows** with new architecture
155
+
156
+ ### Documentation Updates
157
+ - **Comprehensive plugin development guide** with updated patterns
158
+ - **Migration documentation** for legacy plugin system
159
+ - **Enhanced API reference** with new plugin interfaces
160
+
161
+ ## [2.27.0] - 2025-08-22
162
+
163
+ ### Removed
164
+
165
+ - **Breaking Change**: Removed `--role` argument and interactive profile selection
166
+ - The `--role` argument has been completely removed from the CLI
167
+ - Interactive profile selection has been removed from chat mode
168
+ - Use `--profile <name>` or shorthand flags like `--developer` and `--market` instead
169
+ - Default behavior now uses the Developer profile when no profile is specified
170
+
171
+ ### Changed
172
+
173
+ - Updated documentation to reflect removal of role argument
174
+ - Added comprehensive profile documentation in `PROFILES.md`
175
+ - Simplified profile selection to use explicit flags only
176
+
177
+ ## [Previous Versions]
178
+
179
+ ### Added
180
+
181
+ - Initial support for profiles and roles
182
+ - Interactive profile selection in chat mode
183
+ - `--role` argument for specifying developer roles
184
+ - `--profile` argument for system prompt templates
185
+ - `--developer` and `--market` shorthand flags
186
+
187
+ ### Available Profiles
188
+
189
+ - **Developer**: Optimized for software development tasks
190
+ - **Market Analyst**: Specialized for market analysis and business insights
191
+
192
+ ### Supported Providers
193
+
194
+ - Moonshot AI (default)
195
+ - OpenAI
196
+ - Anthropic
197
+ - IBM WatsonX
198
+ - Google AI
199
+
200
+ ---
201
+
202
+ For detailed information about profiles and their usage, see [PROFILES.md](PROFILES.md).
@@ -0,0 +1,141 @@
1
+ # Changelog - Version 3.0.0
2
+
3
+ ## [3.0.0] - 2025-08-23
4
+
5
+ ### Major Architecture Refactoring
6
+
7
+ #### Plugin System Overhaul
8
+ - **Complete plugin system redesign** with unified architecture
9
+ - **Consolidated core plugins** into cohesive `janito/plugins/` structure
10
+ - **Eliminated legacy loading mechanisms** (`core_loader.py`, `core_loader_fixed.py`, `base.py`)
11
+ - **Streamlined plugin discovery** with improved initialization process
12
+ - **Enhanced maintainability** through simplified plugin architecture
13
+
14
+ #### Removed Legacy Components
15
+ - Deleted deprecated plugin loading systems
16
+ - Removed redundant `plugins.txt` configuration file
17
+ - Eliminated duplicate tool adapter implementations
18
+ - Cleaned up temporary test files (`test_core_plugins*.py`)
19
+
20
+ #### Enhanced Plugin Organization
21
+ - **Unified plugin structure** with clear module hierarchy
22
+ - **Consolidated tool categories**:
23
+ - Core system tools (file operations, system commands)
24
+ - Development tools (Python execution, code analysis)
25
+ - UI tools (user interaction, visualization)
26
+ - Web tools (URL fetching, browser integration)
27
+ - **Improved plugin discovery** with automatic initialization
28
+
29
+ ### Technical Improvements
30
+
31
+ #### Code Quality
32
+ - **Reduced complexity** through architectural simplification
33
+ - **Eliminated code duplication** across plugin implementations
34
+ - **Enhanced modularity** with clear separation of concerns
35
+ - **Improved testability** with focused plugin modules
36
+
37
+ #### Configuration Simplification
38
+ - **Streamlined plugin configuration** with unified settings
39
+ - **Simplified initialization process** for new plugins
40
+ - **Reduced configuration overhead** for plugin developers
41
+
42
+ ### Developer Experience
43
+
44
+ #### Plugin Development
45
+ - **Simplified plugin creation** with consistent patterns
46
+ - **Clear plugin boundaries** and responsibilities
47
+ - **Enhanced documentation** with comprehensive examples
48
+ - **Reduced boilerplate** code for new plugins
49
+
50
+ #### Migration Path
51
+ - **Backward compatibility** maintained for existing plugins
52
+ - **Smooth transition** from legacy plugin system
53
+ - **Comprehensive documentation** for migration guidance
54
+
55
+ ### Breaking Changes
56
+
57
+ #### Plugin System
58
+ - **Legacy plugin loading mechanisms removed** - plugins must use new system
59
+ - **Plugin directory structure changed** - see updated documentation
60
+ - **Configuration format updated** - simplified plugin settings
61
+
62
+ #### Removed Files
63
+ - `plugins.txt` configuration file
64
+ - Legacy plugin loading modules
65
+ - Temporary test files
66
+ - Redundant tool adapter implementations
67
+
68
+ ### Migration Guide
69
+
70
+ #### For Plugin Developers
71
+ 1. **Update plugin structure** to match new unified architecture
72
+ 2. **Migrate configuration** to new simplified format
73
+ 3. **Test compatibility** with new plugin discovery system
74
+ 4. **Review documentation** for updated development patterns
75
+
76
+ #### For Users
77
+ 1. **Update configuration files** to use new plugin system
78
+ 2. **Review plugin settings** for simplified format
79
+ 3. **Test existing workflows** with new architecture
80
+
81
+ ### Documentation Updates
82
+
83
+ #### New Documentation
84
+ - **Comprehensive plugin development guide** with updated patterns
85
+ - **Migration documentation** for legacy plugin system
86
+ - **Enhanced API reference** with new plugin interfaces
87
+ - **Updated examples** demonstrating new architecture
88
+
89
+ #### Updated Guides
90
+ - **Plugin creation tutorials** with modern patterns
91
+ - **Configuration documentation** reflecting new system
92
+ - **Best practices** for plugin development
93
+
94
+ ### Performance Improvements
95
+
96
+ #### Startup Time
97
+ - **Faster plugin discovery** through optimized loading
98
+ - **Reduced initialization overhead** with consolidated modules
99
+ - **Improved caching** for plugin metadata
100
+
101
+ #### Memory Usage
102
+ - **Reduced memory footprint** through code consolidation
103
+ - **Eliminated duplicate implementations** across plugins
104
+ - **Optimized plugin loading** with lazy initialization
105
+
106
+ ### Security Enhancements
107
+
108
+ #### Plugin Isolation
109
+ - **Improved plugin sandboxing** with clear boundaries
110
+ - **Enhanced security validation** for plugin loading
111
+ - **Reduced attack surface** through simplified architecture
112
+
113
+ ### Future Roadmap
114
+
115
+ #### Plugin Ecosystem
116
+ - **Community plugin repository** integration planned
117
+ - **Plugin marketplace** development in progress
118
+ - **Advanced plugin features** for complex workflows
119
+
120
+ #### Technical Enhancements
121
+ - **Performance optimizations** for large plugin sets
122
+ - **Advanced plugin configuration** options
123
+ - **Plugin dependency management** improvements
124
+
125
+ ---
126
+
127
+ ## Upgrade Notes
128
+
129
+ ### Before Upgrading
130
+ 1. **Backup existing configuration** files
131
+ 2. **Document current plugin setup** for reference
132
+ 3. **Test critical workflows** with current version
133
+
134
+ ### After Upgrading
135
+ 1. **Review new plugin documentation** for updated patterns
136
+ 2. **Update configuration files** to new format
137
+ 3. **Test all plugins** for compatibility
138
+ 4. **Report any issues** to development team
139
+
140
+ ### Support
141
+ - **Migration assistance** available through GitHub issues
@@ -0,0 +1 @@
1
+ janito.xyz