(env: Record<string, string | undefined>)
| 13 | import { KimiError } from '../../src/errors'; |
| 14 | |
| 15 | function apply(env: Record<string, string | undefined>) { |
| 16 | return applyEnvModelConfig(getDefaultConfig(), env); |
| 17 | } |
| 18 | |
| 19 | function expectConfigInvalid(fn: () => unknown): void { |
| 20 | try { |
no test coverage detected