MCPcopy
hub / github.com/ComposioHQ/composio / display_name_for

Function display_name_for

python/scripts/generate-docs.py:111–113  ·  view source on GitHub ↗

Resolve the display title for a class (falls back to the class name).

(class_name: str)

Source from the content-addressed store, hash-verified

109
110
111def display_name_for(class_name: str) -> str:
112 """Resolve the display title for a class (falls back to the class name)."""
113 return DISPLAY_NAME_OVERRIDES.get(class_name, class_name)
114
115
116def slug_for(class_name: str) -> str:

Callers 2

generate_class_mdxFunction · 0.85
generate_index_mdxFunction · 0.85

Calls 1

getMethod · 0.65

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…