This plugin extends the AI Pro plugin by adding support for DeepSeek's language models.
- Download the plugin and extract it to 
/user/plugins/ai-pro-deepseek - Run 
composer installin the plugin directory - Configure the plugin in Admin panel
 
- Grav v1.7.0 or higher
 - AI Pro plugin v1.0.0 or higher
 - DeepSeek API key
 
- Get your API key from platform.deepseek.com
 - Enable the plugin in Grav Admin
 - Enter your API key in the plugin settings
 - Select your preferred model (DeepSeek Chat or DeepSeek Coder)
 
- Full integration with AI Pro's unified interface
 - Support for DeepSeek Chat and DeepSeek Coder models
 - Streaming responses
 - Automatic retry with exponential backoff
 - Token counting and cost estimation
 
Once configured, DeepSeek will appear as an available provider in:
- AI Pro admin interface
 - CLI commands: 
bin/plugin ai-pro chat --provider=deepseek - AI-powered form fields
 
- DeepSeek Chat: General purpose model with 32K context window
 - DeepSeek Coder: Specialized for code generation with 16K context window
 
This plugin demonstrates how to extend AI Pro with custom providers. Key files:
ai-pro-deepseek.php: Main plugin file that registers the providerclasses/DeepSeekProvider.php: Provider implementationblueprints.yaml: Configuration schema
MIT License