Installation#
Requirements#
- Python 3.10 or higher
- pip or poetry for package management
Install the SDK#
Recommended for first-time users
Start with pip install openintent[server] so you can run a local server and explore the SDK immediately.
LLM Adapters#
Install only the adapters you need:
| Provider | Package | Models |
|---|---|---|
| OpenAI | openintent[openai] |
GPT-4o, GPT-4, GPT-3.5 |
| Anthropic | openintent[anthropic] |
Claude 3.5, Claude 3 |
| Google Gemini | openintent[gemini] |
Gemini Pro, Gemini Ultra |
| xAI Grok | openintent[grok] |
Grok-1 |
| DeepSeek | openintent[deepseek] |
DeepSeek Chat |
| Azure OpenAI | openintent[azure] |
Azure-hosted GPT models |
| OpenRouter | openintent[openrouter] |
200+ models via unified API |
# Install specific adapters
pip install openintent[openai,anthropic]
# Or all adapters
pip install openintent[all-adapters]
Verify Installation#
Development Installation#
For contributors
Clone the repository and install in development mode with all extras:
Run the test suite:
Next Steps#
Configuration
Advanced client configuration options, authentication, and environment variables.
Configure