> ## Documentation Index
> Fetch the complete documentation index at: https://docs.keywordsai.co/llms.txt
> Use this file to discover all available pages before exploring further.

# DeepSeek

> Use your own DeepSeek credits through Keywords AI

<CardGroup cols={1}>
  <Card title="Get DeepSeek API key" icon="key" href="https://platform.deepseek.com/api_keys">
    Get your DeepSeek API key from the DeepSeek Platform to start using DeepSeek models through Keywords AI.
  </Card>
</CardGroup>

## DeepSeek models compatibility

<AccordionGroup>
  <Accordion title="✅ Supported Frameworks">
    * [OpenAI SDK](/integration/development-frameworks/llm_framework/openai/openai-sdk)
    * [LangChain SDK](/integration/development-frameworks/llm_framework/langchain)
    * [Vercel/OpenAI](/integration/development-frameworks/llm_framework/vercel#openai)
    * [Vercel/Google](/integration/development-frameworks/llm_framework/vercel#google)
    * [LlamaIndex SDK](/integration/development-frameworks/llm_framework/llama-index)
    * [Google GenAI](/integration/development-frameworks/llm_framework/google_genai)
    * [Keywords native (Otel)](/get-started/quickstart/gateway)
  </Accordion>

  <Accordion title="❌ Unsupported Frameworks">
    * [Anthropic SDK](/integration/development-frameworks/llm_framework/anthropic)
    * [Vercel/Anthropic](/integration/development-frameworks/llm_framework/vercel#anthropic)
  </Accordion>
</AccordionGroup>

## Add DeepSeek API keys

There are 2 ways to add your DeepSeek credentials to your requests:

### Via UI

<Steps>
  <Step title="Go to the Providers page">
    Go to [Providers page](https://platform.keywordsai.co/platform/api/providers)

    <Frame>
      <img src="https://keywordsai-static.s3.us-east-1.amazonaws.com/docs/settings/providers.jpg" alt="Providers Page" />
    </Frame>
  </Step>

  <Step title="Add your DeepSeek credentials.">
    Add your DeepSeek API key in the providers page.
  </Step>
</Steps>

### Via code

Add `customer_credentials` parameter in your [request body](/api-endpoints/develop/gateway/chat-completions) to use your own DeepSeek credits.

```json theme={"system"}
{
  // Rest of the request body
  "customer_credentials": {
    "deepseek": {
      "api_key": "YOUR_DEEPSEEK_API_KEY",
    }
  }
}
```
