(config: KimiConfig)
| 197 | } |
| 198 | |
| 199 | function rawDefaultModel(config: KimiConfig): string | undefined { |
| 200 | const raw = config.raw?.['default_model']; |
| 201 | return typeof raw === 'string' ? raw : undefined; |
| 202 | } |
| 203 | |
| 204 | function rawThinking(config: KimiConfig): ThinkingConfig | undefined { |
| 205 | const raw = config.raw?.['thinking']; |
no outgoing calls
no test coverage detected