| 1056 | } |
| 1057 | |
| 1058 | export interface ImageGenerationResponse { |
| 1059 | candidates: Array<{ |
| 1060 | content: { |
| 1061 | parts: Array<{ |
| 1062 | text?: string; |
| 1063 | inlineData?: { |
| 1064 | mimeType: string; |
| 1065 | data: string; // Base64 编码的图片数据 |
| 1066 | }; |
| 1067 | }>; |
| 1068 | role: string; |
| 1069 | }; |
| 1070 | finishReason: string; |
| 1071 | }>; |
| 1072 | } |
| 1073 | |
| 1074 | // SSE 事件类型 |
| 1075 | export type SSEEventType = 'heartbeat' | 'result' | 'error'; |
nothing calls this directly
no outgoing calls
no test coverage detected