Spaces:
Sleeping
Sleeping
File size: 7,032 Bytes
467cc9d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 | # Production Deployment Checklist
## Pre-Deployment Checklist
### 1. Files Ready
- [x] `app.py` - Production-ready with fallback modes
- [x] `requirements.txt` - Python 3.10/3.11 compatible
- [x] `.python-version` - Specifies Python 3.11
- [x] `README_HF.md` - Hugging Face Space documentation
- [x] `.env` - Local environment (DO NOT COMMIT)
- [x] `supabase_setup.sql` - Database schema
### 2. Environment Variables Required
#### Minimum (for basic functionality)
```bash
NEXT_PUBLIC_SUPABASE_URL=https://lyebtceryednzafhyunq.supabase.co
NEXT_PUBLIC_SUPABASE_ANON_KEY=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...
```
#### Optional (for advanced features)
```bash
SUPABASE_JWT_SECRET=CDELVoOBAyFycUNWHHSwZIRsiZHS8OcQlzFh0AJYOd6...
SUPABASE_SERVICE_ROLE_KEY=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...
```
## Deployment Steps for Hugging Face Spaces
### Step 1: Create Hugging Face Space
1. Go to <https://huggingface.co/new-space>
2. Fill in details:
- **Owner**: Vishwas896
- **Space name**: Vish-AI
- **SDK**: Gradio
- **Hardware**: CPU basic (FREE)
- **Visibility**: Public
3. Click "Create Space"
### Step 2: Push Code to Hugging Face
```bash
# Option A: Using Git CLI
cd /workspaces/Vish_AI
# Initialize git (if not already)
git init
git add app.py requirements.txt .python-version README_HF.md
git commit -m "Production-ready Vish AI"
# Add Hugging Face remote
git remote add hf https://huggingface.co/spaces/Vishwas896/Vish-AI
git push hf main
# Option B: Using HF Hub CLI
pip install huggingface_hub
huggingface-cli login
huggingface-cli upload Vishwas896/Vish-AI ./app.py app.py
huggingface-cli upload Vishwas896/Vish-AI ./requirements.txt requirements.txt
huggingface-cli upload Vishwas896/Vish-AI ./.python-version .python-version
# Option C: Using Web Interface
# Just drag and drop files to https://huggingface.co/spaces/Vishwas896/Vish-AI/tree/main
```
### Step 3: Configure Secrets
1. Go to: <https://huggingface.co/spaces/Vishwas896/Vish-AI/settings>
2. Scroll to "Repository secrets"
3. Add secrets one by one:
```text
Name: NEXT_PUBLIC_SUPABASE_URL
Value: https://lyebtceryednzafhyunq.supabase.co
Name: NEXT_PUBLIC_SUPABASE_ANON_KEY
Value: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6Imx5ZWJ0Y2VyeWVkbnphZmh5dW5xIiwicm9sZSI6ImFub24iLCJpYXQiOjE3NTcyNjQ3ODksImV4cCI6MjA3Mjg0MDc4OX0.uP_MWQ4SAzGpSvYWIdAlq6qz86_DsTSoSmqBsBl0O10
```
### Step 4: Setup Supabase Database
1. Go to: <https://supabase.com/dashboard/project/lyebtceryednzafhyunq/sql>
2. Copy and paste the entire contents of `supabase_setup.sql`
3. Click "Run"
4. Verify table created: `vish_ai_logs`
### Step 5: Wait for Build
1. Monitor build at: <https://huggingface.co/spaces/Vishwas896/Vish-AI/logs>
2. Build time: ~3-5 minutes
3. Model download: ~2-3 minutes (first run only)
4. Total startup time: ~5-8 minutes
### Step 6: Test the Deployment
1. Visit: <https://huggingface.co/spaces/Vishwas896/Vish-AI>
2. Test features:
- β
Chat interface
- β
Text summarization
- β
Sentiment analysis
3. Check logs in Supabase
## Production Features
### What's Included
1. **Graceful Degradation**
- Works without PyTorch (demo mode)
- Works without Supabase (no logging)
- Clear user feedback
2. **Error Handling**
- Try-catch blocks on all operations
- User-friendly error messages
- Fallback responses
3. **Performance Optimization**
- Lazy model loading
- CPU-optimized inference
- Response time tracking
4. **Security**
- Environment variable protection
- Optional JWT authentication
- Supabase RLS policies
5. **Monitoring**
- Usage logging to database
- User tracking
- Performance metrics
## Configuration Options
### Model Configuration (in app.py)
```python
# Chat model
model="distilgpt2" # 82MB, fast
max_length=150 # Response length
# Summarization
model="sshleifer/distilbart-cnn-6-6" # 300MB
max_length=130 # Summary length
min_length=30 # Minimum summary
# Sentiment
model="distilbert-base-uncased-finetuned-sst-2-english" # 255MB
```
### Gradio Configuration
```python
server_name="0.0.0.0" # Listen on all interfaces
server_port=7860 # Default Gradio port
share=False # Don't create public link
queue=True # Enable request queuing
```
## Expected Performance
### On Hugging Face Free Tier (CPU Basic)
| Metric | Value |
|--------|-------|
| Cold Start | 5-8 minutes (first time) |
| Warm Start | 10-30 seconds |
| Chat Response | 0.5-2 seconds |
| Summarization | 1-3 seconds |
| Sentiment | 0.3-1 second |
| Memory Usage | 1.5-2GB |
| Concurrent Users | 10-20 |
### Model Sizes
| Model | Download Size | Memory Usage |
|-------|---------------|--------------|
| DistilGPT2 | 82 MB | ~300 MB |
| DistilBART | 300 MB | ~800 MB |
| DistilBERT | 255 MB | ~500 MB |
| **Total** | **~650 MB** | **~1.6 GB** |
## Troubleshooting
### Issue: Space won't start
**Solution:**
- Check build logs for errors
- Verify `requirements.txt` syntax
- Ensure `.python-version` is 3.11
### Issue: Models not loading
**Solution:**
- Wait 5-8 minutes on first start
- Check HF Space has enough memory
- Verify internet connection for model download
### Issue: Supabase connection failed
**Solution:**
- Verify secrets are set correctly
- Check Supabase project is active
- Test connection from SQL editor
### Issue: Import errors
**Solution:**
- Check Python version is 3.10 or 3.11
- Verify all dependencies in requirements.txt
- Clear cache and rebuild
## Update Workflow
### To update your deployed space
```bash
# Make changes locally
nano app.py
# Test locally
python app.py
# Commit and push
git add .
git commit -m "Update: description of changes"
git push hf main
# HF will automatically rebuild
```
## Scaling Options
### Free Tier β Paid Tier
If you need more power:
1. **CPU Upgrade** ($0-5/month)
- More concurrent users
- Faster response times
2. **GPU T4** ($0.60/hour)
- 10x faster inference
- Larger models possible
3. **Persistent Storage**
- Model caching
- Faster restarts
## Success Criteria
### Deployment is successful when
1. Space status shows "Running"
2. All 3 tabs work (Chat, Summarize, Sentiment)
3. Models load within 8 minutes
4. Responses are generated successfully
5. Supabase logging works (check database)
6. No errors in HF logs
## Support
### If you encounter issues
1. **Check Documentation**
- README.md
- DEPLOYMENT.md
- This checklist
2. **Review Logs**
- HF Space logs
- Browser console
- Supabase logs
3. **Common Resources**
- [HF Spaces Docs](https://huggingface.co/docs/hub/spaces)
- [Gradio Docs](https://gradio.app/docs)
- [Supabase Docs](https://supabase.com/docs)
---
## Post-Deployment
### After successful deployment
1. β
Test all features
2. β
Share the link: `https://huggingface.co/spaces/Vishwas896/Vish-AI`
3. β
Integrate with VIJ project
4. β
Monitor usage in Supabase
5. β
Star the repository!
---
Ready to deploy? Let's go!
|