MCPcopy
hub / github.com/codeaashu/claude-code / teammateModelDisplayString

Function teammateModelDisplayString

src/components/Settings/Config.tsx:1738–1744  ·  view source on GitHub ↗
(value: string | null | undefined)

Source from the content-addressed store, hash-verified

1736 </Box>;
1737}
1738function teammateModelDisplayString(value: string | null | undefined): string {
1739 if (value === undefined) {
1740 return modelDisplayString(getHardcodedTeammateModelFallback());
1741 }
1742 if (value === null) return "Default (leader's model)";
1743 return modelDisplayString(value);
1744}
1745const THEME_LABELS: Record<string, string> = {
1746 auto: 'Auto (match terminal)',
1747 dark: 'Dark mode',

Callers 1

ConfigFunction · 0.85

Calls 2

modelDisplayStringFunction · 0.85

Tested by

no test coverage detected