({ target, fast, frontier, multimodal }: SpecialDescriptionContext)
| 326 | } |
| 327 | |
| 328 | function miniMaxDescription({ target, fast, frontier, multimodal }: SpecialDescriptionContext) { |
| 329 | if (has(target, /\bhighspeed|lightning\b/)) { |
| 330 | return "High-speed MiniMax model for low-latency coding and agent workflows"; |
| 331 | } |
| 332 | if (multimodal || has(target, /\bm3\b/)) { |
| 333 | return "MiniMax multimodal coding model for long-context reasoning and agent tasks"; |
| 334 | } |
| 335 | if (frontier) { |
| 336 | return "Frontier MiniMax model for engineering, office tasks, and agentic reasoning"; |
| 337 | } |
| 338 | if (fast) { |
| 339 | return "Efficient MiniMax model for quick assistance, coding, and routine automation"; |
| 340 | } |
| 341 | return "MiniMax model for chat, coding, office work, and agentic tasks"; |
| 342 | } |
| 343 | |
| 344 | function nvidiaDescription({ target, fast, frontier, multimodal }: SpecialDescriptionContext) { |
| 345 | if (has(target, /\bvoice\b/)) { |
no test coverage detected