@tabulariumai/aurora-assistant
v1.0.1
Published
Tabularium AI browser assistant with chat, contact, and search-result rendering.
Maintainers
Readme
@tabulariumai/aurora-assistant
Tabularium AI browser assistant with chat, contact, and Aurora Search result rendering.
Install
npm install @tabulariumai/aurora-assistantCommonJS
const AuroraAssistant = require("@tabulariumai/aurora-assistant");The package exports create(options). The returned assistant supports open(),
ask(message), openContact(), and destroy().
Browser assets
The published runtime assets are available at these package subpaths:
@tabulariumai/aurora-assistant@tabulariumai/aurora-assistant/styles.css
Loading index.js as a browser script exposes window.AuroraAssistant.
const assistant = window.AuroraAssistant.create({
packageApi: {
chatUrl: "wss://example.test/v1/assistant/chat",
},
showContact: true,
links: {},
logoUrl: "/assets/logo.webp",
searchExecutor: window.AuroraSearch,
});The host owns runtime URLs, links, logo selection, contact availability, and the optional Aurora Search executor.
Development
npm install
npm test
npm run test:edge
npm pack --dry-runPublic Repository Notes
Generated package archives, dependency folders, test results, and local environment files are not part of the public repository surface. Source, tests, documentation, and package metadata are public.
