| 20 | export type ModelProvider = BaseProvider | "bedrock" | "default" |
| 21 | |
| 22 | export interface BaseModel<E = Record<string, any>> { |
| 23 | disableStreaming: boolean |
| 24 | active: boolean |
| 25 | toolsInPrompt: boolean |
| 26 | extra: E |
| 27 | custom?: Record<string, any> |
| 28 | model: string |
| 29 | isCustomModel?: boolean |
| 30 | verifyStatus?: ModelVerifyStatus |
| 31 | enableTools?: boolean |
| 32 | expired?: boolean |
| 33 | } |
| 34 | |
| 35 | export interface BaseConfigInModel { |
| 36 | temperature: number |
nothing calls this directly
no outgoing calls
no test coverage detected