import { ImageParams } from "./vision"; export interface DoubaoImageParams extends ImageParams { model_version?: string; req_key?: string; req_schedule_conf?: string; logo_info?: { add_logo?: boolean; position?: number; language?: number; opacity?: number; logo_text_content?: string; }; } export interface DoubaoImageResponse { binary_data_base64?: string[]; image_urls?: string[]; } export const DOUBAO_MODELS = { GENERAL_V2_1_L: "general_v2.1_L" } as const; export const DOUBAO_REQ_KEYS = { HIGH_AES_GENERAL_V21_L: "high_aes_general_v21_L" } as const;