({ target, fast, multimodal }: SpecialDescriptionContext)
| 367 | } |
| 368 | |
| 369 | function metaDescription({ target, fast, multimodal }: SpecialDescriptionContext) { |
| 370 | if (has(target, /\bscout\b/)) { |
| 371 | return "Open multimodal Llama model for long-context analysis and efficient agents"; |
| 372 | } |
| 373 | if (has(target, /\bmaverick\b/)) { |
| 374 | return "Open multimodal Llama model for strong reasoning and fast responses"; |
| 375 | } |
| 376 | if (multimodal) { |
| 377 | return "Open Llama multimodal model for image understanding and text reasoning"; |
| 378 | } |
| 379 | if (fast) { |
| 380 | return "Compact Llama instruction model for fast chat and local deployment"; |
| 381 | } |
| 382 | return "Open Llama instruction model for multilingual chat, reasoning, and coding"; |
| 383 | } |
| 384 | |
| 385 | function glmDescription({ target, fast, multimodal }: SpecialDescriptionContext) { |
| 386 | if (multimodal || has(target, /\bv\b/)) { |
no test coverage detected