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

# How to Configure Inception with Gobi

<Tip>
  **Discover Inception models [here](https://hub.gourmand.dev/inceptionlabs)**
</Tip>

<Info>
  Get an API key from [Inception Platform](https://platform.inceptionlabs.ai/dashboard/api-keys)
</Info>

## Configuration

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

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

<Info>
  **Check out a more advanced configuration [here](https://hub.gourmand.dev/inceptionlabs/mercury-coder?view=config)**
</Info>
