MCPcopy
hub / github.com/OpenAgentPlatform/Dive / BaseModel

Interface BaseModel

types/model.d.ts:22–33  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20export type ModelProvider = BaseProvider | "bedrock" | "default"
21
22export 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
35export interface BaseConfigInModel {
36 temperature: number

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected