AI Agent Configuration Manager

Configure your VAPI assistant with style ✨

Firebase Configuration Required

1. Add your Firebase configuration in the script section below
2. Make sure Firestore is enabled in your Firebase project
3. Enable Authentication in Firebase Console
4. Set proper security rules in Firestore:

// For development only:
rules_version = '2';
service cloud.firestore {
  match /databases/{database}/documents {
    match /{document=**} {
      allow read, write: if true;
    }
  }
}

⚠️ Warning: These rules allow anyone to read/write. Use proper authentication in production!