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

Function deepSeekDescription

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

Source from the content-addressed store, hash-verified

303}
304
305function 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
318function xaiDescription({ target, fast }: SpecialDescriptionContext) {
319 if (has(target, /\bbuild\b/)) {

Callers 1

specialDescriptionFunction · 0.85

Calls 1

hasFunction · 0.85

Tested by

no test coverage detected