MCPcopy Create free account
hub / github.com/Noumena-Network/code / getClaudeAiUserDefaultModelDescription

Function getClaudeAiUserDefaultModelDescription

src/utils/model/model.ts:392–404  ·  view source on GitHub ↗
(
  fastMode = false,
)

Source from the content-addressed store, hash-verified

390
391// @[MODEL LAUNCH]: Update the default model description strings shown to users.
392export function getClaudeAiUserDefaultModelDescription(
393 fastMode = false,
394): string {
395 const session = getCurrentSubscriptionSessionState()
396
397 if (session.isMaxSubscriber || session.isTeamPremiumSubscriber) {
398 if (isOpus1mMergeEnabled()) {
399 return `Opus 4.6 with 1M context · Most capable for complex work${fastMode ? getOpus46PricingSuffix(true) : ''}`
400 }
401 return `Opus 4.6 · Most capable for complex work${fastMode ? getOpus46PricingSuffix(true) : ''}`
402 }
403 return 'Sonnet 4.6 · Best for everyday tasks'
404}
405
406export function renderDefaultModelSetting(
407 setting: ModelName | ModelAlias,

Callers 3

status.test.tsFile · 0.85
getModelDisplayLabelFunction · 0.85
modelDisplayStringFunction · 0.85

Calls 3

isOpus1mMergeEnabledFunction · 0.85
getOpus46PricingSuffixFunction · 0.85

Tested by

no test coverage detected