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 1from signalwire import AgentBase23agent = AgentBase(name="support", route="/support")4print(agent.get_name()) # "support"