> ## 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.

# Nebius AI

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

## Nebius AI 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>

To use Keywords AI LLM proxy, you need to add your own credentials to call models from each provider. Here's how you can add your [Nebius AI](https://nebius.com/) credentials on Keywords AI platform.

## Add Nebius AI API keys

There are 2 ways to add your Nebius AI credentials to your requests:

### Via UI

<Steps>
  <Step title="Go to the Providers page">
    The [Providers page](https://platform.keywordsai.co/platform/api/providers) allows you to add your own credentials for each provider. Currently, over 20+ providers are supported.

    <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 Nebius AI API key.">
    <img width="600" src="https://keywordsai-static.s3.us-east-1.amazonaws.com/docs/settings/providers-nebius-dark.jpg" className="hidden dark:block" alt="Keywords AI Credentials Page" />

    <img width="600" src="https://keywordsai-static.s3.us-east-1.amazonaws.com/docs/settings/providers-nebius-light.jpg" className="block dark:hidden" alt="Keywords AI Credentials Page" />
  </Step>

  <Step title="Call Nebius AI models">
    You can now call Nebius AI models on Keywords AI platform.

    Go to [Models page](https://platform.keywordsai.co/platform/api/models) and select `Nebius AI` from the provider dropdown.

    <img width="600" src="https://keywordsai-static.s3.us-east-1.amazonaws.com/docs/llm-proxy/models-nebius-dark.jpg" className="hidden dark:block" alt="Keywords AI Credentials Page" />

    <img width="600" src="https://keywordsai-static.s3.us-east-1.amazonaws.com/docs/llm-proxy/models-nebius-light.jpg" className="block dark:hidden" alt="Keywords AI Credentials Page" />

    Then add the correct Nebius AI model ID in the `Model` field.

    ```python Example theme={"system"}
    "model": "nebius/deepseek-ai/DeepSeek-R1"
    ```

    Check out [LLM proxy](/get-started/llm-inference#ai-gateway) to know more about how to use the models.
  </Step>
</Steps>
