Welcome to Janito
Janito is a flexible and extensible platform for interacting with large language models (LLMs) from multiple providers.
Key Features
- Multi-provider support: Access models from OpenAI, Anthropic, Google Gemini, Mistral, Alibaba Qwen, Z.AI, DeepSeek, Moonshot, IBM WatsonX, and Azure OpenAI
- Unified interface: Consistent CLI and API across all providers
- Tool integration: Built-in tools for file management, web access, code execution, and more
- Plugin system: Extend functionality with modular plugins
- Security first: Permission controls and sandboxed operations
- Automatic documentation: Supported models are automatically synchronized with the codebase
Getting Started
-
Install Janito:
pip install janito
-
Set your API key:
janito --set-api-key --provider openai --key YOUR_API_KEY
-
List available models:
janito --list-models --provider openai
-
Start interactive shell (default model):
janito
Quick Examples
# Simple prompt
janito "Create a Python script to calculate fibonacci numbers"
# Using specific model and provider
janito -p openai -m gpt-4 "Explain quantum computing"
# Using the shorthand model@provider syntax
janito -m gpt-4@openai "Explain quantum computing"
Documentation
Explore our comprehensive documentation:
- Installation & Setup
- Configuration
- CLI Commands
- Supported Models
- Tools & Plugins
- Developer Guide
- Releasing Guide
Note: The list of supported models is automatically generated from the codebase. When new models are added, this documentation updates automatically.*