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

# Together AI

<Tip>
  **Discover Together AI models [here](https://hub.gourmand.dev/togetherai)**
</Tip>

<Info>
  Get an API key from the [Together AI](https://api.together.ai)
</Info>

## Configuration

<Tabs>
  <Tab title="YAML">
    ```yaml title="config.yaml" theme={null}
    models:
      - name: <MODEL_NAME>
        provider: together
        model: <MODEL_ID>
        apiKey: <YOUR_TOGETHER_API_KEY>
    ```
  </Tab>

  <Tab title="JSON (Deprecated)">
    ```json title="config.json" theme={null}
    {
      "models": [
        {
          "title": "<MODEL_NAME>",
          "provider": "together",
          "model": "<MODEL_ID>",
          "apiKey": "<YOUR_TOGETHER_API_KEY>"
        }
      ]
    }
    ```
  </Tab>
</Tabs>

<Info>
  **Check out a more advanced configuration [here](https://hub.gourmand.dev/togetherai/qwen3-coder-480b-a35b-instruct-fp8?view=config)**
</Info>
