MCPcopy Create free account
hub / github.com/claude-code-best/claude-code / getAttributionEmail

Function getAttributionEmail

src/utils/attributionEmail.ts:19–27  ·  view source on GitHub ↗
(modelName: string)

Source from the content-addressed store, hash-verified

17]
18
19export function getAttributionEmail(modelName: string): string {
20 const lower = modelName.toLowerCase()
21 for (const { keywords, email } of MODEL_EMAIL_MAP) {
22 if (keywords.some(kw => lower.includes(kw))) {
23 return email
24 }
25 }
26 return 'noreply@anthropic.com'
27}

Callers 1

getAttributionTextsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected