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) 422 B
import { MessageModel } from '../../../models'; import { ReasoningViewType } from '../../../models/MessageReasoningModel'; export declare const parseReasoningText: (text: string) => { newTitle: string; newText: string; } | undefined; export declare const useReasoningParse: (text: string, message: MessageModel, inProgress: boolean) => { description: string; reasoningType: ReasoningViewType; };