UNPKG

@lobehub/chat

Version:

Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.

26 lines (23 loc) 454 B
export interface ImgInfo { [propName: string]: any; buffer: Buffer; extname: string; fileName: string; } export interface S3UserConfig { accessKeyId: string; bucketName: string; endpoint: string; pathPrefix: string; pathStyleAccess?: boolean; region: string; secretAccessKey: string; uploadPath?: string; } export interface UploadResult { eTag?: string; imgURL: string; key: string; url: string; versionId?: string; }