({ target, fast, multimodal }: SpecialDescriptionContext)
| 409 | } |
| 410 | |
| 411 | function mimoDescription({ target, fast, multimodal }: SpecialDescriptionContext) { |
| 412 | if (has(target, /\bpro\b/)) { |
| 413 | return "MiMo pro model for strong multimodal reasoning and agent execution"; |
| 414 | } |
| 415 | if (fast || has(target, /\bflash\b/)) { |
| 416 | return "MiMo flash model for fast multimodal assistance and agent workflows"; |
| 417 | } |
| 418 | if (multimodal || has(target, /\bomni\b/)) { |
| 419 | return "MiMo omni model for text, image, video, audio, and agents"; |
| 420 | } |
| 421 | return "MiMo model for long-context reasoning, perception, and agentic tasks"; |
| 422 | } |
| 423 | |
| 424 | function stepDescription(_: SpecialDescriptionContext) { |
| 425 | return "StepFun flash model for efficient multimodal reasoning, coding, and tool use"; |
no test coverage detected