(model: unknown)
| 1 | import type { ChatCompletionRequestBody } from './types' |
| 2 | |
| 3 | export function isKimiModel(model: unknown): model is string { |
| 4 | return typeof model === 'string' && model.startsWith('moonshotai/') |
| 5 | } |
| 6 | |
| 7 | function getToolCallNamesById( |
| 8 | messages: ChatCompletionRequestBody['messages'], |
no outgoing calls
no test coverage detected