Spaces:
Sleeping
Sleeping
chore: Add .gitignore, example environment file, and pyproject.toml; update requirements and README
e73707f
| # Example environment variables file | |
| # Copy this to .env and fill in your actual values | |
| # Hugging Face Token (required) | |
| HF_TOKEN=your_hugging_face_token_here | |
| # Gmail OAuth 2.0 Credentials (required for Gmail integration) | |
| # Get these from Google Cloud Console > APIs & Credentials > OAuth 2.0 Client IDs | |
| GOOGLE_CLIENT_ID=your_google_client_id_here | |
| GOOGLE_CLIENT_SECRET=your_google_client_secret_here | |
| # Gmail OAuth Tokens (obtained after running setup script) | |
| # Run `python scripts/setup_gmail_credentials.py` to get these | |
| GOOGLE_REFRESH_TOKEN=your_refresh_token_here | |
| GOOGLE_ACCESS_TOKEN=your_access_token_here | |
| # Deployment Environment (set to production for deployed environments) | |
| # DEPLOYMENT_ENV=production | |
| # Optional: OpenAI API Key (if you want to use OpenAI models) | |
| # OPENAI_API_KEY=your_openai_api_key_here |