| 45 | |
| 46 | // 图片服务商表单类型 |
| 47 | export interface ImageProviderForm { |
| 48 | name: string |
| 49 | type: string |
| 50 | api_key: string |
| 51 | api_key_masked: string |
| 52 | base_url: string |
| 53 | model: string |
| 54 | high_concurrency: boolean |
| 55 | short_prompt: boolean |
| 56 | endpoint_type: string |
| 57 | _has_api_key: boolean |
| 58 | } |
| 59 | |
| 60 | // 文本服务商类型选项 |
| 61 | export const textTypeOptions = [ |
nothing calls this directly
no outgoing calls
no test coverage detected