Integrations Overview
Integrations
Integrations in Siphon are native capabilities that allow your agents to interact with external services and understand context beyond just conversation. Unlike plugins which focus on AI providers (LLM, TTS, STT), integrations focus on tools and context.
Available Integrations
| Integration | Description |
|---|---|
| Google Calendar | Enable your agent to check availability and manage appointments real-time. |
| Date & Time | Give your agent awareness of the current date, time, and timezone context. |
How it works
Integrations are typically enabled when initializing your Agent. They automatically inject the necessary tools and context into the system prompt, so you don't need to manually define tool schemas.
agent = Agent(
# ... other config
google_calendar=True,
date_time=True
)