DeepSeek
KaibanJS seamlessly integrates with DeepSeek's powerful language models, allowing you to leverage advanced AI capabilities in your applications. This integration supports DeepSeek's chat and reasoning models through the Langchain integration.
Supported Models
KaibanJS supports DeepSeek's models available through the Langchain integration. These models are designed for natural language conversations and complex reasoning tasks. The supported models include:
- deepseek-chat: A powerful chat model optimized for conversational AI
- deepseek-reasoner: A specialized model designed for complex reasoning tasks
For more information about these models and their capabilities, please refer to the official DeepSeek documentation.
Configuration
To use a DeepSeek model in your KaibanJS agent, configure the llmConfig
property as follows:
const agent = new Agent({
name: 'DeepSeek Agent',
role: 'Assistant',
llmConfig: {
provider: 'deepseek',
model: 'deepseek-chat' // or 'deepseek-reasoner'
}
});
API Key Setup
To use DeepSeek models, you need to provide an API key. There are two recommended ways to do this:
- Agent Configuration: Specify the API key in the
llmConfig
when creating an agent:
const agent = new Agent({
name: 'DeepSeek Agent',
role: 'Assistant',
llmConfig: {
provider: 'deepseek',
model: 'deepseek-chat',
apiKey: 'your-api-key-here'
}
});
- Team Configuration: Provide the API key in the
env
property when creating a team:
const team = new Team({
name: 'DeepSeek Team',
agents: [agent],
env: {
DEEPSEEK_API_KEY: 'your-api-key-here'
}
});
Always use environment variables for API keys instead of hardcoding them. This enhances security and simplifies key management across different environments.
Example:
apiKey: process.env.YOUR_API_KEY;
Never commit API keys to version control. Use a .env
file or a secure secrets management system for sensitive information.
Please refer to API Keys Management to learn more about handling API Keys safely.
Advanced Configuration and Langchain Compatibility
KaibanJS uses Langchain under the hood, which means we're compatible with all the parameters that Langchain's DeepSeek integration supports. This provides you with extensive flexibility in configuring your language models.
For more control over the model's behavior, you can pass additional parameters in the llmConfig
. These parameters correspond to those supported by Langchain's DeepSeek integration.
Here's an example of how to use advanced configuration options:
const agent = new Agent({
name: 'Advanced DeepSeek Agent',
role: 'Assistant',
llmConfig: {
provider: 'deepseek',
model: 'deepseek-chat',
temperature: 0.7
// Any other Langchain-supported parameters...
}
});
For a comprehensive list of available parameters and advanced configuration options, please refer to the official Langchain documentation:
Langchain DeepSeek Integration Documentation
Model Features
DeepSeek models support various advanced features:
- Tool Calling: Both models support function calling capabilities
- Structured Output: Generate structured JSON responses
- Token-level Streaming: Real-time token streaming for faster responses
- Token Usage Tracking: Monitor and track token usage
- Logprobs: Access to token probability information
Note: As of January 2025, tool calling and structured output are not currently supported for deepseek-reasoner
.
Best Practices
- Model Selection: Choose between
deepseek-chat
anddeepseek-reasoner
based on your specific use case - Cost Management: Monitor your API usage and implement appropriate rate limiting
- Error Handling: Implement proper error handling for API rate limits and other potential issues
Limitations
- Token limits vary by model. Ensure your inputs don't exceed these limits
- Some features may not be available across all models
- API rate limits may apply based on your subscription tier
Further Resources
Is there something unclear or quirky in the docs? Maybe you have a suggestion or spotted an issue? Help us refine and enhance our documentation by submitting an issue on GitHub. We're all ears!