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

Function miniMaxDescription

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

Source from the content-addressed store, hash-verified

326}
327
328function miniMaxDescription({ target, fast, frontier, multimodal }: SpecialDescriptionContext) {
329 if (has(target, /\bhighspeed|lightning\b/)) {
330 return "High-speed MiniMax model for low-latency coding and agent workflows";
331 }
332 if (multimodal || has(target, /\bm3\b/)) {
333 return "MiniMax multimodal coding model for long-context reasoning and agent tasks";
334 }
335 if (frontier) {
336 return "Frontier MiniMax model for engineering, office tasks, and agentic reasoning";
337 }
338 if (fast) {
339 return "Efficient MiniMax model for quick assistance, coding, and routine automation";
340 }
341 return "MiniMax model for chat, coding, office work, and agentic tasks";
342}
343
344function nvidiaDescription({ target, fast, frontier, multimodal }: SpecialDescriptionContext) {
345 if (has(target, /\bvoice\b/)) {

Callers 1

specialDescriptionFunction · 0.85

Calls 1

hasFunction · 0.85

Tested by

no test coverage detected