Server SDKs
Build AI agents, control calls, send messages, and more
Get current date and time information with timezone support.
Tools: get_current_time, get_current_date
get_current_time
get_current_date
Requirements: pytz
pytz
No custom parameters. This skill inherits only the base parameters (swaig_fields, skip_prompt).
swaig_fields
skip_prompt
1from signalwire import AgentBase23class MyAgent(AgentBase):4 def __init__(self):5 super().__init__(name="assistant", route="/assistant")6 self.set_prompt_text("You are a helpful assistant.")7 self.add_skill("datetime")89agent = MyAgent()10agent.serve()