(value: unknown)
| 16 | export type ManagedKimiCodeProtocol = 'kimi' | 'anthropic'; |
| 17 | |
| 18 | export function parseModelProtocol(value: unknown): ManagedKimiCodeProtocol | undefined { |
| 19 | return value === 'anthropic' ? 'anthropic' : undefined; |
| 20 | } |
| 21 | |
| 22 | /** |
| 23 | * Server-declared thinking toggle support from `/models`: |