(modelId: string)
| 141 | { provider: 'openai', id: 'qwen/qwen3-coder-next' }, // LM Studio HF-publisher prefix |
| 142 | ]); |
| 143 | const wireId = (modelId: string) => idx.get(modelId)?.info.id; |
| 144 | check('openai/gpt-4o → gpt-4o (provider prefix dropped)', wireId('openai/gpt-4o') === 'gpt-4o'); |
| 145 | check('nvidia/nemotron-… kept VERBATIM (not stripped to nemotron-…)', |
| 146 | wireId('nvidia/nemotron-3-super-120b-a12b') === 'nvidia/nemotron-3-super-120b-a12b'); |
no test coverage detected