DeepSeek is a platform for providing endpoints for Large Language models. See their library of models here. We recommend experimenting to find the best-suited model for your use-case. Here are some general recommendations:Documentation Index
Fetch the complete documentation index at: https://docs-v1.agno.com/llms.txt
Use this file to discover all available pages before exploring further.
deepseek-chatmodel is good for most basic use-cases.deepseek-reasonermodel is good for complex reasoning and multi-step tasks.
Authentication
Set yourDEEPSEEK_API_KEY environment variable. Get your key from here.
Example
UseDeepSeek with your Agent:
View more examples here.
Params
| Parameter | Type | Default | Description |
|---|---|---|---|
id | str | "deepseek-chat" | The specific model ID used for generating responses. |
name | str | "DeepSeek" | The name identifier for the DeepSeek model. |
provider | str | "DeepSeek" | The provider of the model. |
api_key | Optional[str] | - | The API key used for authenticating requests to the DeepSeek service. Retrieved from the environment variable DEEPSEEK_API_KEY. |
base_url | str | "https://api.deepseek.com" | The base URL for making API requests to the DeepSeek service. |
DeepSeek also supports the params of OpenAI.