MCPcopy
hub / github.com/anomalyco/models.dev / nvidiaDescription

Function nvidiaDescription

packages/core/src/describe.ts:344–367  ·  view source on GitHub ↗
({ target, fast, frontier, multimodal }: SpecialDescriptionContext)

Source from the content-addressed store, hash-verified

342}
343
344function 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
369function metaDescription({ target, fast, multimodal }: SpecialDescriptionContext) {
370 if (has(target, /\bscout\b/)) {

Callers 1

specialDescriptionFunction · 0.85

Calls 1

hasFunction · 0.85

Tested by

no test coverage detected