| 47 | } |
| 48 | |
| 49 | export interface ModelSettings { |
| 50 | provider: string |
| 51 | temperature: number |
| 52 | providerSettings: { |
| 53 | [key: string]: ProviderSettings |
| 54 | } |
| 55 | } |
| 56 | |
| 57 | const DEFAULT_SETTINGS: ModelSettings = { |
| 58 | provider: "openai", |
nothing calls this directly
no outgoing calls
no test coverage detected