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

# Providers Overview

> Choose the right AI providers based on the apps and features you want to enable

AnotherWrapper supports a bunch of AI providers, but here's the good news -- you don't need all of them. The real question is: **which ones do you actually need for what you're building?**

## Start small, expand later

For most projects, this is all you need to get going:

* **OpenAI** -- covers chat, vision, images, audio, and structured output
* **Storage** -- for file uploads
* **Better Auth + PostgreSQL** -- for auth and data

That's a fully functional AI app right there.

Then add more providers as your product grows:

<CardGroup cols={2}>
  <Card title="OpenAI" icon="microchip" href="/providers/openai">
    Core chat, images, vision, audio, structured output. Your Swiss Army knife.
  </Card>

  <Card title="Anthropic" icon="brain" href="/providers/anthropic">
    Claude models for chat. Great for reasoning and long-context tasks.
  </Card>

  <Card title="Google Gemini" icon="microchip" href="/providers/google">
    Gemini models with search grounding and a strong default vision path.
  </Card>

  <Card title="Groq" icon="brain" href="/providers/groq">
    Lightning-fast Llama models. Great for speed-sensitive features.
  </Card>

  <Card title="xAI" icon="robot" href="/providers/xai">
    Grok models with reasoning capabilities.
  </Card>

  <Card title="DeepSeek" icon="brain" href="/providers/deepseek">
    Additional reasoning and chat model options.
  </Card>

  <Card title="Replicate" icon="robot" href="/providers/replicate">
    Image, video, and transcription workflows.
  </Card>

  <Card title="ElevenLabs" icon="microphone" href="/providers/elevenlabs">
    Text-to-speech with 1000+ voices in 26+ languages.
  </Card>
</CardGroup>

## Provider to feature mapping

Here's a quick cheat sheet so you know exactly what each provider unlocks:

| Provider          | What it powers                                               |
| ----------------- | ------------------------------------------------------------ |
| **OpenAI**        | Core chat, structured generation, embeddings, image features |
| **Anthropic**     | Claude chat support                                          |
| **Google Gemini** | Gemini chat, search grounding, default vision path           |
| **Groq**          | Fast Llama models for chat and structured generation         |
| **xAI**           | Grok models for chat                                         |
| **DeepSeek**      | Additional reasoning/chat models                             |
| **Replicate**     | Image generation, video generation, and audio transcription  |
| **ElevenLabs**    | Voice Studio (text-to-speech)                                |

<Tip>
  Don't turn on every provider just because the repo supports them. Enable only what your current product actually needs. That keeps setup time, API costs, and operational complexity way down.
</Tip>
