Code
cookbook/tools/calcom_tools.py
Copy
Ask AI
from datetime import datetime
from agno.agent import Agent
from agno.models.openai import OpenAIChat
from agno.tools.calcom import CalComTools
agent = Agent(
name="Calendar Assistant",
instructions=[
f"You're scheduing assistant. Today is {datetime.now()}.",
"You can help users by:",
" - Finding available time slots",
" - Creating new bookings",
" - Managing existing bookings (view, reschedule, cancel)",
" - Getting booking details",
" - IMPORTANT: In case of rescheduling or cancelling booking, call the get_upcoming_bookings function to get the booking uid. check available slots before making a booking for given time",
"Always confirm important details before making bookings or changes.",
],
model=OpenAIChat(id="gpt-4"),
tools=[CalComTools(user_timezone="America/New_York")],
show_tool_calls=True,
markdown=True,
)
agent.print_response("What are my bookings for tomorrow?")
Usage
1
Create a virtual environment
Open the
Terminal
and create a python virtual environment.Copy
Ask AI
python3 -m venv .venv
source .venv/bin/activate
2
Set your API keys
Copy
Ask AI
export CALCOM_API_KEY=xxx
export CALCOM_EVENT_TYPE_ID=xxx
export OPENAI_API_KEY=xxx
3
Install libraries
Copy
Ask AI
pip install -U requests pytz openai agno
4
Run Agent
Copy
Ask AI
python cookbook/tools/calcom_tools.py