UNPKG

remix-nlux

Version:

Remix IDE NLUX integration. Remix IDE is the leading IDE for building and deploying smart contracts on Ethereum. NLUX is a JavaScript and React library for building conversational AI experiences.

17 lines (14 loc) 428 B
import {PersonaOptions} from '@nlux/core'; const avatarDom = document.createElement('span'); avatarDom.innerHTML = '🤖'; export const personaOptions: PersonaOptions = { assistant: { name: 'Fin Assistant', avatar: 'https://cdn-icons-png.flaticon.com/512/7049/7049276.png', tagline: 'Your friendly AI financial advisor', }, user: { name: 'You', avatar: avatarDom, }, };