MCPcopy Create free account
hub / github.com/ScaleML/AgentSPEX / make_bot_display_name

Function make_bot_display_name

scripts/setup_slack.py:68–70  ·  view source on GitHub ↗

Convert a bot name to a display name (spaces to hyphens).

(name: str)

Source from the content-addressed store, hash-verified

66
67
68def make_bot_display_name(name: str) -> str:
69 """Convert a bot name to a display name (spaces to hyphens)."""
70 return name.strip().replace(" ", "-")
71
72
73def make_slash_command(display_name: str) -> str:

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected