janito 3.12.3__tar.gz → 3.13.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.12.3 → janito-3.13.0}/PKG-INFO +1 -1
- janito-3.13.0/docs/README.md +41 -0
- janito-3.13.0/docs/anthropic-setup.md +63 -0
- janito-3.13.0/docs/cli.md +129 -0
- janito-3.13.0/docs/configuration.md +104 -0
- janito-3.13.0/docs/google-setup.md +62 -0
- janito-3.13.0/docs/index.md +47 -0
- janito-3.13.0/docs/models/supported_models.md +134 -0
- janito-3.13.0/docs/providers.md +87 -0
- janito-3.13.0/docs/tools.md +112 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/chat_mode/session.py +9 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/chat_mode/shell/commands/__init__.py +71 -68
- janito-3.13.0/janito/cli/chat_mode/shell/commands/clear_context.py +25 -0
- {janito-3.12.3 → janito-3.13.0}/janito/drivers/azure_openai/driver.py +106 -103
- {janito-3.12.3 → janito-3.13.0}/janito/drivers/openai/driver.py +481 -478
- janito-3.13.0/janito/llm/provider.py +318 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/__init__.py +2 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/adapter.py +222 -216
- janito-3.13.0/janito/plugins/tools/local/clear_context.py +86 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/create_file.py +176 -142
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/replace_text_in_file.py +1 -1
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/view_file.py +186 -172
- {janito-3.12.3 → janito-3.13.0}/janito/providers/__init__.py +14 -12
- janito-3.13.0/janito/providers/alibaba/provider.py +88 -0
- janito-3.13.0/janito/providers/anthropic/provider.py +72 -0
- {janito-3.12.3 → janito-3.13.0}/janito/providers/azure_openai/provider.py +133 -133
- janito-3.13.0/janito/providers/cerebras/provider.py +75 -0
- janito-3.13.0/janito/providers/deepseek/provider.py +78 -0
- janito-3.13.0/janito/providers/google/provider.py +78 -0
- janito-3.13.0/janito/providers/ibm/provider.py +109 -0
- janito-3.13.0/janito/providers/mistral/provider.py +66 -0
- janito-3.13.0/janito/providers/moonshot/provider.py +73 -0
- janito-3.13.0/janito/providers/openai/__init__.py +1 -0
- janito-3.13.0/janito/providers/openai/provider.py +68 -0
- janito-3.13.0/janito/providers/zai/provider.py +75 -0
- {janito-3.12.3 → janito-3.13.0}/janito/tools/tools_adapter.py +15 -1
- {janito-3.12.3 → janito-3.13.0}/janito.egg-info/PKG-INFO +1 -1
- {janito-3.12.3 → janito-3.13.0}/janito.egg-info/SOURCES.txt +10 -0
- {janito-3.12.3 → janito-3.13.0}/mkdocs.yml +9 -4
- {janito-3.12.3 → janito-3.13.0}/plugins/core/filemanager/tools/replace_text_in_file.py +1 -1
- {janito-3.12.3 → janito-3.13.0}/plugins/core/filemanager/tools/view_file.py +4 -4
- janito-3.12.3/docs/index.md +0 -69
- janito-3.12.3/janito/llm/provider.py +0 -196
- janito-3.12.3/janito/providers/alibaba/provider.py +0 -104
- janito-3.12.3/janito/providers/anthropic/provider.py +0 -80
- janito-3.12.3/janito/providers/cerebras/provider.py +0 -147
- janito-3.12.3/janito/providers/deepseek/provider.py +0 -100
- janito-3.12.3/janito/providers/google/provider.py +0 -94
- janito-3.12.3/janito/providers/ibm/provider.py +0 -149
- janito-3.12.3/janito/providers/mistral/provider.py +0 -124
- janito-3.12.3/janito/providers/moonshot/provider.py +0 -104
- janito-3.12.3/janito/providers/openai/__init__.py +0 -1
- janito-3.12.3/janito/providers/openai/provider.py +0 -124
- janito-3.12.3/janito/providers/zai/provider.py +0 -125
- {janito-3.12.3 → janito-3.13.0}/.codespellrc +0 -0
- {janito-3.12.3 → janito-3.13.0}/.gitattributes +0 -0
- {janito-3.12.3 → janito-3.13.0}/.github/workflows/python-app.yml.disabled +0 -0
- {janito-3.12.3 → janito-3.13.0}/.gitignore +0 -0
- {janito-3.12.3 → janito-3.13.0}/.pre-commit-config.yaml +0 -0
- {janito-3.12.3 → janito-3.13.0}/.secrets.baseline +0 -0
- {janito-3.12.3 → janito-3.13.0}/.vscode/settings.json +0 -0
- {janito-3.12.3 → janito-3.13.0}/LICENSE +0 -0
- {janito-3.12.3 → janito-3.13.0}/MARKET_ANALYST_README.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/README-dev.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/README.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/RELEASE_COMPARISON.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/UPDATING_DOCS.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/adding_mcp.txt +0 -0
- {janito-3.12.3 → janito-3.13.0}/alibaba-qwen3.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/cow.txt +0 -0
- {janito-3.12.3 → janito-3.13.0}/detailed_cow.txt +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/CHANGELOG.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/DIV.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/Interfaces.txt +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/PROFILES.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/TOOLBAR-STYLING.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/about/costs.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/about/vs-webchats.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/about/why.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/agent/agent-lifecycle.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/agent/tools-workflow-lifecycle.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/alibaba-setup.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/alternatives.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/cerebras-setup.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/changelogs/CHANGELOG.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/changelogs/CHANGELOG_2.16.0.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/changelogs/CHANGELOG_2.23.0.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/changelogs/CHANGELOG_2.26.0.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/changelogs/CHANGELOG_2.27.0.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/changelogs/RELEASE_NOTES_2.22.0.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/changelogs/RELEASE_NOTES_2.24.1.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/code_intelligence/agentic-frameworks-comparison.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/code_intelligence/code-generation-challenges.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/code_intelligence/code-generation-observability.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/code_intelligence/our-approach.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/code_intelligence/why-string-replacement.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/concepts/analysis-style.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/concepts/human-guided-ai.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/concepts/index.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/concepts/language-model-clients.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/concepts/prompt-design-style.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/deepseek-setup.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/driver-flow.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/driver-request-cancellation.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/drivers/events.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/drivers.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/event-bus.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/guides/configuration.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/guides/developing.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/guides/disabled-tools.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/guides/installation.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/guides/market-data-sources.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/guides/profiles.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/guides/prompting/README.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/guides/security-commands.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/guides/single-shot-terminal.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/guides/stock-market-guide.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/guides/terminal-shell.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/guides/tools-developer-guide.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/guides/url-whitelist.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/guides/using.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/guides/using_tools.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/ibm-setup.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/imgs/code-generation-observability.png +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/imgs/code_generation_observability.png +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/imgs/happy-programmer.png +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/imgs/happy-programmer.svg +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/imgs/terminal-one-shot.png +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/imgs/terminal-shell.png +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/imgs/terminal_one_shot.png +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/imgs/terminal_shell.png +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/llm-drivers-required-config.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/llm-drivers.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/meta/developer-toolchain.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/meta/quality-checks.txt +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/mistral-setup.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/moonshot-setup.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/openai-setup.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/overrides/partials/copyright.html +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/plugins/README.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/plugins/api-reference.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/plugins/architecture.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/plugins/built-in-plugins/codeanalyzer.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/plugins/built-in-plugins/filemanager.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/plugins/built-in-plugins/imagedisplay.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/plugins/built-in-plugins/pythondev.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/plugins/built-in-plugins/system.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/plugins/built-in-plugins/userinterface.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/plugins/built-in-plugins/visualization.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/plugins/built-in-plugins/webtools.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/plugins/configuration.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/plugins/examples/advanced.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/plugins/examples/basic.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/plugins/examples/intermediate.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/plugins/plugin-development.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/plugins/plugin-resources.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/plugins/publishing.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/plugins/remote-plugins.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/plugins/testing.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/provider-platform-access.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/public-sources.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/reference/api.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/reference/azure-openai.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/reference/cli-options.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/reference/message-handler-model.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/reference/rich-message-handler.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/security.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/supported-providers-models.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/tools/search-text.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/tools/show-image-grid.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/tools/show-image.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/tools-index.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/tools-natural-results.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/tools-precision.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/docs/z-ai-setup.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/examples/loop_protection_example.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/examples/loop_protection_tool_example.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/get_nasdaq_top.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/ibm-logo.txt +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/README.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/__init__.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/__main__.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/_version.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/agent/setup_agent.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/agent/templates/profiles/system_prompt_template_Developer_with_Python_Tools.txt.j2 +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/agent/templates/profiles/system_prompt_template_developer.txt.j2 +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/agent/templates/profiles/system_prompt_template_market_analyst.txt.j2 +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/agent/templates/profiles/system_prompt_template_model_conversation_without_tools_or_context.txt.j2 +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/agent_events.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/__init__.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/chat_mode/bindings.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/chat_mode/chat_entry.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/chat_mode/prompt_style.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/chat_mode/script_runner.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/chat_mode/shell/autocomplete.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/chat_mode/shell/commands/_priv_check.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/chat_mode/shell/commands/_priv_status.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/chat_mode/shell/commands/bang.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/chat_mode/shell/commands/base.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/chat_mode/shell/commands/clear.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/chat_mode/shell/commands/conversation_restart.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/chat_mode/shell/commands/execute.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/chat_mode/shell/commands/help.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/chat_mode/shell/commands/history_view.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/chat_mode/shell/commands/interactive.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/chat_mode/shell/commands/lang.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/chat_mode/shell/commands/model.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/chat_mode/shell/commands/multi.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/chat_mode/shell/commands/privileges.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/chat_mode/shell/commands/prompt.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/chat_mode/shell/commands/provider.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/chat_mode/shell/commands/read.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/chat_mode/shell/commands/role.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/chat_mode/shell/commands/security/__init__.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/chat_mode/shell/commands/security/allowed_sites.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/chat_mode/shell/commands/security_command.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/chat_mode/shell/commands/session.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/chat_mode/shell/commands/session_control.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/chat_mode/shell/commands/tools.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/chat_mode/shell/commands/unrestricted.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/chat_mode/shell/commands/utility.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/chat_mode/shell/commands/verbose.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/chat_mode/shell/commands/write.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/chat_mode/shell/commands.bak.zip +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/chat_mode/shell/input_history.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/chat_mode/shell/session/__init__.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/chat_mode/shell/session/history.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/chat_mode/shell/session/manager.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/chat_mode/shell/session.bak.zip +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/chat_mode/toolbar.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/cli_commands/enable_disable_plugin.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/cli_commands/list_config.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/cli_commands/list_drivers.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/cli_commands/list_models.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/cli_commands/list_plugins.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/cli_commands/list_profiles.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/cli_commands/list_providers.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/cli_commands/list_providers_region.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/cli_commands/list_tools.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/cli_commands/model_selection.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/cli_commands/model_utils.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/cli_commands/ping_providers.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/cli_commands/set_api_key.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/cli_commands/show_config.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/cli_commands/show_system_prompt.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/config.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/console.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/core/__init__.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/core/event_logger.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/core/getters.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/core/model_guesser.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/core/runner.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/core/setters.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/core/unsetters.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/main.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/main_cli.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/prompt_core.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/prompt_handler.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/prompt_setup.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/rich_terminal_reporter.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/single_shot_mode/__init__.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/single_shot_mode/handler.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/utils.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/cli/verbose_output.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/config.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/config_manager.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/conversation_history.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/dir_walk_utils.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/docs/GETTING_STARTED.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/driver_events.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/drivers/cerebras/__init__.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/drivers/dashscope.bak.zip +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/drivers/openai/README.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/drivers/openai_responses.bak.zip +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/drivers/zai/__init__.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/drivers/zai/driver.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/event_bus/__init__.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/event_bus/bus.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/event_bus/event.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/event_bus/handler.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/event_bus/queue_bus.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/exceptions.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/formatting.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/formatting_token.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/gitignore_utils.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/hello.txt +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/i18n/__init__.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/i18n/it.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/i18n/messages.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/i18n/pt.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/llm/README.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/llm/__init__.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/llm/agent.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/llm/auth.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/llm/auth_utils.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/llm/driver.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/llm/driver_config.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/llm/driver_config_builder.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/llm/driver_input.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/llm/message_parts.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/llm/model.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/llm/response_cache.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/perf_singleton.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/performance_collector.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/platform_discovery.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/__init__.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/auto_loader.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/auto_loader_fixed.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/base.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/builtin.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/config.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/core/filemanager/tools/validate_file_syntax/__init__.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/core/filemanager/tools/validate_file_syntax/core.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/core/filemanager/tools/validate_file_syntax/txt_validator.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/core_adapter.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/core_loader.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/core_loader_fixed.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/discovery.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/discovery_core.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/manager.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/__init__.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/ask_user.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/copy_file.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/create_directory.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/delete_text_in_file.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/fetch_url.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/find_files.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/get_file_outline/__init__.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/get_file_outline/core.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/get_file_outline/java_outline.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/get_file_outline/markdown_outline.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/get_file_outline/python_outline.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/get_file_outline/search_outline.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/markdown_view.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/move_file.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/open_html_in_browser.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/open_url.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/python_code_run.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/python_command_run.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/python_file_run.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/read_chart.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/read_files.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/remove_directory.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/remove_file.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/run_bash_command.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/run_powershell_command.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/search_text/__init__.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/search_text/core.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/search_text/match_lines.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/search_text/pattern_utils.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/search_text/traverse_directory.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/show_image.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/show_image_grid.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/validate_file_syntax/__init__.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/validate_file_syntax/core.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/validate_file_syntax/css_validator.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/validate_file_syntax/html_validator.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/validate_file_syntax/jinja2_validator.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/validate_file_syntax/js_validator.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/validate_file_syntax/json_validator.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/validate_file_syntax/markdown_validator.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/validate_file_syntax/ps1_validator.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/validate_file_syntax/python_validator.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/validate_file_syntax/txt_validator.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/validate_file_syntax/xml_validator.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/plugins/tools/local/validate_file_syntax/yaml_validator.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/provider_config.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/provider_registry.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/providers/alibaba/__init__.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/providers/alibaba/model_info.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/providers/anthropic/model_info.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/providers/azure_openai/model_info.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/providers/cerebras/__init__.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/providers/cerebras/model_info.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/providers/dashscope.bak.zip +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/providers/deepseek/__init__.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/providers/deepseek/model_info.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/providers/google/__init__.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/providers/google/model_info.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/providers/ibm/README.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/providers/ibm/__init__.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/providers/ibm/model_info.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/providers/mistral/__init__.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/providers/mistral/model_info.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/providers/moonshot/__init__.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/providers/moonshot/model_info.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/providers/openai/model_info.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/providers/openai/schema_generator.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/providers/registry.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/providers/zai/__init__.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/providers/zai/model_info.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/providers/zai/schema_generator.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/regions/__init__.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/regions/cli.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/regions/geo_utils.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/regions/provider_regions.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/report_events.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/shell.bak.zip +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/tests/test_tool_adapter_case_insensitive.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/tools/DOCSTRING_STANDARD.txt +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/tools/README.md +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/tools/__init__.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/tools/base.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/tools/disabled_tools.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/tools/function_adapter.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/tools/inspect_registry.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/tools/loop_protection.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/tools/loop_protection_decorator.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/tools/outline_file.bak.zip +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/tools/path_security.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/tools/path_utils.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/tools/permissions.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/tools/permissions_parse.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/tools/tool_base.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/tools/tool_events.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/tools/tool_run_exception.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/tools/tool_use_tracker.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/tools/tool_utils.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/tools/tools_schema.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/tools/url_whitelist.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito/utils.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito.egg-info/dependency_links.txt +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito.egg-info/entry_points.txt +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito.egg-info/requires.txt +0 -0
- {janito-3.12.3 → janito-3.13.0}/janito.egg-info/top_level.txt +0 -0
- {janito-3.12.3 → janito-3.13.0}/market_prompt_fix.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/mkdocs.log +0 -0
- {janito-3.12.3 → janito-3.13.0}/mkdocs_hooks.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/penguin_ascii.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/__init__.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/core/__init__.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/core/codeanalyzer/__init__.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/core/codeanalyzer/tools/get_file_outline/__init__.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/core/codeanalyzer/tools/get_file_outline/core.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/core/codeanalyzer/tools/get_file_outline/java_outline.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/core/codeanalyzer/tools/get_file_outline/markdown_outline.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/core/codeanalyzer/tools/get_file_outline/python_outline.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/core/codeanalyzer/tools/get_file_outline/search_outline.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/core/codeanalyzer/tools/search_text/__init__.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/core/codeanalyzer/tools/search_text/core.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/core/codeanalyzer/tools/search_text/match_lines.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/core/codeanalyzer/tools/search_text/pattern_utils.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/core/codeanalyzer/tools/search_text/traverse_directory.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/core/filemanager/__init__.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/core/filemanager/tools/copy_file.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/core/filemanager/tools/create_file.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/core/filemanager/tools/delete_text_in_file.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/core/filemanager/tools/find_files.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/core/filemanager/tools/move_file.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/core/filemanager/tools/read_files.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/core/filemanager/tools/remove_directory.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/core/filemanager/tools/remove_file.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/core/filemanager/tools/validate_file_syntax/__init__.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/core/filemanager/tools/validate_file_syntax/core.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/core/filemanager/tools/validate_file_syntax/css_validator.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/core/filemanager/tools/validate_file_syntax/html_validator.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/core/filemanager/tools/validate_file_syntax/jinja2_validator.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/core/filemanager/tools/validate_file_syntax/js_validator.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/core/filemanager/tools/validate_file_syntax/json_validator.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/core/filemanager/tools/validate_file_syntax/markdown_validator.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/core/filemanager/tools/validate_file_syntax/ps1_validator.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/core/filemanager/tools/validate_file_syntax/python_validator.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/core/filemanager/tools/validate_file_syntax/xml_validator.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/core/filemanager/tools/validate_file_syntax/yaml_validator.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/core/imagedisplay/__init__.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/core/imagedisplay/plugin.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/core/imagedisplay/tools/__init__.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/core/imagedisplay/tools/show_image.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/core/imagedisplay/tools/show_image_grid.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/core/system/__init__.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/core/system/tools/run_bash_command.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/core/system/tools/run_powershell_command.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/dev/__init__.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/dev/pythondev/__init__.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/dev/pythondev/tools/python_code_run.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/dev/pythondev/tools/python_command_run.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/dev/pythondev/tools/python_file_run.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/dev/visualization/__init__.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/dev/visualization/tools/read_chart.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/example_plugin.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/ui/__init__.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/ui/userinterface/__init__.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/ui/userinterface/tools/ask_user.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/web/__init__.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/web/webtools/__init__.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/web/webtools/tools/fetch_url.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/web/webtools/tools/open_html_in_browser.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/plugins/web/webtools/tools/open_url.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/pyproject.toml +0 -0
- {janito-3.12.3 → janito-3.13.0}/requirements-dev.txt +0 -0
- {janito-3.12.3 → janito-3.13.0}/requirements.txt +0 -0
- {janito-3.12.3 → janito-3.13.0}/setup.cfg +0 -0
- {janito-3.12.3 → janito-3.13.0}/tests/local/get_file_outline/test_core_outline.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/tests/local/test_read_file/__init__.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/tests/local/test_read_file/read_file.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/tests/local/test_read_file/test_read_file.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/tests/local/test_read_files.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/tests/test_cli_list_models.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/tests/test_cli_list_providers.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/tests/test_cli_list_providers_alibaba.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/tests/test_cli_list_providers_moonshot.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/tests/test_cli_version.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/tests/test_disabled_tools.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/tests/test_plugin_system.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/tests/test_provider_alibaba.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/tests/test_provider_cerebras.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/tests/test_provider_moonshot.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/tools/release.py +0 -0
- {janito-3.12.3 → janito-3.13.0}/tox.ini +0 -0
- {janito-3.12.3 → janito-3.13.0}/uv.lock +0 -0
@@ -0,0 +1,41 @@
|
|
1
|
+
# Janito LLM Platform Documentation
|
2
|
+
|
3
|
+
Welcome to the official documentation for Janito, a flexible and extensible platform for interacting with large language models (LLMs) from multiple providers.
|
4
|
+
|
5
|
+
## Table of Contents
|
6
|
+
|
7
|
+
- [Supported Models](models/supported_models.md)
|
8
|
+
- [Providers](providers.md)
|
9
|
+
- [CLI Commands](cli.md)
|
10
|
+
- [Configuration](configuration.md)
|
11
|
+
- [Tools & Plugins](tools.md)
|
12
|
+
|
13
|
+
## Overview
|
14
|
+
|
15
|
+
Janito provides a unified interface to access state-of-the-art LLMs from providers such as OpenAI, Anthropic, Google Gemini, Mistral, Alibaba Qwen, Z.AI, DeepSeek, Moonshot, IBM WatsonX, and Azure OpenAI.
|
16
|
+
|
17
|
+
All model specifications are automatically synchronized with the codebase. To see the latest supported models, visit the [Supported Models](models/supported_models.md) page.
|
18
|
+
|
19
|
+
## Getting Started
|
20
|
+
|
21
|
+
1. Install Janito:
|
22
|
+
```bash
|
23
|
+
pip install janito
|
24
|
+
```
|
25
|
+
|
26
|
+
2. Set your API key:
|
27
|
+
```bash
|
28
|
+
janito set-api-key --provider openai --key YOUR_API_KEY
|
29
|
+
```
|
30
|
+
|
31
|
+
3. List available models:
|
32
|
+
```bash
|
33
|
+
janito list-models --provider openai
|
34
|
+
```
|
35
|
+
|
36
|
+
4. Start interactive chat:
|
37
|
+
```bash
|
38
|
+
janito chat
|
39
|
+
```
|
40
|
+
|
41
|
+
For detailed usage, refer to the linked guides above.
|
@@ -0,0 +1,63 @@
|
|
1
|
+
# Anthropic Setup
|
2
|
+
|
3
|
+
To use Anthropic models with Janito, follow these steps:
|
4
|
+
|
5
|
+
## 1. Get Your API Key
|
6
|
+
|
7
|
+
1. Sign up at [https://console.anthropic.com/](https://console.anthropic.com/)
|
8
|
+
2. Navigate to your API keys page
|
9
|
+
3. Create a new API key or copy an existing one
|
10
|
+
|
11
|
+
## 2. Set the API Key
|
12
|
+
|
13
|
+
Set your Anthropic API key using the CLI:
|
14
|
+
|
15
|
+
```bash
|
16
|
+
janito set-api-key --provider anthropic --key YOUR_API_KEY_HERE
|
17
|
+
```
|
18
|
+
|
19
|
+
Or set it as an environment variable:
|
20
|
+
|
21
|
+
```bash
|
22
|
+
export ANTHROPIC_API_KEY="YOUR_API_KEY_HERE"
|
23
|
+
```
|
24
|
+
|
25
|
+
## 3. Available Models
|
26
|
+
|
27
|
+
Janito supports the following Anthropic models:
|
28
|
+
|
29
|
+
- `claude-opus-4-20250514` - Most capable model for complex tasks
|
30
|
+
- `claude-sonnet-4-20250514` - Balanced performance and cost
|
31
|
+
- `claude-3-7-sonnet-20250219` - High-performance model
|
32
|
+
- `claude-3-5-haiku-20241022` - Fast and cost-effective
|
33
|
+
- `claude-3-5-sonnet-20241022` - Balanced speed and capability
|
34
|
+
- `claude-3-haiku-20240307` - Fastest model for simple tasks
|
35
|
+
|
36
|
+
## 4. Usage Examples
|
37
|
+
|
38
|
+
### List available models
|
39
|
+
|
40
|
+
```bash
|
41
|
+
janito list-models --provider anthropic
|
42
|
+
```
|
43
|
+
|
44
|
+
### Use a specific model
|
45
|
+
|
46
|
+
```bash
|
47
|
+
janito chat --provider anthropic --model claude-3-5-sonnet-20241022
|
48
|
+
```
|
49
|
+
|
50
|
+
### Set as default provider
|
51
|
+
|
52
|
+
```bash
|
53
|
+
janito set-config provider=anthropic
|
54
|
+
```
|
55
|
+
|
56
|
+
## Notes
|
57
|
+
|
58
|
+
- Anthropic is accessed through an OpenAI-compatible API endpoint
|
59
|
+
- The default model is `claude-3-7-sonnet-20250219`
|
60
|
+
- All models support streaming responses
|
61
|
+
- Context window sizes vary by model (see [Supported Models](models/supported_models.md) for details)
|
62
|
+
|
63
|
+
For more information, visit the [Anthropic documentation](https://docs.anthropic.com/).
|
@@ -0,0 +1,129 @@
|
|
1
|
+
# CLI Commands
|
2
|
+
|
3
|
+
Janito provides a comprehensive command-line interface (CLI) for managing and interacting with LLM providers.
|
4
|
+
|
5
|
+
## Core Commands
|
6
|
+
|
7
|
+
### `list-models`
|
8
|
+
|
9
|
+
List all supported models for a given provider.
|
10
|
+
|
11
|
+
```bash
|
12
|
+
# List models for OpenAI
|
13
|
+
janito list-models --provider openai
|
14
|
+
|
15
|
+
# List models for the default provider
|
16
|
+
janito list-models
|
17
|
+
```
|
18
|
+
|
19
|
+
### `list-providers`
|
20
|
+
|
21
|
+
List all available providers and their status.
|
22
|
+
|
23
|
+
```bash
|
24
|
+
janito list-providers
|
25
|
+
```
|
26
|
+
|
27
|
+
### `set-api-key`
|
28
|
+
|
29
|
+
Set your API key for a specific provider.
|
30
|
+
|
31
|
+
```bash
|
32
|
+
janito set-api-key --provider openai --key sk-your-key-here
|
33
|
+
```
|
34
|
+
|
35
|
+
### `chat`
|
36
|
+
|
37
|
+
Start an interactive chat session with the default model.
|
38
|
+
|
39
|
+
```bash
|
40
|
+
janito chat
|
41
|
+
```
|
42
|
+
|
43
|
+
### `show-config`
|
44
|
+
|
45
|
+
Display current configuration settings.
|
46
|
+
|
47
|
+
```bash
|
48
|
+
janito show-config
|
49
|
+
```
|
50
|
+
|
51
|
+
### `ping-providers`
|
52
|
+
|
53
|
+
Test connectivity to all providers.
|
54
|
+
|
55
|
+
```bash
|
56
|
+
janito ping-providers
|
57
|
+
```
|
58
|
+
|
59
|
+
## Provider-Specific Commands
|
60
|
+
|
61
|
+
### `list-providers-region`
|
62
|
+
|
63
|
+
List providers available in a specific region.
|
64
|
+
|
65
|
+
```bash
|
66
|
+
janito list-providers-region --region us-east-1
|
67
|
+
```
|
68
|
+
|
69
|
+
### `list-tools`
|
70
|
+
|
71
|
+
List all available tools and plugins.
|
72
|
+
|
73
|
+
```bash
|
74
|
+
janito list-tools
|
75
|
+
```
|
76
|
+
|
77
|
+
## Configuration Commands
|
78
|
+
|
79
|
+
### `set-config`
|
80
|
+
|
81
|
+
Set a configuration value.
|
82
|
+
|
83
|
+
```bash
|
84
|
+
janito set-config provider=openai
|
85
|
+
janito set-config azure_deployment_name=my-deployment
|
86
|
+
```
|
87
|
+
|
88
|
+
### `show-config`
|
89
|
+
|
90
|
+
Show current configuration.
|
91
|
+
|
92
|
+
```bash
|
93
|
+
janito show-config
|
94
|
+
```
|
95
|
+
|
96
|
+
### `unset-config`
|
97
|
+
|
98
|
+
Remove a configuration value.
|
99
|
+
|
100
|
+
```bash
|
101
|
+
janito unset-config provider
|
102
|
+
```
|
103
|
+
|
104
|
+
## Advanced Commands
|
105
|
+
|
106
|
+
### `model-selection`
|
107
|
+
|
108
|
+
Interactively select a model from available options.
|
109
|
+
|
110
|
+
```bash
|
111
|
+
janito model-selection
|
112
|
+
```
|
113
|
+
|
114
|
+
### `enable-plugin` / `disable-plugin`
|
115
|
+
|
116
|
+
Enable or disable a plugin.
|
117
|
+
|
118
|
+
```bash
|
119
|
+
janito enable-plugin webtools
|
120
|
+
janito disable-plugin filemanager
|
121
|
+
```
|
122
|
+
|
123
|
+
For detailed help on any command, use:
|
124
|
+
|
125
|
+
```bash
|
126
|
+
janito COMMAND --help
|
127
|
+
```
|
128
|
+
|
129
|
+
> **Note**: The `list-models` command automatically reflects the latest model specifications defined in the codebase. No manual documentation update is required when new models are added.
|
@@ -0,0 +1,104 @@
|
|
1
|
+
# Configuration
|
2
|
+
|
3
|
+
Janito's behavior is controlled through a combination of environment variables, configuration files, and CLI commands.
|
4
|
+
|
5
|
+
## Configuration Sources (Priority Order)
|
6
|
+
|
7
|
+
1. **Command-line arguments** (highest priority)
|
8
|
+
2. **Environment variables**
|
9
|
+
3. **Configuration file** (`~/.janito/config.yaml`)
|
10
|
+
4. **Default values** (lowest priority)
|
11
|
+
|
12
|
+
## Environment Variables
|
13
|
+
|
14
|
+
| Variable | Description | Example |
|
15
|
+
|----------|-------------|---------|
|
16
|
+
| `OPENAI_API_KEY` | OpenAI API key | `sk-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx` |
|
17
|
+
| `ANTHROPIC_API_KEY` | Anthropic API key | `sk-ant-api03-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx` |
|
18
|
+
| `GOOGLE_API_KEY` | Google Gemini API key | `AIzaSyBxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx` |
|
19
|
+
| `MISTRAL_API_KEY` | Mistral API key | `xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx` |
|
20
|
+
| `CEREBRAS_API_KEY` | Cerebras API key | `xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx` |
|
21
|
+
| `ZAI_API_KEY` | Z.AI API key | `xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx` |
|
22
|
+
| `ALIBABA_API_KEY` | Alibaba Qwen API key | `xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx` |
|
23
|
+
| `DEEPSEEK_API_KEY` | DeepSeek API key | `xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx` |
|
24
|
+
| `MOONSHOT_API_KEY` | Moonshot API key | `xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx` |
|
25
|
+
| `WATSONX_API_KEY` | IBM WatsonX API key | `xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx` |
|
26
|
+
| `WATSONX_PROJECT_ID` | IBM WatsonX project ID | `xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx` |
|
27
|
+
| `WATSONX_SPACE_ID` | IBM WatsonX space ID | `xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx` |
|
28
|
+
| `AZURE_OPENAI_API_KEY` | Azure OpenAI API key | `xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx` |
|
29
|
+
| `JANITO_PROVIDER` | Default provider | `openai` |
|
30
|
+
|
31
|
+
## Configuration File
|
32
|
+
|
33
|
+
The configuration file is located at `~/.janito/config.yaml` and has the following structure:
|
34
|
+
|
35
|
+
```yaml
|
36
|
+
provider: openai
|
37
|
+
azure_deployment_name: my-deployment
|
38
|
+
max_tokens: 4096
|
39
|
+
default_temperature: 0.7
|
40
|
+
enable_tools: true
|
41
|
+
```
|
42
|
+
|
43
|
+
You can modify this file directly or use the CLI:
|
44
|
+
|
45
|
+
```bash
|
46
|
+
# Set default provider
|
47
|
+
janito set-config provider=openai
|
48
|
+
|
49
|
+
# Set Azure deployment name
|
50
|
+
janito set-config azure_deployment_name=my-deployment
|
51
|
+
|
52
|
+
# View current config
|
53
|
+
janito show-config
|
54
|
+
```
|
55
|
+
|
56
|
+
## Provider-Specific Configuration
|
57
|
+
|
58
|
+
### Azure OpenAI
|
59
|
+
|
60
|
+
For Azure OpenAI, you must specify your deployment name:
|
61
|
+
|
62
|
+
```bash
|
63
|
+
janito set-config azure_deployment_name=my-gpt4o-deployment
|
64
|
+
```
|
65
|
+
|
66
|
+
This maps to the `--model` parameter in CLI commands:
|
67
|
+
|
68
|
+
```bash
|
69
|
+
janito chat --provider azure_openai
|
70
|
+
# Internally uses model: my-gpt4o-deployment
|
71
|
+
```
|
72
|
+
|
73
|
+
### IBM WatsonX
|
74
|
+
|
75
|
+
For IBM WatsonX, you need both API key and project ID:
|
76
|
+
|
77
|
+
```bash
|
78
|
+
janito set-config watsonx_project_id=your-project-id
|
79
|
+
janito set-config watsonx_space_id=your-space-id
|
80
|
+
```
|
81
|
+
|
82
|
+
## Model Selection
|
83
|
+
|
84
|
+
When no model is specified, Janito uses the provider's default model:
|
85
|
+
|
86
|
+
- **OpenAI**: `gpt-5`
|
87
|
+
- **Anthropic**: `claude-3-7-sonnet-20250219`
|
88
|
+
- **Google**: `gemini-2.5-flash`
|
89
|
+
- **Mistral**: `mistral-large-latest`
|
90
|
+
- **Cerebras**: `qwen-3-coder-480b`
|
91
|
+
- **Z.AI**: `glm-4.5`
|
92
|
+
- **Alibaba**: `qwen3-next-80b-a3b-instruct`
|
93
|
+
- **DeepSeek**: `deepseek-chat`
|
94
|
+
- **Moonshot**: `kimi-k2-0905-preview`
|
95
|
+
- **IBM WatsonX**: `ibm/granite-3-3-8b-instruct`
|
96
|
+
- **Azure OpenAI**: `azure_openai_deployment`
|
97
|
+
|
98
|
+
You can override the default model using `--model MODEL_NAME` on any command:
|
99
|
+
|
100
|
+
```bash
|
101
|
+
janito chat --provider openai --model gpt-4o
|
102
|
+
```
|
103
|
+
|
104
|
+
> **Note**: The list of available models is automatically synchronized with the codebase. Use `janito list-models --provider PROVIDER` to see all available options.
|
@@ -0,0 +1,62 @@
|
|
1
|
+
# Google Gemini Setup
|
2
|
+
|
3
|
+
To use Google Gemini models with Janito, follow these steps:
|
4
|
+
|
5
|
+
## 1. Get Your API Key
|
6
|
+
|
7
|
+
1. Go to the [Google Cloud Console](https://console.cloud.google.com/)
|
8
|
+
2. Create a new project or select an existing one
|
9
|
+
3. Enable the Generative Language API
|
10
|
+
4. Navigate to "APIs & Services" → "Credentials"
|
11
|
+
5. Create an API key
|
12
|
+
|
13
|
+
## 2. Set the API Key
|
14
|
+
|
15
|
+
Set your Google API key using the CLI:
|
16
|
+
|
17
|
+
```bash
|
18
|
+
janito set-api-key --provider google --key YOUR_API_KEY_HERE
|
19
|
+
```
|
20
|
+
|
21
|
+
Or set it as an environment variable:
|
22
|
+
|
23
|
+
```bash
|
24
|
+
export GOOGLE_API_KEY="YOUR_API_KEY_HERE"
|
25
|
+
```
|
26
|
+
|
27
|
+
## 3. Available Models
|
28
|
+
|
29
|
+
Janito supports the following Google Gemini models:
|
30
|
+
|
31
|
+
- `gemini-2.5-flash` - Fastest model for simple tasks
|
32
|
+
- `gemini-2.5-pro` - Most capable model for complex tasks
|
33
|
+
- `gemini-2.5-flash-lite-preview-06-17` - Lightweight version for low-latency applications
|
34
|
+
|
35
|
+
## 4. Usage Examples
|
36
|
+
|
37
|
+
### List available models
|
38
|
+
|
39
|
+
```bash
|
40
|
+
janito list-models --provider google
|
41
|
+
```
|
42
|
+
|
43
|
+
### Use a specific model
|
44
|
+
|
45
|
+
```bash
|
46
|
+
janito chat --provider google --model gemini-2.5-pro
|
47
|
+
```
|
48
|
+
|
49
|
+
### Set as default provider
|
50
|
+
|
51
|
+
```bash
|
52
|
+
janito set-config provider=google
|
53
|
+
```
|
54
|
+
|
55
|
+
## Notes
|
56
|
+
|
57
|
+
- Google Gemini is accessed through an OpenAI-compatible API endpoint
|
58
|
+
- The default model is `gemini-2.5-flash`
|
59
|
+
- All models support streaming responses and tool usage
|
60
|
+
- Context window sizes vary by model (see [Supported Models](models/supported_models.md) for details)
|
61
|
+
|
62
|
+
For more information, visit the [Google AI documentation](https://ai.google.dev/).
|
@@ -0,0 +1,47 @@
|
|
1
|
+
# Welcome to Janito
|
2
|
+
|
3
|
+
Janito is a flexible and extensible platform for interacting with large language models (LLMs) from multiple providers.
|
4
|
+
|
5
|
+
## Key Features
|
6
|
+
|
7
|
+
- **Multi-provider support**: Access models from OpenAI, Anthropic, Google Gemini, Mistral, Alibaba Qwen, Z.AI, DeepSeek, Moonshot, IBM WatsonX, and Azure OpenAI
|
8
|
+
- **Unified interface**: Consistent CLI and API across all providers
|
9
|
+
- **Tool integration**: Built-in tools for file management, web access, code execution, and more
|
10
|
+
- **Plugin system**: Extend functionality with modular plugins
|
11
|
+
- **Security first**: Permission controls and sandboxed operations
|
12
|
+
- **Automatic documentation**: Supported models are automatically synchronized with the codebase
|
13
|
+
|
14
|
+
## Getting Started
|
15
|
+
|
16
|
+
1. Install Janito:
|
17
|
+
```bash
|
18
|
+
pip install janito
|
19
|
+
```
|
20
|
+
|
21
|
+
2. Set your API key:
|
22
|
+
```bash
|
23
|
+
janito set-api-key --provider openai --key YOUR_API_KEY
|
24
|
+
```
|
25
|
+
|
26
|
+
3. List available models:
|
27
|
+
```bash
|
28
|
+
janito list-models --provider openai
|
29
|
+
```
|
30
|
+
|
31
|
+
4. Start interactive chat:
|
32
|
+
```bash
|
33
|
+
janito chat
|
34
|
+
```
|
35
|
+
|
36
|
+
## Documentation
|
37
|
+
|
38
|
+
Explore our comprehensive documentation:
|
39
|
+
|
40
|
+
- [Installation & Setup](guides/installation.md)
|
41
|
+
- [Configuration](configuration.md)
|
42
|
+
- [CLI Commands](cli.md)
|
43
|
+
- [Supported Models](models/supported_models.md)
|
44
|
+
- [Tools & Plugins](tools.md)
|
45
|
+
- [Developer Guide](guides/developing.md)
|
46
|
+
|
47
|
+
> **Note**: The list of supported models is automatically generated from the codebase. When new models are added, this documentation updates automatically.*
|
@@ -0,0 +1,134 @@
|
|
1
|
+
# Supported LLM Models
|
2
|
+
|
3
|
+
This document lists all supported large language models (LLMs) across providers, as defined in the codebase.
|
4
|
+
|
5
|
+
## OpenAI
|
6
|
+
|
7
|
+
| Model Name | Context Window | Max Response | Thinking Supported |
|
8
|
+
|------------|----------------|--------------|--------------------|
|
9
|
+
| `gpt-3.5-turbo` | 16,385 | 4,096 | No |
|
10
|
+
| `gpt-4.1` | 1,047,576 | 32,768 | No |
|
11
|
+
| `gpt-4.1-mini` | 1,047,576 | 32,768 | No |
|
12
|
+
| `gpt-4.1-nano` | 1,047,576 | 32,768 | No |
|
13
|
+
| `gpt-4-turbo` | 128,000 | N/A | No |
|
14
|
+
| `gpt-4o` | 128,000 | 4,096 | No |
|
15
|
+
| `gpt-4o-mini` | 128,000 | 16,384 | No |
|
16
|
+
| `o3-mini` | 200,000 | 100,000 | Yes |
|
17
|
+
| `o3` | 200,000 | 100,000 | Yes |
|
18
|
+
| `o4-mini` | 200,000 | 100,000 | Yes |
|
19
|
+
| `gpt-5` | 200,000 | 100,000 | Yes |
|
20
|
+
| `gpt-5-mini` | 200,000 | 100,000 | Yes |
|
21
|
+
| `gpt-5-nano` | 200,000 | 100,000 | Yes |
|
22
|
+
|
23
|
+
> **Note**: `gpt-4-turbo-alt` is a duplicate entry for internal use and should not be selected by users.
|
24
|
+
|
25
|
+
## Anthropic
|
26
|
+
|
27
|
+
| Model Name | Max Response | Thinking Supported |
|
28
|
+
|------------|--------------|--------------------|
|
29
|
+
| `claude-opus-4-20250514` | 32,000 | No |
|
30
|
+
| `claude-sonnet-4-20250514` | 64,000 | No |
|
31
|
+
| `claude-3-7-sonnet-20250219` | 64,000 | No |
|
32
|
+
| `claude-3-5-haiku-20241022` | 8,192 | No |
|
33
|
+
| `claude-3-5-sonnet-20241022` | 8,192 | No |
|
34
|
+
| `claude-3-haiku-20240307` | 4,096 | No |
|
35
|
+
|
36
|
+
## Google Gemini
|
37
|
+
|
38
|
+
| Model Name | Max Response | Max COT | Thinking Supported |
|
39
|
+
|------------|--------------|---------|--------------------|
|
40
|
+
| `gemini-2.5-flash` | 8,192 | 24,576 | Yes |
|
41
|
+
| `gemini-2.5-pro` | 65,536 | 196,608 | Yes |
|
42
|
+
| `gemini-2.5-flash-lite-preview-06-17` | 64,000 | 192,000 | Yes |
|
43
|
+
|
44
|
+
## Mistral
|
45
|
+
|
46
|
+
| Model Name | Context Window | Max Input | Max Response | Thinking Supported |
|
47
|
+
|------------|----------------|-----------|--------------|--------------------|
|
48
|
+
| `codestral-latest` | 256,000 | 250,000 | 4,096 | No |
|
49
|
+
| `codestral-2405` | 256,000 | 250,000 | 4,096 | No |
|
50
|
+
| `mistral-small-latest` | 32,000 | 28,000 | 4,096 | No |
|
51
|
+
| `mistral-medium-latest` | 32,000 | 28,000 | 4,096 | No |
|
52
|
+
| `mistral-large-latest` | 128,000 | 120,000 | 4,096 | No |
|
53
|
+
| `devstral-small-latest` | 128,000 | 120,000 | 4,096 | No |
|
54
|
+
| `devstral-medium-latest` | 128,000 | 120,000 | 4,096 | No |
|
55
|
+
|
56
|
+
## Cerebras
|
57
|
+
|
58
|
+
| Model Name | Max Input | Max Response | Description |
|
59
|
+
|------------|-----------|--------------|-------------|
|
60
|
+
| `qwen-3-32b` | 128,000 | 16,384 | Qwen 3 32B model for general instruction following |
|
61
|
+
| `qwen-3-235b-a22b-instruct-2507` | 128,000 | 16,384 | Qwen 3 235B A22B instruction-tuned model (preview) |
|
62
|
+
| `qwen-3-235b-a22b-thinking-2507` | 128,000 | 16,384 | Qwen 3 235B A22B thinking model for reasoning tasks (preview) |
|
63
|
+
| `qwen-3-coder-480b` | 128,000 | 16,384 | Qwen 3 Coder 480B model for programming tasks (preview) |
|
64
|
+
| `gpt-oss-120b` | 128,000 | 16,384 | GPT-OSS 120B open-source model (preview) |
|
65
|
+
|
66
|
+
## Z.AI
|
67
|
+
|
68
|
+
| Model Name | Context Window | Max Input | Max COT | Max Response | Thinking Supported | Supports Tools | Supports Images |
|
69
|
+
|------------|----------------|-----------|---------|--------------|--------------------|----------------|-----------------|
|
70
|
+
| `glm-4.5` | 128,000 | 128,000 | 4,096 | 4,096 | Yes | Yes | Yes |
|
71
|
+
| `glm-4.5-air` | 128,000 | 128,000 | 4,096 | 4,096 | Yes | Yes | Yes |
|
72
|
+
|
73
|
+
## Alibaba Qwen
|
74
|
+
|
75
|
+
| Model Name | Context Window | Max Response | Category |
|
76
|
+
|------------|----------------|--------------|----------|
|
77
|
+
| `qwen-turbo` | 1,008,192 | 8,192 | Alibaba Qwen Turbo Model (OpenAI-compatible) |
|
78
|
+
| `qwen-plus` | 131,072 | 8,192 | Alibaba Qwen Plus Model (OpenAI-compatible) |
|
79
|
+
| `qwen-flash` | 1,000,000 | 8,192 | Alibaba Qwen Flash Model (OpenAI-compatible) |
|
80
|
+
| `qwen-max` | 32,768 | 8,192 | Alibaba Qwen Max Model (OpenAI-compatible) |
|
81
|
+
| `qwen3-coder-plus` | 1,048,576 | 65,536 | Alibaba Qwen3 Coder Plus Model (OpenAI-compatible) |
|
82
|
+
| `qwen3-coder-480b-a35b-instruct` | 262,144 | 65,536 | Alibaba Qwen3 Coder 480B A35B Instruct Model (OpenAI-compatible) |
|
83
|
+
| `qwen3-235b-a22b-thinking-2507` | 131,072 | 32,768 | Alibaba Qwen3 235B A22B Thinking Model (OpenAI-compatible) |
|
84
|
+
| `qwen3-235b-a22b-instruct-2507` | 129,024 | 32,768 | Alibaba Qwen3 235B A22B Instruct Model (OpenAI-compatible) |
|
85
|
+
| `qwen3-30b-a3b-thinking-2507` | 126,976 | 32,768 | Alibaba Qwen3 30B A3B Thinking Model (OpenAI-compatible) |
|
86
|
+
| `qwen3-30b-a3b-instruct-2507` | 129,024 | 32,768 | Alibaba Qwen3 30B A3B Instruct Model (OpenAI-compatible) |
|
87
|
+
| `qwen3-next-80b-a3b-instruct` | 262,144 | 65,536 | Alibaba Qwen3-Max Preview (256K) - 80B A3B Instruct Model (OpenAI-compatible) |
|
88
|
+
| `qwen3-next-80b-a3b-thinking` | 262,144 | 65,536 | Alibaba Qwen3-Max Preview (256K) - 80B A3B Thinking Model (OpenAI-compatible) |
|
89
|
+
| `qwen3-max-preview` | 262,144 | 65,536 | Alibaba Qwen3-Max Preview (256K) - Standard Model (OpenAI-compatible) |
|
90
|
+
|
91
|
+
## DeepSeek
|
92
|
+
|
93
|
+
| Model Name | Context Window | Max Tokens | Description |
|
94
|
+
|------------|----------------|------------|-------------|
|
95
|
+
| `deepseek-chat` | 8,192 | 4,096 | DeepSeek Chat Model (OpenAI-compatible) |
|
96
|
+
| `deepseek-reasoner` | 8,192 | 4,096 | DeepSeek Reasoner Model (OpenAI-compatible) |
|
97
|
+
| `deepseek-v3.1` | 131,072 | 4,096 | DeepSeek V3.1 Model (128K context, OpenAI-compatible) |
|
98
|
+
| `deepseek-v3.1-base` | 131,072 | 4,096 | DeepSeek V3.1 Base Model (128K context, OpenAI-compatible) |
|
99
|
+
| `deepseek-r1` | 131,072 | 4,096 | DeepSeek R1 Model (128K context, OpenAI-compatible) |
|
100
|
+
|
101
|
+
## Moonshot
|
102
|
+
|
103
|
+
| Model Name | Context Window | Max Input | Max Response |
|
104
|
+
|------------|----------------|-----------|--------------|
|
105
|
+
| `kimi-k2-0711-preview` | 128,000 | 100,000 | 4,096 |
|
106
|
+
| `kimi-k2-turbo-preview` | 128,000 | 100,000 | 4,096 |
|
107
|
+
| `kimi-k2-0905-preview` | 128,000 | 100,000 | 4,096 |
|
108
|
+
|
109
|
+
## IBM WatsonX
|
110
|
+
|
111
|
+
| Model Name | Context Window | Max Input | Max Response | Max COT | Thinking Supported |
|
112
|
+
|------------|----------------|-----------|--------------|---------|--------------------|
|
113
|
+
| `openai/gpt-oss-120b` | 128,000 | 128,000 | 4,096 | 4,096 | Yes |
|
114
|
+
| `ibm/granite-3-8b-instruct` | 128,000 | 128,000 | 4,096 | 4,096 | No |
|
115
|
+
| `ibm/granite-3-3-8b-instruct` | 128,000 | 128,000 | 4,096 | 4,096 | No |
|
116
|
+
| `meta-llama/llama-3-1-70b-instruct` | 128,000 | 128,000 | 4,096 | 4,096 | No |
|
117
|
+
| `meta-llama/llama-3-3-70b-instruct` | 128,000 | 128,000 | 4,096 | 4,096 | No |
|
118
|
+
| `mistralai/mistral-large` | 128,000 | 128,000 | 4,096 | 4,096 | No |
|
119
|
+
| `mistralai/mistral-large-2407` | 128,000 | 128,000 | 4,096 | 4,096 | No |
|
120
|
+
| `openai/gpt-oss-20b` | 128,000 | 128,000 | 4,096 | 4,096 | Yes |
|
121
|
+
|
122
|
+
## Azure OpenAI
|
123
|
+
|
124
|
+
Azure OpenAI supports any deployment name configured by the user. The following are known model mappings:
|
125
|
+
|
126
|
+
| Model Name | Mapped To | Context Window | Max Response |
|
127
|
+
|------------|-----------|----------------|--------------|
|
128
|
+
| `azure_openai_deployment` | gpt-4o | 128,000 | 4,096 |
|
129
|
+
|
130
|
+
> **Note**: Azure OpenAI deployments are user-defined. Use `--provider azure_openai --model YOUR_DEPLOYMENT_NAME` to use any valid deployment.
|
131
|
+
|
132
|
+
---
|
133
|
+
|
134
|
+
*Last updated from source code: September 2025*
|
@@ -0,0 +1,87 @@
|
|
1
|
+
# Supported Providers
|
2
|
+
|
3
|
+
Janito supports the following LLM providers:
|
4
|
+
|
5
|
+
## OpenAI
|
6
|
+
|
7
|
+
- **API Key Env Var**: `OPENAI_API_KEY`
|
8
|
+
- **Base URL**: `https://api.openai.com/v1`
|
9
|
+
- **Default Model**: `gpt-5`
|
10
|
+
- **Driver**: `OpenAIModelDriver`
|
11
|
+
|
12
|
+
## Anthropic
|
13
|
+
|
14
|
+
- **API Key Env Var**: `ANTHROPIC_API_KEY`
|
15
|
+
- **Base URL**: `https://api.anthropic.com/v1/`
|
16
|
+
- **Default Model**: `claude-3-7-sonnet-20250219`
|
17
|
+
- **Driver**: `OpenAIModelDriver` (OpenAI-compatible endpoint)
|
18
|
+
|
19
|
+
## Google Gemini
|
20
|
+
|
21
|
+
- **API Key Env Var**: `GOOGLE_API_KEY`
|
22
|
+
- **Base URL**: `https://generativelanguage.googleapis.com/v1beta/openai/`
|
23
|
+
- **Default Model**: `gemini-2.5-flash`
|
24
|
+
- **Driver**: `OpenAIModelDriver` (OpenAI-compatible endpoint)
|
25
|
+
|
26
|
+
## Mistral
|
27
|
+
|
28
|
+
- **API Key Env Var**: `MISTRAL_API_KEY`
|
29
|
+
- **Base URL**: `https://api.mistral.ai/v1`
|
30
|
+
- **Default Model**: `mistral-large-latest`
|
31
|
+
- **Driver**: `OpenAIModelDriver`
|
32
|
+
|
33
|
+
## Cerebras
|
34
|
+
|
35
|
+
- **API Key Env Var**: `CEREBRAS_API_KEY`
|
36
|
+
- **Base URL**: `https://api.cerebras.ai/v1`
|
37
|
+
- **Default Model**: `qwen-3-coder-480b`
|
38
|
+
- **Driver**: `OpenAIModelDriver`
|
39
|
+
|
40
|
+
## Z.AI
|
41
|
+
|
42
|
+
- **API Key Env Var**: `ZAI_API_KEY`
|
43
|
+
- **Base URL**: `https://api.z.ai/v1`
|
44
|
+
- **Default Model**: `glm-4.5`
|
45
|
+
- **Driver**: `ZAIModelDriver`
|
46
|
+
|
47
|
+
## Alibaba Qwen
|
48
|
+
|
49
|
+
- **API Key Env Var**: `ALIBABA_API_KEY`
|
50
|
+
- **Base URL**: `https://dashscope-intl.aliyuncs.com/compatible-mode/v1`
|
51
|
+
- **Default Model**: `qwen3-next-80b-a3b-instruct`
|
52
|
+
- **Driver**: `OpenAIModelDriver`
|
53
|
+
|
54
|
+
## DeepSeek
|
55
|
+
|
56
|
+
- **API Key Env Var**: `DEEPSEEK_API_KEY`
|
57
|
+
- **Base URL**: `https://api.deepseek.com/v1`
|
58
|
+
- **Default Model**: `deepseek-chat`
|
59
|
+
- **Driver**: `OpenAIModelDriver`
|
60
|
+
|
61
|
+
## Moonshot
|
62
|
+
|
63
|
+
- **API Key Env Var**: `MOONSHOT_API_KEY`
|
64
|
+
- **Base URL**: `https://api.moonshot.ai/v1`
|
65
|
+
- **Default Model**: `kimi-k2-0905-preview`
|
66
|
+
- **Driver**: `OpenAIModelDriver`
|
67
|
+
|
68
|
+
## IBM WatsonX
|
69
|
+
|
70
|
+
- **API Key Env Var**: `WATSONX_API_KEY`
|
71
|
+
- **Project ID Env Var**: `WATSONX_PROJECT_ID`
|
72
|
+
- **Space ID Env Var**: `WATSONX_SPACE_ID`
|
73
|
+
- **Base URL**: `https://us-south.ml.cloud.ibm.com`
|
74
|
+
- **Default Model**: `ibm/granite-3-3-8b-instruct`
|
75
|
+
- **Driver**: `OpenAIModelDriver`
|
76
|
+
|
77
|
+
## Azure OpenAI
|
78
|
+
|
79
|
+
- **API Key Env Var**: `AZURE_OPENAI_API_KEY`
|
80
|
+
- **Deployment Name Config**: `azure_deployment_name`
|
81
|
+
- **Base URL**: Provider-specific (configured via deployment)
|
82
|
+
- **Default Model**: `azure_openai_deployment`
|
83
|
+
- **Driver**: `AzureOpenAIModelDriver`
|
84
|
+
|
85
|
+
> **Note**: For Azure OpenAI, you must specify your deployment name using `--model YOUR_DEPLOYMENT_NAME` or set it in config with `janito set-config azure_deployment_name=your-deployment-name`.
|
86
|
+
|
87
|
+
For detailed model specifications per provider, see [Supported Models](models/supported_models.md).
|