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

# Llama Stack

<Info>
  Get started with [Lllama Stack](https://llama-stack.readthedocs.io/en/latest/getting_started/index.html)
</Info>

<Tabs>
  <Tab title="YAML">
    ```yaml title="config.yaml" theme={null}
    models:
      - name: <MODEL_NAME>
        provider: llamastack
        model: <MODEL_ID>
        apiBase: http://<LLAMA_STACK_ENDPOINT>/v1/openai/v1/
    ```
  </Tab>

  <Tab title="JSON (Deprecated)">
    ```json title="config.json" theme={null}
    {
      "models": [
        {
          "title": "<MODEL_NAME>",
          "provider": "llamastack",
          "model": "<MODEL_ID>",
          "apiBase": "http://<LLAMA_STACK_ENDPOINT>/v1/openai/v1/"
        }
      ]
    }
    ```
  </Tab>
</Tabs>
