This is a Python Flask application deployed on Google Cloud Run, powered by Gemini 3.0 Pro Preview.
- Frontend: Dark-mode chat interface (HTML/JS).
- Backend: Flask (Python) + Gunicorn.
- AI Model: Gemini 3.0 Pro Preview via Google GenAI SDK.
- Infrastructure: Google Cloud Run (Serverless).
- Install dependencies:
python3 -m venv venv source venv/bin/activate pip install -r requirements.txt - Set API Key:
export GEMINI_API_KEY="your_key_here"
- Run:
python3 main.py
Deployed to Google Cloud Run via CLI:
gcloud run deploy gemini-app --source .