# Ask AI chatbot widget for Starlight

> For the complete documentation index, see [llms.txt](/llms.txt)

> Add an AI chatbot or AI search widget to your Starlight documentation site with this step-by-step guide.

Add an [AI chatbot](https://biel.ai) or [AI search widget](https://biel.ai/ai-search-for-docs) to your Starlight documentation using Biel.ai's web components.

## Prerequisites

- A **Biel.ai account**. If you don't have one, [sign up for free](https://app.biel.ai/accounts/signup/).
- **A project created in your Biel.ai dashboard**. Follow the [Quickstart guide](https://docs.biel.ai/quickstart.md) to create one.
- **A Starlight site** ready to install Biel.ai.

## Add the chatbot widget

![Chatbot widget for docs](./images/biel-widget-docs.png)

To integrate the Biel.ai widget into your Starlight site:

1. Go to `src/components`. If `components` does not exist, create the directory.
1. Create a new file `CustomFooter.astro` under your docs project `src/components` directory with the following content:

    ```astro
    ---

    ---

    <footer class="sl-flex">
        <biel-button project="<YOUR_PROJECT_ID>" header-title="Biel.ai chatbot" button-position="bottom-right" modal-position="bottom-right" button-style="dark">
                Ask AI
        </biel-button>

        
            <EditLink {...Astro.props} />
            <LastUpdated {...Astro.props} />
        
        <Pagination {...Astro.props} />

        { config.credits && (
                
                    <Icon name={'starlight'} /> {Astro.locals.t('builtWithStarlight.label')}
                
            )}
    </footer>

    <style is:global>
        .right-sidebar-container{ z-index: -1;}
    </style>

    <style>
        footer { flex-direction: column;
            gap: 1.5rem;}
        .meta { gap: 0.75rem 3rem;
            justify-content: space-between;
            flex-wrap: wrap;
            font-size: var(--sl-text-sm);
            color: var(--sl-color-gray-3);}
        .meta > :global(p:only-child) { margin-inline-start: auto;}

        .kudos { align-items: center;
            gap: 0.5em;
            margin: 1.5rem auto;
            font-size: var(--sl-text-xs);
            text-decoration: none;
            color: var(--sl-color-gray-3);}
        .kudos :global(svg) { color: var(--sl-color-orange);}
        .kudos:hover { color: var(--sl-color-white);}
    </style>
    ```

    Replace `<YOUR_PROJECT_ID>` with your project's ID from the [Biel.ai dashboard](https://docs.biel.ai/quickstart.md#2-create-a-project).

    The global style sets `z-index: -1` on `.right-sidebar-container` to ensure the button is placed on top of the right sidebar.

1. Load the dependencies in your Astro configuration file (`astro.config.mjs`):

    ```js

    export default defineConfig({ integrations: [ starlight({ head: [ { tag: 'link',
              attrs: { rel: 'stylesheet',
                href: 'https://cdn.jsdelivr.net/npm/biel-search/dist/biel-search/biel-search.css',},},
            { tag: 'script',
              attrs: { type: 'module',
                src: 'https://cdn.jsdelivr.net/npm/biel-search/dist/biel-search/biel-search.esm.js',},},],
          (...)}),],})
    ```

1. Load the custom component you've created by overriding the default footer with `CustomFooter.astro`:

    ```js

    export default defineConfig({ integrations: [ starlight({ (...)
          components: { Footer: './src/components/CustomFooter.astro',},
          (...)}),],})
    ```

1. Start your Starlight project by running `npm run dev` in your terminal. Once it compiles successfully, verify that the chatbot widget appears and functions correctly on your site.

## Next steps

- [Customize](https://docs.biel.ai/customization.md) the widget's appearance, behavior, and tone.
- [Connect integrations](https://docs.biel.ai/integrations.md) like GitHub Actions, MCP, or Zapier.
