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.
16 lines (13 loc) • 313 B
text/typescript
export interface AssistantPersona {
avatar: string | Readonly<HTMLElement>;
name: string;
tagline?: string;
}
export interface UserPersona {
avatar: string | Readonly<HTMLElement>;
name: string;
}
export interface PersonaOptions {
assistant?: AssistantPersona,
user?: UserPersona,
}