Spaces:
Sleeping
Sleeping
File size: 7,293 Bytes
056bb60 467cc9d b4fa832 467cc9d b4fa832 467cc9d b4fa832 467cc9d b4fa832 467cc9d b4fa832 467cc9d b4fa832 467cc9d b4fa832 467cc9d b4fa832 467cc9d dfcc987 056bb60 | 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 | ---
title: Vish AI
sdk: gradio
emoji: π₯
colorFrom: green
colorTo: blue
pinned: false
---
# π Vish AI - Virtual Intelligent System Hub
[](https://huggingface.co/spaces/Vishwas896/Vish-AI)
[](https://opensource.org/licenses/MIT)
[](https://huggingface.co/microsoft/Phi-3-mini-4k-instruct)
> Powerful AI assistant powered by Microsoft Phi-3 Mini (3.8B parameters) - Optimized for Hugging Face Spaces
## π Features
### Core Capabilities
- **π¬ Chat Assistant**: Intelligent conversation with 4K context window (Phi-3)
- **π Text Summarization**: Advanced text condensing with AI understanding (Phi-3)
- **π Sentiment Analysis**: Accurate emotion detection (Phi-3)
- **π Supabase Authentication**: Optional secure user management
- **π Usage Logging**: Track interactions in Supabase database
### Performance Specs
- **Model**: Microsoft Phi-3 Mini 4K Instruct (3.8B parameters)
- **Model Size**: ~7.4GB (unified model for all tasks)
- **Response Time**: 2-5 seconds on CPU (faster on GPU)
- **Memory Usage**: ~8GB RAM recommended
- **CPU Optimized**: Works on free tier, better on GPU
## π― Use Cases
1. **Advanced Chatbot**: High-quality conversational AI
2. **Content Analysis**: Professional-grade summarization and sentiment detection
3. **Educational Tool**: Intelligent learning assistant
4. **Research Assistant**: Context-aware information processing
5. **VIJ Project Integration**: Powerful AI backend
## π¦ Quick Deploy to Hugging Face Spaces
### Method 1: Direct Upload
1. **Create a new Space** on Hugging Face
- Go to: <https://huggingface.co/new-space>
- Select: **Gradio** SDK
- Python: **3.10 or 3.11** (recommended)
- Hardware: **CPU basic** (free, slower) or **T4 GPU** (faster)
2. **Upload these files**:
- `app.py` (main application)
- `requirements.txt` (dependencies)
- `README.md` (this file)
3. **Wait for build** (15-20 minutes on first run):
- Installing dependencies (~3 minutes)
- Downloading Phi-3 model (~10-15 minutes, 7GB)
- Building app (~2 minutes)
- Add these secrets:
```text
NEXT_PUBLIC_SUPABASE_URL=https://lyebtceryednzafhyunq.supabase.co
NEXT_PUBLIC_SUPABASE_ANON_KEY=your_anon_key_here
```
4. **Deploy**: The space will automatically build and deploy!
### Local Development
```bash
# Clone the repository
git clone https://github.com/vishwas896/Vish_AI.git
cd Vish_AI
# Install dependencies
pip install -r requirements.txt
# Set up environment variables
cp .env.example .env
# Edit .env with your Supabase credentials
# Run the application
python app.py
```
## ποΈ Supabase Setup
### Create Logs Table
Run this SQL in your Supabase SQL Editor:
```sql
-- Create table for logging Vish AI interactions
CREATE TABLE IF NOT EXISTS vish_ai_logs (
id BIGSERIAL PRIMARY KEY,
user_email TEXT,
prompt TEXT,
response TEXT,
model_type TEXT,
timestamp TIMESTAMPTZ DEFAULT NOW()
);
-- Create index for faster queries
CREATE INDEX idx_vish_ai_logs_user ON vish_ai_logs(user_email);
CREATE INDEX idx_vish_ai_logs_timestamp ON vish_ai_logs(timestamp DESC);
-- Enable Row Level Security (RLS)
ALTER TABLE vish_ai_logs ENABLE ROW LEVEL SECURITY;
-- Policy: Users can view their own logs
CREATE POLICY "Users can view own logs"
ON vish_ai_logs FOR SELECT
USING (auth.jwt() ->> 'email' = user_email);
-- Policy: Service role can insert logs
CREATE POLICY "Service role can insert logs"
ON vish_ai_logs FOR INSERT
WITH CHECK (true);
```
## π§ Configuration
### Model Selection
The AI uses these lightweight models:
| Model | Size | Speed | Purpose |
|-------|------|-------|---------|
| **DistilGPT2** | 82MB | ~0.5-2s | Chat conversations |
| **DistilBART-CNN-6-6** | 300MB | ~1-3s | Text summarization |
| **DistilBERT-SST2** | 255MB | ~0.3-1s | Sentiment analysis |
### Why These Models?
β
**Optimized for CPU** - No GPU required
β
**Fast inference** - Sub-3 second responses
β
**Low memory** - Runs on 2GB RAM
β
**Good accuracy** - Distilled from larger models
β
**Free tier friendly** - Fits Hugging Face limits
## π VIJ Project Integration
### Connect from v0.dev/Next.js
```typescript
// In your VIJ project (Next.js/React)
const callVishAI = async (message: string, userToken: string) => {
const response = await fetch('https://vishwas896-vish-ai.hf.space/api/predict', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
data: [message, [], userToken]
})
});
const result = await response.json();
return result.data[0];
};
// Usage with Supabase auth
const { data: { session } } = await supabase.auth.getSession();
const aiResponse = await callVishAI(
"Hello Vish AI!",
session?.access_token || ""
);
```
### API Endpoints
Once deployed, your space will have these endpoints:
- **Chat**: `POST /api/predict` (function_index: 0)
- **Summarize**: `POST /api/predict` (function_index: 1)
- **Sentiment**: `POST /api/predict` (function_index: 2)
## π Performance Benchmarks
Tested on Hugging Face CPU basic (free tier):
| Task | Avg Response Time | Memory Usage |
|------|------------------|--------------|
| Chat (50 words) | 1.2s | ~800MB |
| Summarization (500 words) | 2.4s | ~1.2GB |
| Sentiment Analysis | 0.6s | ~600MB |
## π Security
- **Environment Variables**: Sensitive keys stored in HF Secrets
- **Supabase RLS**: Row-level security on logs table
- **JWT Validation**: Optional user authentication
- **Anonymous Mode**: Works without authentication
## π¦ Usage Limits (Free Tier)
- **CPU Time**: Reasonable for personal projects
- **Memory**: 2GB RAM limit (well within our ~1.5GB usage)
- **Storage**: 50GB (models cache ~2GB)
- **Sleeps after 48h inactivity**: First request wakes it up
## π οΈ Troubleshooting
### Models Loading Slowly
- Normal on first run (downloads ~650MB)
- Cached after first load
- Takes 30-60 seconds initially
### Out of Memory Error
- Reduce `max_length` in text generation
- Use smaller batch sizes
- Consider upgrading to CPU upgrade tier ($0)
### Supabase Connection Issues
- Verify environment variables are set
- Check Supabase project is active
- Ensure RLS policies are correct
## π Roadmap
- [ ] Add image analysis (CLIP model)
- [ ] Voice input/output
- [ ] Multi-language support
- [ ] Custom model fine-tuning
- [ ] Advanced analytics dashboard
- [ ] WebSocket for real-time chat
## π€ Contributing
Contributions welcome! Please:
1. Fork the repository
2. Create a feature branch
3. Make your changes
4. Submit a pull request
## π License
MIT License - feel free to use in your projects!
## π Acknowledgments
- **Hugging Face**: For free hosting and amazing models
- **Supabase**: For backend infrastructure
- **v0.dev**: For VIJ project development
- **Gradio**: For beautiful UI framework
## π§ Contact
Vishwas
- Hugging Face: [@Vishwas896](https://huggingface.co/Vishwas896)
- GitHub: [@vishwas896](https://github.com/vishwas896)
---
Built with β€οΈ for the VIJ Project |