@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
5 lines (4 loc) • 323 B
TypeScript
import * as React from 'react';
import { AdapterType } from './AdapterType';
export type AdapterProviderProps = React.PropsWithChildren<Partial<AdapterType>>;
export declare const AdapterProvider: ({ children, transformThread, transformMessage, reverseMessageTransforming }: AdapterProviderProps) => React.JSX.Element;