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

Function teammateModelDisplayString

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

Source from the content-addressed store, hash-verified

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

Callers 1

ConfigFunction · 0.85

Calls 2

modelDisplayStringFunction · 0.85

Tested by

no test coverage detected