janito 3.4.0__tar.gz → 3.5.0__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.
- janito-3.5.0/ANNOUNCEMENT_v3.1.0.md +63 -0
- janito-3.5.0/PKG-INFO +229 -0
- {janito-3.4.0/janito → janito-3.5.0}/README.md +3 -0
- janito-3.5.0/docs/CHANGELOG.md +178 -0
- janito-3.5.0/docs/CHANGELOG_3.0.0.md +141 -0
- janito-3.5.0/docs/CNAME +1 -0
- janito-3.5.0/docs/assets/images/social-preview.png +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/changelogs/CHANGELOG.md +33 -0
- janito-3.5.0/docs/changelogs/CHANGELOG_3.1.0.md +51 -0
- janito-3.5.0/docs/changelogs/CHANGELOG_3.5.0.md +63 -0
- {janito-3.4.0 → janito-3.5.0}/docs/guides/using.md +1 -0
- {janito-3.4.0 → janito-3.5.0}/docs/index.md +6 -1
- janito-3.5.0/docs/overrides/main.html +7 -0
- janito-3.5.0/docs/overrides/partials/social.html +55 -0
- {janito-3.4.0 → janito-3.5.0}/docs/plugins/built-in-plugins/filemanager.md +1 -1
- janito-3.5.0/docs/together-setup.md +86 -0
- janito-3.5.0/init_janito_tools.py +51 -0
- janito-3.5.0/janito/README.md +195 -0
- janito-3.5.0/janito/cli/chat_mode/bindings.py +88 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/chat_mode/session.py +12 -1
- {janito-3.4.0 → janito-3.5.0}/janito/cli/chat_mode/shell/commands/multi.py +5 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/chat_mode/shell/commands/security/allowed_sites.py +47 -33
- janito-3.5.0/janito/cli/cli_commands/check_tools.py +212 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/cli_commands/list_plugins.py +52 -43
- {janito-3.4.0 → janito-3.5.0}/janito/cli/core/getters.py +3 -0
- janito-3.5.0/janito/cli/core/model_guesser.py +70 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/main_cli.py +9 -12
- {janito-3.4.0 → janito-3.5.0}/janito/cli/prompt_core.py +47 -9
- {janito-3.4.0 → janito-3.5.0}/janito/cli/rich_terminal_reporter.py +2 -2
- {janito-3.4.0 → janito-3.5.0}/janito/drivers/openai/driver.py +1 -0
- {janito-3.4.0 → janito-3.5.0}/janito/drivers/zai/driver.py +1 -0
- {janito-3.4.0 → janito-3.5.0}/janito/i18n/it.py +46 -46
- {janito-3.4.0 → janito-3.5.0}/janito/llm/agent.py +32 -16
- janito-3.5.0/janito/llm/auth_utils.py +30 -0
- janito-3.5.0/janito/llm/cancellation_manager.py +63 -0
- {janito-3.4.0 → janito-3.5.0}/janito/llm/driver.py +8 -0
- janito-3.5.0/janito/llm/enter_cancellation.py +107 -0
- janito-3.5.0/janito/plugin_system/__init__.py +10 -0
- {janito-3.4.0/janito/plugins → janito-3.5.0/janito/plugin_system}/base.py +5 -2
- janito-3.5.0/janito/plugin_system/core_loader.py +217 -0
- janito-3.5.0/janito/plugin_system/core_loader_fixed.py +225 -0
- {janito-3.4.0 → janito-3.5.0}/janito/plugins/auto_loader.py +12 -11
- {janito-3.4.0 → janito-3.5.0}/janito/plugins/auto_loader_fixed.py +12 -11
- {janito-3.4.0 → janito-3.5.0}/janito/plugins/builtin.py +15 -1
- {janito-3.4.0 → janito-3.5.0/janito}/plugins/core/codeanalyzer/__init__.py +9 -0
- {janito-3.4.0 → janito-3.5.0/janito}/plugins/core/filemanager/__init__.py +33 -0
- {janito-3.4.0 → janito-3.5.0/janito}/plugins/core/filemanager/tools/create_file.py +2 -2
- {janito-3.4.0 → janito-3.5.0/janito}/plugins/core/imagedisplay/__init__.py +1 -1
- {janito-3.4.0 → janito-3.5.0/janito}/plugins/core/imagedisplay/plugin.py +2 -2
- janito-3.5.0/janito/plugins/core/imagedisplay/tools/__init__.py +1 -0
- {janito-3.4.0 → janito-3.5.0/janito}/plugins/core/imagedisplay/tools/show_image.py +12 -3
- {janito-3.4.0 → janito-3.5.0/janito}/plugins/core/imagedisplay/tools/show_image_grid.py +12 -3
- {janito-3.4.0 → janito-3.5.0/janito}/plugins/core/system/__init__.py +3 -0
- janito-3.5.0/janito/plugins/core_adapter.py +131 -0
- {janito-3.4.0 → janito-3.5.0/janito}/plugins/dev/pythondev/__init__.py +9 -0
- {janito-3.4.0 → janito-3.5.0/janito}/plugins/dev/visualization/__init__.py +3 -0
- {janito-3.4.0 → janito-3.5.0}/janito/plugins/discovery.py +5 -5
- {janito-3.4.0 → janito-3.5.0}/janito/plugins/discovery_core.py +14 -9
- {janito-3.4.0 → janito-3.5.0/janito}/plugins/example_plugin.py +1 -1
- {janito-3.4.0 → janito-3.5.0}/janito/plugins/manager.py +1 -1
- janito-3.5.0/janito/plugins/tools/__init__.py +10 -0
- {janito-3.4.0/janito/tools/adapters/local → janito-3.5.0/janito/plugins/tools}/ask_user.py +3 -3
- {janito-3.4.0/plugins/core/filemanager → janito-3.5.0/janito/plugins}/tools/copy_file.py +3 -3
- janito-3.5.0/janito/plugins/tools/core_tools_plugin.py +87 -0
- {janito-3.4.0/plugins/core/filemanager → janito-3.5.0/janito/plugins}/tools/create_directory.py +3 -3
- {janito-3.4.0/janito/tools/adapters/local → janito-3.5.0/janito/plugins/tools}/create_file.py +6 -6
- janito-3.5.0/janito/plugins/tools/decorators.py +19 -0
- {janito-3.4.0/plugins/core/filemanager → janito-3.5.0/janito/plugins}/tools/delete_text_in_file.py +4 -4
- {janito-3.4.0/janito/tools/adapters/local → janito-3.5.0/janito/plugins/tools}/fetch_url.py +3 -3
- {janito-3.4.0/plugins/core/filemanager → janito-3.5.0/janito/plugins}/tools/find_files.py +3 -3
- janito-3.5.0/janito/plugins/tools/get_file_outline/__init__.py +7 -0
- {janito-3.4.0/plugins/core/codeanalyzer → janito-3.5.0/janito/plugins}/tools/get_file_outline/core.py +3 -3
- {janito-3.4.0/plugins/core/filemanager → janito-3.5.0/janito/plugins}/tools/move_file.py +3 -3
- {janito-3.4.0/plugins/web/webtools → janito-3.5.0/janito/plugins}/tools/open_html_in_browser.py +3 -3
- {janito-3.4.0/plugins/web/webtools → janito-3.5.0/janito/plugins}/tools/open_url.py +3 -3
- {janito-3.4.0/plugins/dev/pythondev → janito-3.5.0/janito/plugins}/tools/python_code_run.py +3 -3
- {janito-3.4.0/plugins/dev/pythondev → janito-3.5.0/janito/plugins}/tools/python_command_run.py +3 -3
- {janito-3.4.0/plugins/dev/pythondev → janito-3.5.0/janito/plugins}/tools/python_file_run.py +3 -3
- {janito-3.4.0/plugins/dev/visualization → janito-3.5.0/janito/plugins}/tools/read_chart.py +3 -3
- {janito-3.4.0/plugins/core/filemanager → janito-3.5.0/janito/plugins}/tools/read_files.py +3 -3
- {janito-3.4.0/plugins/core/filemanager → janito-3.5.0/janito/plugins}/tools/remove_directory.py +3 -3
- {janito-3.4.0/plugins/core/filemanager → janito-3.5.0/janito/plugins}/tools/remove_file.py +3 -3
- {janito-3.4.0/janito/tools/adapters/local → janito-3.5.0/janito/plugins/tools}/replace_text_in_file.py +4 -4
- {janito-3.4.0/plugins/core/system → janito-3.5.0/janito/plugins}/tools/run_bash_command.py +3 -3
- {janito-3.4.0/plugins/core/system → janito-3.5.0/janito/plugins}/tools/run_powershell_command.py +3 -3
- janito-3.5.0/janito/plugins/tools/search_text/__init__.py +7 -0
- {janito-3.4.0/plugins/core/codeanalyzer → janito-3.5.0/janito/plugins}/tools/search_text/core.py +3 -3
- {janito-3.4.0/janito/tools/adapters/local → janito-3.5.0/janito/plugins/tools}/show_image.py +15 -6
- {janito-3.4.0/janito/tools/adapters/local → janito-3.5.0/janito/plugins/tools}/show_image_grid.py +15 -6
- janito-3.5.0/janito/plugins/tools/validate_file_syntax/__init__.py +7 -0
- {janito-3.4.0/plugins/core/filemanager → janito-3.5.0/janito/plugins}/tools/validate_file_syntax/core.py +2 -2
- {janito-3.4.0/plugins/core/filemanager → janito-3.5.0/janito/plugins}/tools/view_file.py +3 -3
- {janito-3.4.0 → janito-3.5.0}/janito/providers/__init__.py +1 -0
- janito-3.5.0/janito/providers/together/__init__.py +1 -0
- janito-3.5.0/janito/providers/together/model_info.py +69 -0
- janito-3.5.0/janito/providers/together/provider.py +108 -0
- janito-3.5.0/janito/tools/__init__.py +60 -0
- janito-3.5.0/janito/tools/adapters/__init__.py +6 -0
- janito-3.5.0/janito/tools/adapters/local/__init__.py +10 -0
- janito-3.5.0/janito/tools/cli_initializer.py +88 -0
- janito-3.5.0/janito/tools/initialize.py +70 -0
- janito-3.5.0/janito/tools/loop_protection_decorator.py +142 -0
- janito-3.5.0/janito.egg-info/PKG-INFO +229 -0
- {janito-3.4.0 → janito-3.5.0}/janito.egg-info/SOURCES.txt +132 -113
- {janito-3.4.0 → janito-3.5.0}/janito.egg-info/requires.txt +0 -1
- {janito-3.4.0 → janito-3.5.0}/mkdocs.yml +21 -3
- janito-3.4.0/PKG-INFO +0 -84
- janito-3.4.0/README.md +0 -49
- janito-3.4.0/docs/CHANGELOG.md +0 -49
- janito-3.4.0/janito/cli/chat_mode/bindings.py +0 -38
- janito-3.4.0/janito/cli/core/model_guesser.py +0 -54
- janito-3.4.0/janito/llm/auth_utils.py +0 -21
- janito-3.4.0/janito/plugins/__init__.py +0 -17
- janito-3.4.0/janito/plugins/core_adapter.py +0 -53
- janito-3.4.0/janito/plugins/core_loader.py +0 -120
- janito-3.4.0/janito/plugins/core_loader_fixed.py +0 -125
- janito-3.4.0/janito/tools/__init__.py +0 -36
- janito-3.4.0/janito/tools/adapters/__init__.py +0 -1
- janito-3.4.0/janito/tools/adapters/local/__init__.py +0 -73
- janito-3.4.0/janito/tools/function_adapter.py +0 -65
- janito-3.4.0/janito/tools/loop_protection_decorator.py +0 -145
- janito-3.4.0/janito.egg-info/PKG-INFO +0 -84
- janito-3.4.0/plugins/core/codeanalyzer/tools/get_file_outline/__init__.py +0 -1
- janito-3.4.0/plugins/core/codeanalyzer/tools/search_text/__init__.py +0 -1
- janito-3.4.0/plugins/core/filemanager/tools/validate_file_syntax/__init__.py +0 -1
- janito-3.4.0/plugins/core/imagedisplay/tools/__init__.py +0 -1
- janito-3.4.0/plugins.txt +0 -1
- {janito-3.4.0 → janito-3.5.0}/.codespellrc +0 -0
- {janito-3.4.0 → janito-3.5.0}/.gitattributes +0 -0
- {janito-3.4.0 → janito-3.5.0}/.github/workflows/python-app.yml.disabled +0 -0
- {janito-3.4.0 → janito-3.5.0}/.gitignore +0 -0
- {janito-3.4.0 → janito-3.5.0}/.pre-commit-config.yaml +0 -0
- {janito-3.4.0 → janito-3.5.0}/.secrets.baseline +0 -0
- {janito-3.4.0 → janito-3.5.0}/.vscode/settings.json +0 -0
- {janito-3.4.0 → janito-3.5.0}/LICENSE +0 -0
- {janito-3.4.0 → janito-3.5.0}/MARKET_ANALYST_README.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/README-dev.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/RELEASE_COMPARISON.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/UPDATING_DOCS.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/adding_mcp.txt +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/DIV.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/Interfaces.txt +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/PROFILES.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/TOOLBAR-STYLING.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/about/costs.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/about/vs-webchats.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/about/why.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/alibaba-setup.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/alternatives.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/cerebras-setup.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/changelogs/CHANGELOG_2.16.0.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/changelogs/CHANGELOG_2.23.0.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/changelogs/CHANGELOG_2.26.0.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/changelogs/CHANGELOG_2.27.0.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/changelogs/RELEASE_NOTES_2.22.0.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/changelogs/RELEASE_NOTES_2.24.1.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/code_intelligence/agentic-frameworks-comparison.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/code_intelligence/code-generation-challenges.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/code_intelligence/code-generation-observability.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/code_intelligence/our-approach.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/code_intelligence/why-string-replacement.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/concepts/analysis-style.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/concepts/human-guided-ai.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/concepts/index.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/concepts/language-model-clients.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/concepts/prompt-design-style.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/deepseek-setup.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/driver-flow.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/driver-request-cancellation.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/drivers/events.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/drivers.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/event-bus.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/guides/configuration.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/guides/developing.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/guides/disabled-tools.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/guides/installation.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/guides/market-data-sources.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/guides/profiles.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/guides/prompting/README.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/guides/read-chart-examples.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/guides/security-commands.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/guides/single-shot-terminal.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/guides/stock-market-guide.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/guides/terminal-shell.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/guides/tools-developer-guide.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/guides/url-whitelist.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/guides/using_tools.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/ibm-setup.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/imgs/code-generation-observability.png +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/imgs/code_generation_observability.png +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/imgs/happy-programmer.png +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/imgs/happy-programmer.svg +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/imgs/terminal-one-shot.png +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/imgs/terminal-shell.png +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/imgs/terminal_one_shot.png +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/imgs/terminal_shell.png +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/llm-drivers-required-config.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/llm-drivers.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/meta/developer-toolchain.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/meta/quality-checks.txt +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/mistral-setup.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/moonshot-setup.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/openai-setup.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/overrides/partials/copyright.html +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/plugins/ACTUAL_TOOLS_LOCATION.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/plugins/MIGRATION_COMPLETE.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/plugins/README.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/plugins/api-reference.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/plugins/architecture.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/plugins/built-in-plugins/codeanalyzer.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/plugins/built-in-plugins/imagedisplay.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/plugins/built-in-plugins/pythondev.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/plugins/built-in-plugins/system.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/plugins/built-in-plugins/userinterface.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/plugins/built-in-plugins/visualization.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/plugins/built-in-plugins/webtools.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/plugins/configuration.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/plugins/examples/advanced.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/plugins/examples/basic.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/plugins/examples/intermediate.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/plugins/plugin-development.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/plugins/plugin-resources.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/plugins/publishing.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/plugins/remote-plugins.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/plugins/testing.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/provider-platform-access.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/public-sources.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/reference/api.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/reference/azure-openai.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/reference/cli-options.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/reference/message-handler-model.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/reference/rich-message-handler.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/security.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/supported-providers-models.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/tools/search-text.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/tools/show-image-grid.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/tools/show-image.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/tools-index.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/tools-natural-results.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/tools-precision.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/docs/z-ai-setup.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/examples/loop_protection_example.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/examples/loop_protection_tool_example.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/get_nasdaq_top.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/ibm-logo.txt +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/__init__.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/__main__.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/_version.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/agent/setup_agent.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/agent/templates/profiles/system_prompt_template_Developer_with_Python_Tools.txt.j2 +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/agent/templates/profiles/system_prompt_template_developer.txt.j2 +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/agent/templates/profiles/system_prompt_template_market_analyst.txt.j2 +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/agent/templates/profiles/system_prompt_template_model_conversation_without_tools_or_context.txt.j2 +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/__init__.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/chat_mode/chat_entry.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/chat_mode/prompt_style.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/chat_mode/script_runner.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/chat_mode/shell/autocomplete.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/chat_mode/shell/commands/__init__.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/chat_mode/shell/commands/_priv_check.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/chat_mode/shell/commands/_priv_status.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/chat_mode/shell/commands/bang.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/chat_mode/shell/commands/base.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/chat_mode/shell/commands/clear.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/chat_mode/shell/commands/conversation_restart.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/chat_mode/shell/commands/execute.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/chat_mode/shell/commands/help.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/chat_mode/shell/commands/history_view.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/chat_mode/shell/commands/lang.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/chat_mode/shell/commands/model.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/chat_mode/shell/commands/privileges.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/chat_mode/shell/commands/prompt.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/chat_mode/shell/commands/provider.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/chat_mode/shell/commands/read.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/chat_mode/shell/commands/role.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/chat_mode/shell/commands/security/__init__.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/chat_mode/shell/commands/security_command.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/chat_mode/shell/commands/session.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/chat_mode/shell/commands/session_control.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/chat_mode/shell/commands/tools.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/chat_mode/shell/commands/unrestricted.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/chat_mode/shell/commands/utility.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/chat_mode/shell/commands/verbose.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/chat_mode/shell/commands/write.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/chat_mode/shell/commands.bak.zip +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/chat_mode/shell/input_history.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/chat_mode/shell/session/__init__.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/chat_mode/shell/session/history.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/chat_mode/shell/session/manager.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/chat_mode/shell/session.bak.zip +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/chat_mode/toolbar.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/cli_commands/enable_disable_plugin.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/cli_commands/list_config.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/cli_commands/list_drivers.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/cli_commands/list_models.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/cli_commands/list_profiles.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/cli_commands/list_providers.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/cli_commands/list_providers_region.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/cli_commands/list_tools.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/cli_commands/model_selection.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/cli_commands/model_utils.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/cli_commands/ping_providers.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/cli_commands/set_api_key.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/cli_commands/show_config.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/cli_commands/show_system_prompt.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/config.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/console.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/core/__init__.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/core/event_logger.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/core/runner.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/core/setters.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/core/unsetters.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/main.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/prompt_handler.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/prompt_setup.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/single_shot_mode/__init__.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/single_shot_mode/handler.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/utils.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/cli/verbose_output.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/config.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/config_manager.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/conversation_history.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/dir_walk_utils.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/docs/GETTING_STARTED.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/driver_events.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/drivers/azure_openai/driver.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/drivers/cerebras/__init__.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/drivers/dashscope.bak.zip +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/drivers/openai/README.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/drivers/openai_responses.bak.zip +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/drivers/zai/__init__.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/event_bus/__init__.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/event_bus/bus.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/event_bus/event.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/event_bus/handler.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/event_bus/queue_bus.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/exceptions.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/formatting.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/formatting_token.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/gitignore_utils.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/hello.txt +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/i18n/__init__.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/i18n/messages.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/i18n/pt.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/llm/README.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/llm/__init__.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/llm/auth.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/llm/driver_config.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/llm/driver_config_builder.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/llm/driver_input.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/llm/message_parts.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/llm/model.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/llm/provider.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/mkdocs.yml +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/perf_singleton.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/performance_collector.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/platform_discovery.py +0 -0
- {janito-3.4.0 → janito-3.5.0/janito}/plugins/__init__.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/plugins/config.py +0 -0
- {janito-3.4.0 → janito-3.5.0/janito}/plugins/core/__init__.py +0 -0
- {janito-3.4.0/janito/tools/adapters/local → janito-3.5.0/janito/plugins/core/codeanalyzer/tools}/get_file_outline/__init__.py +0 -0
- {janito-3.4.0/janito/tools/adapters/local → janito-3.5.0/janito/plugins/core/codeanalyzer/tools}/get_file_outline/core.py +0 -0
- {janito-3.4.0/janito/tools/adapters/local → janito-3.5.0/janito/plugins/core/codeanalyzer/tools}/get_file_outline/java_outline.py +0 -0
- {janito-3.4.0/janito/tools/adapters/local → janito-3.5.0/janito/plugins/core/codeanalyzer/tools}/get_file_outline/markdown_outline.py +0 -0
- {janito-3.4.0/janito/tools/adapters/local → janito-3.5.0/janito/plugins/core/codeanalyzer/tools}/get_file_outline/python_outline.py +0 -0
- {janito-3.4.0/janito/tools/adapters/local → janito-3.5.0/janito/plugins/core/codeanalyzer/tools}/get_file_outline/search_outline.py +0 -0
- {janito-3.4.0/janito/tools/adapters/local → janito-3.5.0/janito/plugins/core/codeanalyzer/tools}/search_text/__init__.py +0 -0
- {janito-3.4.0/janito/tools/adapters/local → janito-3.5.0/janito/plugins/core/codeanalyzer/tools}/search_text/core.py +0 -0
- {janito-3.4.0/janito/tools/adapters/local → janito-3.5.0/janito/plugins/core/codeanalyzer/tools}/search_text/match_lines.py +0 -0
- {janito-3.4.0/janito/tools/adapters/local → janito-3.5.0/janito/plugins/core/codeanalyzer/tools}/search_text/pattern_utils.py +0 -0
- {janito-3.4.0/janito/tools/adapters/local → janito-3.5.0/janito/plugins/core/codeanalyzer/tools}/search_text/traverse_directory.py +0 -0
- {janito-3.4.0/janito/tools/adapters/local → janito-3.5.0/janito/plugins/core/filemanager/tools}/copy_file.py +0 -0
- {janito-3.4.0/janito/tools/adapters/local → janito-3.5.0/janito/plugins/core/filemanager/tools}/create_directory.py +0 -0
- {janito-3.4.0/janito/tools/adapters/local → janito-3.5.0/janito/plugins/core/filemanager/tools}/delete_text_in_file.py +0 -0
- {janito-3.4.0/janito/tools/adapters/local → janito-3.5.0/janito/plugins/core/filemanager/tools}/find_files.py +0 -0
- {janito-3.4.0/janito/tools/adapters/local → janito-3.5.0/janito/plugins/core/filemanager/tools}/move_file.py +0 -0
- {janito-3.4.0/janito/tools/adapters/local → janito-3.5.0/janito/plugins/core/filemanager/tools}/read_files.py +0 -0
- {janito-3.4.0/janito/tools/adapters/local → janito-3.5.0/janito/plugins/core/filemanager/tools}/remove_directory.py +0 -0
- {janito-3.4.0/janito/tools/adapters/local → janito-3.5.0/janito/plugins/core/filemanager/tools}/remove_file.py +0 -0
- {janito-3.4.0 → janito-3.5.0/janito}/plugins/core/filemanager/tools/replace_text_in_file.py +0 -0
- {janito-3.4.0/janito/tools/adapters/local → janito-3.5.0/janito/plugins/core/filemanager/tools}/validate_file_syntax/__init__.py +0 -0
- {janito-3.4.0/janito/tools/adapters/local → janito-3.5.0/janito/plugins/core/filemanager/tools}/validate_file_syntax/core.py +0 -0
- {janito-3.4.0/janito/tools/adapters/local → janito-3.5.0/janito/plugins/core/filemanager/tools}/validate_file_syntax/css_validator.py +0 -0
- {janito-3.4.0/janito/tools/adapters/local → janito-3.5.0/janito/plugins/core/filemanager/tools}/validate_file_syntax/html_validator.py +0 -0
- {janito-3.4.0/janito/tools/adapters/local → janito-3.5.0/janito/plugins/core/filemanager/tools}/validate_file_syntax/jinja2_validator.py +0 -0
- {janito-3.4.0/janito/tools/adapters/local → janito-3.5.0/janito/plugins/core/filemanager/tools}/validate_file_syntax/js_validator.py +0 -0
- {janito-3.4.0/janito/tools/adapters/local → janito-3.5.0/janito/plugins/core/filemanager/tools}/validate_file_syntax/json_validator.py +0 -0
- {janito-3.4.0/janito/tools/adapters/local → janito-3.5.0/janito/plugins/core/filemanager/tools}/validate_file_syntax/markdown_validator.py +0 -0
- {janito-3.4.0/janito/tools/adapters/local → janito-3.5.0/janito/plugins/core/filemanager/tools}/validate_file_syntax/ps1_validator.py +0 -0
- {janito-3.4.0/janito/tools/adapters/local → janito-3.5.0/janito/plugins/core/filemanager/tools}/validate_file_syntax/python_validator.py +0 -0
- {janito-3.4.0/janito/tools/adapters/local → janito-3.5.0/janito/plugins/core/filemanager/tools}/validate_file_syntax/xml_validator.py +0 -0
- {janito-3.4.0/janito/tools/adapters/local → janito-3.5.0/janito/plugins/core/filemanager/tools}/validate_file_syntax/yaml_validator.py +0 -0
- {janito-3.4.0/janito/tools/adapters/local → janito-3.5.0/janito/plugins/core/filemanager/tools}/view_file.py +0 -0
- {janito-3.4.0/janito/tools/adapters/local → janito-3.5.0/janito/plugins/core/system/tools}/run_bash_command.py +0 -0
- {janito-3.4.0/janito/tools/adapters/local → janito-3.5.0/janito/plugins/core/system/tools}/run_powershell_command.py +0 -0
- {janito-3.4.0 → janito-3.5.0/janito}/plugins/dev/__init__.py +0 -0
- {janito-3.4.0/janito/tools/adapters/local → janito-3.5.0/janito/plugins/dev/pythondev/tools}/python_code_run.py +0 -0
- {janito-3.4.0/janito/tools/adapters/local → janito-3.5.0/janito/plugins/dev/pythondev/tools}/python_command_run.py +0 -0
- {janito-3.4.0/janito/tools/adapters/local → janito-3.5.0/janito/plugins/dev/pythondev/tools}/python_file_run.py +0 -0
- {janito-3.4.0/janito/tools/adapters/local → janito-3.5.0/janito/plugins/dev/visualization/tools}/read_chart.py +0 -0
- {janito-3.4.0/plugins/core/codeanalyzer → janito-3.5.0/janito/plugins}/tools/get_file_outline/java_outline.py +0 -0
- {janito-3.4.0/plugins/core/codeanalyzer → janito-3.5.0/janito/plugins}/tools/get_file_outline/markdown_outline.py +0 -0
- {janito-3.4.0/plugins/core/codeanalyzer → janito-3.5.0/janito/plugins}/tools/get_file_outline/python_outline.py +0 -0
- {janito-3.4.0/plugins/core/codeanalyzer → janito-3.5.0/janito/plugins}/tools/get_file_outline/search_outline.py +0 -0
- {janito-3.4.0/plugins/core/codeanalyzer → janito-3.5.0/janito/plugins}/tools/search_text/match_lines.py +0 -0
- {janito-3.4.0/plugins/core/codeanalyzer → janito-3.5.0/janito/plugins}/tools/search_text/pattern_utils.py +0 -0
- {janito-3.4.0/plugins/core/codeanalyzer → janito-3.5.0/janito/plugins}/tools/search_text/traverse_directory.py +0 -0
- {janito-3.4.0/plugins/core/filemanager → janito-3.5.0/janito/plugins}/tools/validate_file_syntax/css_validator.py +0 -0
- {janito-3.4.0/plugins/core/filemanager → janito-3.5.0/janito/plugins}/tools/validate_file_syntax/html_validator.py +0 -0
- {janito-3.4.0/plugins/core/filemanager → janito-3.5.0/janito/plugins}/tools/validate_file_syntax/jinja2_validator.py +0 -0
- {janito-3.4.0/plugins/core/filemanager → janito-3.5.0/janito/plugins}/tools/validate_file_syntax/js_validator.py +0 -0
- {janito-3.4.0/plugins/core/filemanager → janito-3.5.0/janito/plugins}/tools/validate_file_syntax/json_validator.py +0 -0
- {janito-3.4.0/plugins/core/filemanager → janito-3.5.0/janito/plugins}/tools/validate_file_syntax/markdown_validator.py +0 -0
- {janito-3.4.0/plugins/core/filemanager → janito-3.5.0/janito/plugins}/tools/validate_file_syntax/ps1_validator.py +0 -0
- {janito-3.4.0/plugins/core/filemanager → janito-3.5.0/janito/plugins}/tools/validate_file_syntax/python_validator.py +0 -0
- {janito-3.4.0/plugins/core/filemanager → janito-3.5.0/janito/plugins}/tools/validate_file_syntax/xml_validator.py +0 -0
- {janito-3.4.0/plugins/core/filemanager → janito-3.5.0/janito/plugins}/tools/validate_file_syntax/yaml_validator.py +0 -0
- {janito-3.4.0 → janito-3.5.0/janito}/plugins/ui/__init__.py +0 -0
- {janito-3.4.0 → janito-3.5.0/janito}/plugins/ui/userinterface/__init__.py +0 -0
- {janito-3.4.0 → janito-3.5.0/janito}/plugins/ui/userinterface/tools/ask_user.py +0 -0
- {janito-3.4.0 → janito-3.5.0/janito}/plugins/web/__init__.py +0 -0
- {janito-3.4.0 → janito-3.5.0/janito}/plugins/web/webtools/__init__.py +0 -0
- {janito-3.4.0 → janito-3.5.0/janito}/plugins/web/webtools/tools/fetch_url.py +0 -0
- {janito-3.4.0/janito/tools/adapters/local → janito-3.5.0/janito/plugins/web/webtools/tools}/open_html_in_browser.py +0 -0
- {janito-3.4.0/janito/tools/adapters/local → janito-3.5.0/janito/plugins/web/webtools/tools}/open_url.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/provider_config.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/provider_registry.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/providers/alibaba/__init__.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/providers/alibaba/model_info.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/providers/alibaba/provider.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/providers/anthropic/model_info.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/providers/anthropic/provider.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/providers/azure_openai/model_info.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/providers/azure_openai/provider.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/providers/cerebras/__init__.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/providers/cerebras/model_info.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/providers/cerebras/provider.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/providers/dashscope.bak.zip +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/providers/deepseek/__init__.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/providers/deepseek/model_info.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/providers/deepseek/provider.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/providers/google/__init__.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/providers/google/model_info.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/providers/google/provider.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/providers/ibm/README.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/providers/ibm/__init__.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/providers/ibm/model_info.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/providers/ibm/provider.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/providers/mistral/__init__.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/providers/mistral/model_info.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/providers/mistral/provider.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/providers/moonshot/__init__.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/providers/moonshot/model_info.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/providers/moonshot/provider.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/providers/openai/__init__.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/providers/openai/model_info.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/providers/openai/provider.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/providers/openai/schema_generator.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/providers/registry.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/providers/zai/__init__.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/providers/zai/model_info.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/providers/zai/provider.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/providers/zai/schema_generator.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/regions/__init__.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/regions/cli.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/regions/geo_utils.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/regions/provider_regions.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/report_events.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/shell.bak.zip +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/tools/DOCSTRING_STANDARD.txt +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/tools/README.md +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/tools/adapters/local/adapter.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/tools/base.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/tools/disabled_tools.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/tools/inspect_registry.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/tools/loop_protection.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/tools/outline_file.bak.zip +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/tools/path_security.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/tools/path_utils.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/tools/permissions.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/tools/permissions_parse.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/tools/tool_base.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/tools/tool_events.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/tools/tool_run_exception.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/tools/tool_use_tracker.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/tools/tool_utils.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/tools/tools_adapter.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/tools/tools_schema.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/tools/url_whitelist.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito/utils.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito.egg-info/dependency_links.txt +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito.egg-info/entry_points.txt +0 -0
- {janito-3.4.0 → janito-3.5.0}/janito.egg-info/top_level.txt +0 -0
- {janito-3.4.0 → janito-3.5.0}/market_prompt_fix.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/market_test.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/mkdocs_hooks.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/pyproject.toml +0 -0
- {janito-3.4.0 → janito-3.5.0}/pytest.ini +0 -0
- {janito-3.4.0 → janito-3.5.0}/requirements-dev.txt +0 -0
- {janito-3.4.0 → janito-3.5.0}/requirements.txt +0 -0
- {janito-3.4.0 → janito-3.5.0}/setup.cfg +0 -0
- {janito-3.4.0 → janito-3.5.0}/test.txt +0 -0
- {janito-3.4.0 → janito-3.5.0}/test_example.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/test_http_errors.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/test_http_errors_direct.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/test_key_field_behavior.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/test_key_field_protection.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/test_loop_protection_return.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/test_market_analyst.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/tests/adapters/local/get_file_outline/test_core_outline.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/tests/adapters/local/test_read_files.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/tests/test_cli_list_models.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/tests/test_cli_list_providers.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/tests/test_cli_list_providers_alibaba.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/tests/test_cli_list_providers_moonshot.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/tests/test_cli_version.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/tests/test_disabled_tools.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/tests/test_plugin_system.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/tests/test_provider_alibaba.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/tests/test_provider_cerebras.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/tests/test_provider_moonshot.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/tools/release.py +0 -0
- {janito-3.4.0 → janito-3.5.0}/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.*
|
janito-3.5.0/PKG-INFO
ADDED
@@ -0,0 +1,229 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: janito
|
3
|
+
Version: 3.5.0
|
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,178 @@
|
|
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.0] - 2025-08-28
|
23
|
+
|
24
|
+
### Added
|
25
|
+
|
26
|
+
- **Live Timer Display**: Added real-time timer display while waiting for LLM responses
|
27
|
+
- Shows elapsed time during LLM processing
|
28
|
+
- Provides visual feedback for long-running requests
|
29
|
+
- Clean, non-intrusive display in terminal interface
|
30
|
+
|
31
|
+
- **Social Media Integration**: Added comprehensive social media preview support
|
32
|
+
- **LinkedIn Integration**: Custom preview images and meta tags for LinkedIn sharing
|
33
|
+
- **Platform Support**: Enhanced meta tags for Twitter, Facebook, and other social platforms
|
34
|
+
- **Professional Branding**: Consistent visual identity across social media platforms
|
35
|
+
|
36
|
+
- **Enhanced Documentation**: Major improvements to documentation system
|
37
|
+
- **Navigation Features**: Added comprehensive navigation and search capabilities
|
38
|
+
- **Google Integration**: Added Google site verification meta tag for better indexing
|
39
|
+
- **Preview Tags**: Enhanced markdown extensions with preview tag support
|
40
|
+
- **User Experience**: Improved documentation layout and accessibility
|
41
|
+
|
42
|
+
### Changed
|
43
|
+
|
44
|
+
- **Loop Protection Enhancement**: Relaxed create_file loop protection from 10 seconds to 1 hour per path
|
45
|
+
- **Better User Experience**: Reduced false positives for legitimate rapid file creation
|
46
|
+
- **Maintained Security**: Still prevents abuse while allowing normal development workflows
|
47
|
+
- **Configurable**: Protection adapts to actual usage patterns
|
48
|
+
|
49
|
+
- **Terminal Output Cleanup**: Removed styling from stdout/stderr output in rich terminal reporter
|
50
|
+
- **Cleaner Output**: Plain text output for better readability and copy-paste compatibility
|
51
|
+
- **Tool Integration**: Improved compatibility with external tools and scripts
|
52
|
+
- **Consistent Formatting**: Standardized output across all terminal environments
|
53
|
+
|
54
|
+
### Fixed
|
55
|
+
|
56
|
+
- **Documentation Corrections**: Fixed various documentation issues and broken links
|
57
|
+
- **Shell Command Fixes**: Updated documentation with correct shell commands and examples
|
58
|
+
- **Thin Client Description**: Restored accurate thin client documentation
|
59
|
+
|
60
|
+
### Technical Improvements
|
61
|
+
|
62
|
+
- **Code Quality**: Minor cleanups and structure improvements across CLI and plugins
|
63
|
+
- **Cancellation Handling**: Improved cancellation handling mechanisms
|
64
|
+
- **Provider Configuration**: Updated bindings and provider configurations for latest APIs
|
65
|
+
- **Working Directory**: Cleaned working directory before release for optimal distribution
|
66
|
+
|
67
|
+
## [3.0.0] - 2025-08-23
|
68
|
+
|
69
|
+
### Major Architecture Refactoring
|
70
|
+
|
71
|
+
#### Plugin System Overhaul
|
72
|
+
- **Complete plugin system redesign** with unified architecture
|
73
|
+
- **Consolidated core plugins** into cohesive `janito/plugins/` structure
|
74
|
+
- **Eliminated legacy loading mechanisms** (`core_loader.py`, `core_loader_fixed.py`, `base.py`)
|
75
|
+
- **Streamlined plugin discovery** with improved initialization process
|
76
|
+
- **Enhanced maintainability** through simplified plugin architecture
|
77
|
+
|
78
|
+
#### Removed Legacy Components
|
79
|
+
- Deleted deprecated plugin loading systems
|
80
|
+
- Removed redundant `plugins.txt` configuration file
|
81
|
+
- Eliminated duplicate tool adapter implementations
|
82
|
+
- Cleaned up temporary test files (`test_core_plugins*.py`)
|
83
|
+
|
84
|
+
#### Enhanced Plugin Organization
|
85
|
+
- **Unified plugin structure** with clear module hierarchy
|
86
|
+
- **Consolidated tool categories**:
|
87
|
+
- Core system tools (file operations, system commands)
|
88
|
+
- Development tools (Python execution, code analysis)
|
89
|
+
- UI tools (user interaction, visualization)
|
90
|
+
- Web tools (URL fetching, browser integration)
|
91
|
+
- **Improved plugin discovery** with automatic initialization
|
92
|
+
|
93
|
+
### Technical Improvements
|
94
|
+
|
95
|
+
#### Code Quality
|
96
|
+
- **Reduced complexity** through architectural simplification
|
97
|
+
- **Eliminated code duplication** across plugin implementations
|
98
|
+
- **Enhanced modularity** with clear separation of concerns
|
99
|
+
- **Improved testability** with focused plugin modules
|
100
|
+
|
101
|
+
#### Configuration Simplification
|
102
|
+
- **Streamlined plugin configuration** with unified settings
|
103
|
+
- **Simplified initialization process** for new plugins
|
104
|
+
- **Reduced configuration overhead** for plugin developers
|
105
|
+
|
106
|
+
### Breaking Changes
|
107
|
+
|
108
|
+
#### Plugin System
|
109
|
+
- **Legacy plugin loading mechanisms removed** - plugins must use new system
|
110
|
+
- **Plugin directory structure changed** - see updated documentation
|
111
|
+
- **Configuration format updated** - simplified plugin settings
|
112
|
+
|
113
|
+
#### Removed Files
|
114
|
+
- `plugins.txt` configuration file
|
115
|
+
- Legacy plugin loading modules
|
116
|
+
- Temporary test files
|
117
|
+
- Redundant tool adapter implementations
|
118
|
+
|
119
|
+
### Migration Guide
|
120
|
+
|
121
|
+
#### For Plugin Developers
|
122
|
+
1. **Update plugin structure** to match new unified architecture
|
123
|
+
2. **Migrate configuration** to new simplified format
|
124
|
+
3. **Test compatibility** with new plugin discovery system
|
125
|
+
4. **Review documentation** for updated development patterns
|
126
|
+
|
127
|
+
#### For Users
|
128
|
+
1. **Update configuration files** to use new plugin system
|
129
|
+
2. **Review plugin settings** for simplified format
|
130
|
+
3. **Test existing workflows** with new architecture
|
131
|
+
|
132
|
+
### Documentation Updates
|
133
|
+
- **Comprehensive plugin development guide** with updated patterns
|
134
|
+
- **Migration documentation** for legacy plugin system
|
135
|
+
- **Enhanced API reference** with new plugin interfaces
|
136
|
+
|
137
|
+
## [2.27.0] - 2025-08-22
|
138
|
+
|
139
|
+
### Removed
|
140
|
+
|
141
|
+
- **Breaking Change**: Removed `--role` argument and interactive profile selection
|
142
|
+
- The `--role` argument has been completely removed from the CLI
|
143
|
+
- Interactive profile selection has been removed from chat mode
|
144
|
+
- Use `--profile <name>` or shorthand flags like `--developer` and `--market` instead
|
145
|
+
- Default behavior now uses the Developer profile when no profile is specified
|
146
|
+
|
147
|
+
### Changed
|
148
|
+
|
149
|
+
- Updated documentation to reflect removal of role argument
|
150
|
+
- Added comprehensive profile documentation in `PROFILES.md`
|
151
|
+
- Simplified profile selection to use explicit flags only
|
152
|
+
|
153
|
+
## [Previous Versions]
|
154
|
+
|
155
|
+
### Added
|
156
|
+
|
157
|
+
- Initial support for profiles and roles
|
158
|
+
- Interactive profile selection in chat mode
|
159
|
+
- `--role` argument for specifying developer roles
|
160
|
+
- `--profile` argument for system prompt templates
|
161
|
+
- `--developer` and `--market` shorthand flags
|
162
|
+
|
163
|
+
### Available Profiles
|
164
|
+
|
165
|
+
- **Developer**: Optimized for software development tasks
|
166
|
+
- **Market Analyst**: Specialized for market analysis and business insights
|
167
|
+
|
168
|
+
### Supported Providers
|
169
|
+
|
170
|
+
- Moonshot AI (default)
|
171
|
+
- OpenAI
|
172
|
+
- Anthropic
|
173
|
+
- IBM WatsonX
|
174
|
+
- Google AI
|
175
|
+
|
176
|
+
---
|
177
|
+
|
178
|
+
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
|
janito-3.5.0/docs/CNAME
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
janito.xyz
|
Binary file
|
@@ -517,4 +517,37 @@ For users upgrading from previous versions:
|
|
517
517
|
|
518
518
|
---
|
519
519
|
|
520
|
+
## [3.1.0] - 2025-08-23
|
521
|
+
|
522
|
+
### Added
|
523
|
+
|
524
|
+
- **Enter Key Cancellation Support for Chat Mode**: Revolutionary usability improvement for interactive chat sessions
|
525
|
+
- **Instant Request Cancellation**: Press **Enter key** at any time to immediately cancel current LLM operations
|
526
|
+
- **Global Cancellation Manager**: Robust cross-component cancellation system spanning agent, driver, and prompt handler
|
527
|
+
- **User Feedback**: Clear visual confirmation with red "Request cancelled by Enter key" message
|
528
|
+
- **Clean State Management**: Automatic cleanup of cancellation state after request completion
|
529
|
+
- **Thread-Safe Implementation**: Safe cancellation across multiple threads and async operations
|
530
|
+
|
531
|
+
### Technical Implementation
|
532
|
+
|
533
|
+
- **Global Cancellation Manager**: New `janito.llm.cancellation_manager` module provides centralized cancellation handling
|
534
|
+
- **Key Binding Integration**: Enhanced chat mode with dedicated Enter key handling for cancellation
|
535
|
+
- **Cross-Component Support**: Cancellation signals properly propagate through entire application stack
|
536
|
+
- **Backward Compatible**: All existing functionality preserved, cancellation is additive feature
|
537
|
+
|
538
|
+
### Developer Experience
|
539
|
+
|
540
|
+
- **Extensible Architecture**: Cancellation system designed for future integration with other components
|
541
|
+
- **Clean API**: Simple interface for starting, cancelling, and clearing requests across application
|
542
|
+
- **Comprehensive Testing**: Full test coverage for cancellation scenarios and edge cases
|
543
|
+
|
544
|
+
### Documentation
|
545
|
+
|
546
|
+
- Updated CLI options documentation with new cancellation behavior
|
547
|
+
- Enhanced chat mode guides with cancellation instructions
|
548
|
+
- Added troubleshooting section for long-running requests
|
549
|
+
- New dedicated changelog: [CHANGELOG_3.1.0.md](../changelogs/CHANGELOG_3.1.0.md)
|
550
|
+
|
551
|
+
---
|
552
|
+
|
520
553
|
**Full Changelog**: https://github.com/ikignosis/janito/compare/v2.22.0...v2.23.0
|