AgentsAgentBaseget_nameCopy page|View as Markdown|Open in Claude|More actionsGet the agent’s display name as set at construction time. Parameters None. Returns str — The agent name. Example from signalwire import AgentBaseagent = AgentBase(name="support", route="/support")print(agent.get_name()) # "support"