| 14 | |
| 15 | // 服务商数据类型 |
| 16 | export interface Provider { |
| 17 | type: string |
| 18 | model: string |
| 19 | base_url?: string |
| 20 | api_key?: string |
| 21 | api_key_masked?: string |
| 22 | endpoint_type?: string |
| 23 | high_concurrency?: boolean |
| 24 | short_prompt?: boolean |
| 25 | [key: string]: any |
| 26 | } |
| 27 | |
| 28 | // 服务商配置类型 |
| 29 | export interface ProviderConfig { |
nothing calls this directly
no outgoing calls
no test coverage detected