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.

14 lines (12 loc) 401 B
import {ChatSegmentUserMessage} from '../../../types/chatSegment/chatSegmentUserMessage'; import {uid} from '../../../utils/uid'; export const getUserMessageFromPrompt = (prompt: string): ChatSegmentUserMessage => { return { uid: uid(), time: new Date(), status: 'complete', participantRole: 'user', content: prompt, contentType: 'text', }; };