({ target, fast, frontier, multimodal }: SpecialDescriptionContext)
| 342 | } |
| 343 | |
| 344 | function nvidiaDescription({ target, fast, frontier, multimodal }: SpecialDescriptionContext) { |
| 345 | if (has(target, /\bvoice\b/)) { |
| 346 | return "Nemotron voice model for conversational audio and speech-enabled assistants"; |
| 347 | } |
| 348 | if (has(target, /\bembed\b/)) { |
| 349 | return "Nemotron embedding model for multimodal retrieval and semantic search"; |
| 350 | } |
| 351 | if (has(target, /\brerank\b/)) { |
| 352 | return "Nemotron reranker for improving retrieval quality across text and vision search"; |
| 353 | } |
| 354 | if (has(target, /\bsafety|guard\b/)) { |
| 355 | return "Nemotron safety model for moderation, policy checks, and safe routing"; |
| 356 | } |
| 357 | if (multimodal) { |
| 358 | return "Nemotron multimodal model for visual reasoning and agentic AI workflows"; |
| 359 | } |
| 360 | if (frontier || has(target, /\bultra\b/)) { |
| 361 | return "Flagship Nemotron model for high-throughput reasoning and complex agents"; |
| 362 | } |
| 363 | if (fast || has(target, /\bnano\b/)) { |
| 364 | return "Compact Nemotron model for efficient reasoning and deployable AI agents"; |
| 365 | } |
| 366 | return "Nemotron model for efficient reasoning, coding, and specialized AI agents"; |
| 367 | } |
| 368 | |
| 369 | function metaDescription({ target, fast, multimodal }: SpecialDescriptionContext) { |
| 370 | if (has(target, /\bscout\b/)) { |
no test coverage detected