HubSpot AI Assistant

HubSpot AI Assistant

Your intelligent partner for HubSpot data exploration and content analysis.

Backend Status

Checking connection...

CORS Setup Guide
For the app to work, add your Firebase URL to your backend's CORS policy in `main.py` and redeploy.
CORS(app, resources={
  r"/*": {
    "origins": [
      "https://your-firebase-app-name.web.app", 
      "http://localhost:3000", 
      "https://hubspot-backend-service-1096557980714.us-central1.run.app"
    ]
  }
})