Spaces:
Build error
Build error
| # Groq API (primary LLM) | |
| GROQ_API_KEY=your_groq_api_key_here | |
| # Anthropic API (optional) | |
| ANTHROPIC_API_KEY= | |
| # Gemini API (optional) | |
| GEMINI_API_KEY=your_gemini_api_key_here | |
| # Google Calendar | |
| GOOGLE_CALENDAR_ID=pgits.job@gmail.com | |
| GOOGLE_CLIENT_ID= | |
| GOOGLE_CLIENT_SECRET= | |
| # Session Backend (redis for local, jwt for HF) | |
| SESSION_BACKEND=redis | |
| # Redis Configuration (only needed if SESSION_BACKEND=redis) | |
| REDIS_URL=redis://redis:6379/0 | |
| # Application Settings | |
| APP_NAME=ChatCal.ai | |
| APP_ENV=development | |
| APP_PORT=8000 | |
| APP_HOST=0.0.0.0 | |
| # Security | |
| SECRET_KEY= | |
| CORS_ORIGINS=["http://localhost:3000", "http://localhost:8000"] | |
| # Timezone | |
| DEFAULT_TIMEZONE=America/New_York |