| 1044 | } |
| 1045 | |
| 1046 | export interface ImageGenerationRequest { |
| 1047 | model: string; |
| 1048 | prompt: string; |
| 1049 | imageConfig?: ImageGenerationConfig; |
| 1050 | apiType?: ApiType; |
| 1051 | // 图生图:附带的图片数据 |
| 1052 | inputImage?: { |
| 1053 | mimeType: string; |
| 1054 | data: string; // Base64 编码的图片数据 |
| 1055 | }; |
| 1056 | } |
| 1057 | |
| 1058 | export interface ImageGenerationResponse { |
| 1059 | candidates: Array<{ |
nothing calls this directly
no outgoing calls
no test coverage detected