"""Simple chat interface for ChatCal.ai.""" from fastapi import APIRouter from fastapi.responses import HTMLResponse router = APIRouter() @router.get("/simple-chat", response_class=HTMLResponse) async def simple_chat(): """Simple working chat interface.""" return """ ChatCal.ai

📅 Book Time with Peter Michael Gits

AI-Powered Scheduling Assistant

👋 Welcome! I'm ChatCal, Peter Michael Gits' scheduling assistant. I'm here to help you book an appointment with Peter.

I can schedule:
  • Business consultations (60 min) - in-person or Google Meet
  • Quick discussions (30 min) - in-person or Google Meet
  • Project meetings (60 min) - in-person or Google Meet
  • Advisory sessions (90 min) - in-person or Google Meet
🎥 Google Meet: Just mention "Google Meet", "video call", or "online meeting" and I'll automatically create a video conference link for you!

What type of meeting would you like to schedule?
ChatCal is thinking...
"""