* 创建空的图片服务商表单
()
| 125 | * 创建空的图片服务商表单 |
| 126 | */ |
| 127 | function createEmptyImageForm(): ImageProviderForm { |
| 128 | return { |
| 129 | name: '', |
| 130 | type: 'image_api', |
| 131 | api_key: '', |
| 132 | api_key_masked: '', |
| 133 | base_url: '', |
| 134 | model: '', |
| 135 | high_concurrency: false, |
| 136 | short_prompt: false, |
| 137 | endpoint_type: '/v1/images/generations', |
| 138 | _has_api_key: false |
| 139 | } |
| 140 | } |
| 141 | |
| 142 | /** |
| 143 | * 加载配置 |
no outgoing calls
no test coverage detected