UNPKG

@plteam/chat-ui

Version:

CUI Kit is a free and open-source library for creating AI assistant chat interfaces, built with React, Material UI, and TypeScript

11 lines (10 loc) 392 B
import * as React from 'react'; export const useChatProps = (userProps) => { const { lang, slotProps, slots, apiRef, coreSlots, scrollerRef, initialThread, threads, ...chatProps } = userProps; return React.useMemo(() => ({ ...chatProps, initialThread, threads, loading: userProps.loading ?? false, }), [chatProps, userProps.loading]); };