({ target, fast, frontier }: SpecialDescriptionContext)
| 303 | } |
| 304 | |
| 305 | function deepSeekDescription({ target, fast, frontier }: SpecialDescriptionContext) { |
| 306 | if (has(target, /\breasoner|r1\b/)) { |
| 307 | return "DeepSeek reasoning model for multi-step analysis, math, coding, and tools"; |
| 308 | } |
| 309 | if (fast || has(target, /\bflash\b/)) { |
| 310 | return "Fast DeepSeek model for efficient chat, coding help, and agent loops"; |
| 311 | } |
| 312 | if (frontier || has(target, /\bpro|v4\b/)) { |
| 313 | return "Flagship DeepSeek model for coding, reasoning, and agentic work"; |
| 314 | } |
| 315 | return "DeepSeek chat model for instruction following, coding, and analysis"; |
| 316 | } |
| 317 | |
| 318 | function xaiDescription({ target, fast }: SpecialDescriptionContext) { |
| 319 | if (has(target, /\bbuild\b/)) { |
no test coverage detected