1
0
Fork 0
docsearch/packages/docsearch-sidepanel-js
Paul Jankowski c94eafbbee
chore: Update to use tsdown for build system (#2824)
* chore: Update to use tsdown for build system

* fix: docsearch-react build

* fix: lint

* fix: glob resolved to incorrect version
2026-02-20 13:24:32 -05:00
..
src chore: release v4.5.0-beta.0 (#2834) 2026-01-08 20:32:06 +01:00
package.json chore: Update to use tsdown for build system (#2824) 2026-02-20 13:24:32 -05:00
README.md feat(sidepanel): Introduce Ask AI Sidepanel (#2816) 2025-12-17 13:25:50 -05:00
tsdown.config.ts chore: Update to use tsdown for build system (#2824) 2026-02-20 13:24:32 -05:00

@docsearch/sidepanel-js

JavaScript package for DocSearch Sidepanel, a standalone Ask AI chat panel.

Installation

yarn add @docsearch/sidepanel-js
# or
npm install @docsearch/sidepanel-js

Get started

If you dont want to use a package manager, you can use a standalone endpoint:

<script src="https://cdn.jsdelivr.net/npm/@docsearch/sidepanel-js@4"></script>

To get started, you need a container for your DocSearch Sidepanel component to go in. If you dont have one already, you can insert one into your markup:

<div id="docsearch-sidepanel"></div>

Then, insert DocSearch Sidepanel into it by calling the sidepanel function and providing the container. It can be a CSS selector or an Element.

Make sure to provide a container (for example, a div).

import sidepanel from '@docsearch/sidepanel-js';

import '@docsearch/css/dist/sidepanel.css';

sidepanel({
  container: '#docsearch-sidepanel',
  indexName: 'YOUR_INDEX_NAME',
  appId: 'YOUR_APP_ID',
  apiKey: 'YOUR_SEARCH_API_KEY',
  assistantId: 'YOUR_ASSISTANT_ID',
});

Documentation

Read documentation →