@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.
13 lines (11 loc) • 350 B
text/typescript
export type DallEImageQuality = 'standard' | 'hd';
export type DallEImageStyle = 'vivid' | 'natural';
export type DallEImageSize = '1792x1024' | '1024x1024' | '1024x1792';
export interface DallEImageItem {
imageId?: string;
previewUrl?: string;
prompt: string;
quality: DallEImageQuality;
size: DallEImageSize;
style: DallEImageStyle;
}