deep-chat-dev
Version:
Customizable chat component for AI APIs
14 lines • 387 B
TypeScript
import { ChatFunctionHandler } from './openAI';
export interface OpenWebUIChat {
model?: string;
system_prompt?: string;
tool_ids?: string[];
tools?: object[];
function_handler?: ChatFunctionHandler;
files?: {
type: 'file' | 'collection';
id: string;
}[];
}
export type OpenWebUI = true | OpenWebUIChat;
//# sourceMappingURL=openWebUI.d.ts.map