(
id: string,
overrides: Partial<ManagedKimiCodeModelInfo> = {},
)
| 1298 | }); |
| 1299 | |
| 1300 | function makeModelInfo( |
| 1301 | id: string, |
| 1302 | overrides: Partial<ManagedKimiCodeModelInfo> = {}, |
| 1303 | ): ManagedKimiCodeModelInfo { |
| 1304 | return { |
| 1305 | id, |
| 1306 | contextLength: 200000, |
| 1307 | supportsReasoning: false, |
| 1308 | supportsImageIn: false, |
| 1309 | supportsVideoIn: false, |
| 1310 | ...overrides, |
| 1311 | }; |
| 1312 | } |
| 1313 | |
| 1314 | const KIMI_BASE_URL = 'https://api.kimi.com/coding/v1'; |
| 1315 |
no outgoing calls
no test coverage detected