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

8 lines (7 loc) 315 B
import { Threads } from "../../../models/Threads"; import { ObservableReactValue } from "../../../utils/observers/ObservableReactValue"; export type InternalApiType = { model: Threads<any, any>; }; declare const internalApi: ObservableReactValue<InternalApiType | undefined>; export default internalApi;