Aura Anywhere
Aura Anywhere is an embeddable AI-powered clinical assistant for healthcare applications.
Overview
The Aura Anywhere provides:
- Easy Integration - Simple embed code for any web application
- Customizable Styling - Adapt the widget to match your brand
- Secure Communication - HIPAA-compliant data handling
Quick Start
- Install the Aura Anywhere package
- Initialize with your credentials
- Embed in your application
import { AuraWidget } from '@insight-health/aura';
AuraWidget.init({
partnerKey: '<partner-key-shared-by-insight-health>',
tenantId: 'tenant-id',
tenantName?: 'tenant-name', // Optional
user: {
id: '13',
email: 'user@example.com',
firstName: 'John',
lastName: 'Doe',
},
});
AuraWidget.emit({
type: 'Encounter.Open',
payload: {
encounterId: '123',
// ... other encounter details
},
});Last updated on