Documentation Index
Fetch the complete documentation index at: https://docs.onyx.app/llms.txt
Use this file to discover all available pages before exploring further.
Overview
Bring Onyx’s AI capabilities directly to your website with an embeddable chat widget. Built with Lit web components for maximum compatibility and minimal bundle size. The widget integrates seamlessly with any website, providing your visitors instant access to AI-powered conversations without leaving your page.Features
- Lightweight - ~100-150kb gzipped bundle
- Fully Customizable - Colors, branding, and styling to match your site
- Responsive - Desktop popup, mobile fullscreen
- Shadow DOM Isolation - No style conflicts with your existing CSS
- Real-time Streaming - Server-sent events (SSE) for fast responses
- Session Persistence - Conversations survive page reloads
- Two Display Modes - Floating launcher or inline embed
- Source Citations - Optional citation badges linking to source documents
Quick Start
Add these few lines to your website:Display Modes
Launcher Mode (Default)
A floating button appears in the bottom-right corner. Clicking it opens a chat popup.- Desktop: 400x600px popup above the button
- Mobile: Full-screen overlay for optimal mobile experience
Inline Mode
The widget embeds directly in your page layout. Perfect for dedicated support pages or knowledge bases.Configuration Options
Required Attributes
| Attribute | Type | Description |
|---|---|---|
backend-url | string | Your Onyx backend API URL |
api-key | string | API key for authentication |
Optional Attributes
| Attribute | Type | Default | Description |
|---|---|---|---|
agent-id | number | undefined | Specific agent/persona to use |
agent-name | string | "Assistant" | Display name in header |
logo | string | Onyx logo | URL to custom logo image |
primary-color | string | #1c1c1c | Primary brand color (buttons, accents) |
background-color | string | #e9e9e9 | Widget background color |
text-color | string | #000000bf | Text color (75% opacity black) |
mode | string | "launcher" | Display mode: "launcher" or "inline" |
include-citations | boolean | false | Show citation badges linking to source documents |
Configuration Examples
Basic Setup:Customization
Styling
The widget uses CSS custom properties for theming. All styles are scoped within Shadow DOM to prevent conflicts with your site’s CSS. Default Colors:| CSS Variable | Default | Description |
|---|---|---|
--onyx-primary | #1c1c1c | Buttons, accents |
--onyx-primary-hover | #000000 | Hover state |
--onyx-background | #e9e9e9 | Widget background |
--onyx-text | #000000bf | Text (75% opacity) |
--onyx-text-light | #ffffff | White text on dark |
--onyx-border | #00000033 | Borders (20% opacity) |
Architecture
The widget communicates directly with your Onyx backend using Server-Sent Events (SSE) for real-time streaming responses: Widget loads - Lightweight JavaScript bundle initializes the web component Session created - Widget creates a chat session via the Onyx API User sends message - Request is sent to your Onyx backend Streaming response - AI response streams back in real-time via SSE Markdown rendered - Responses are formatted with full markdown supportBrowser Support
- Chrome/Edge 90+ (Chromium)
- Firefox 90+
- Safari 15+
- Mobile Safari (iOS 15+)
- Mobile Chrome (Android)
Deployment
For detailed deployment instructions, including self-hosted setup and API key security best practices, see the Website Widget Deployment Guide.Need help with setup? Contact your Onyx administrator for API key configuration or deployment assistance.