File size: 11,217 Bytes
bc10808
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
# Project Structure πŸ“

Complete overview of the Graph RAG Chatbot project files and their purposes.

```
graph-rag-chatbot/
β”œβ”€β”€ πŸ“„ Core Application Files
β”‚   β”œβ”€β”€ app.py                      # Main Flask application (500+ lines)
β”‚   β”œβ”€β”€ requirements.txt             # Python dependencies
β”‚   └── .env.example                 # Environment variables template
β”‚
β”œβ”€β”€ 🐳 Docker & Deployment
β”‚   β”œβ”€β”€ Dockerfile                   # Docker image definition
β”‚   β”œβ”€β”€ docker-compose.yml           # Docker Compose configuration
β”‚   β”œβ”€β”€ .dockerignore               # Files to exclude from Docker build
β”‚   └── deploy.sh                    # Automated deployment script (Linux/Mac)
β”‚   └── deploy.bat                   # Automated deployment script (Windows)
β”‚
β”œβ”€β”€ πŸ“š Documentation
β”‚   β”œβ”€β”€ README.md                    # Complete documentation
β”‚   β”œβ”€β”€ QUICKSTART.md               # 5-minute quick start guide
β”‚   β”œβ”€β”€ TESTING.md                  # Comprehensive testing guide
β”‚   β”œβ”€β”€ space_config.md             # HF Spaces deployment guide
β”‚   └── PROJECT_STRUCTURE.md        # This file
β”‚
β”œβ”€β”€ 🎨 Frontend
β”‚   └── templates/
β”‚       └── index.html              # Complete responsive UI (HTML + CSS + JS)
β”‚
β”œβ”€β”€ πŸ“¦ Data Storage (created at runtime)
β”‚   β”œβ”€β”€ data/
β”‚   β”‚   β”œβ”€β”€ uploads/                # Uploaded documents stored here
β”‚   β”‚   β”‚   └── .gitkeep
β”‚   β”‚   └── graph_data/             # Knowledge graphs (PNG images)
β”‚   β”‚       └── .gitkeep
β”‚
β”œβ”€β”€ πŸ”§ Configuration
β”‚   └── .gitignore                  # Git ignore rules
β”‚
└── πŸ“‹ Optional Files (for your reference)
    β”œβ”€β”€ LICENSE                     # MIT License (optional)
    └── CONTRIBUTING.md             # Contribution guidelines (optional)
```

---

## File Details

### Core Application (`app.py`)

**Size**: ~550 lines
**Language**: Python 3.8+
**Dependencies**: Flask, Groq, SentenceTransformers, NetworkX

**Key Components**:

1. **Flask Setup** (lines 1-50)
   - Initialize Flask app
   - Configure CORS
   - Set up upload folder
   - Initialize models

2. **Document Processing** (lines 51-150)
   - `DocumentProcessor` class
   - Text extraction (PDF, CSV, TXT)
   - Text chunking with LangChain

3. **Knowledge Graph Building** (lines 151-220)
   - `GraphBuilder` class
   - Create nodes and edges
   - Generate NetworkX graph
   - Visualize with Matplotlib

4. **API Endpoints** (lines 221-450)
   - `GET /` - Serve UI
   - `GET /api/documents` - List documents
   - `POST /api/upload` - Upload files
   - `POST /api/query` - RAG queries
   - `GET /graph-image/<filename>` - Get graph PNG
   - `DELETE /api/delete/<filename>` - Delete document

5. **Async Processing** (lines 451-550)
   - Background thread processing
   - Progress tracking
   - Error handling

### Frontend (`templates/index.html`)

**Size**: ~700 lines
**Language**: HTML + CSS + JavaScript
**No external build step required**

**Sections**:

1. **Styling** (lines 1-350)
   - Modern gradient design
   - Responsive grid layout
   - Dark mode ready
   - Animations and transitions

2. **HTML Structure** (lines 351-500)
   - Upload zone
   - Document list
   - Chat interface
   - Graph viewer
   - Tabbed interface

3. **JavaScript** (lines 501-700)
   - File upload handling
   - Real-time document refresh
   - Chat message display
   - Graph visualization
   - API communication

### Configuration Files

#### `requirements.txt`
```
Flask==2.3.3                 # Web framework
Flask-CORS==4.0.0            # CORS support
python-dotenv==1.0.0         # .env loading
sentence-transformers==2.2.2 # Embeddings
groq==0.4.1                  # Groq API
PyPDF2==3.0.1                # PDF parsing
pandas==2.0.3                # Data handling
langchain==0.0.283           # Text processing
networkx==3.1                # Graph algorithms
matplotlib==3.7.2            # Graph visualization
numpy==1.24.3                # Numerical computing
torch==2.0.1                 # ML framework
```

#### `Dockerfile`
- Base: `python:3.11-slim` (compact, secure)
- Installs: gcc, g++ for C dependencies
- Installs: Python packages from requirements.txt
- Exposes: Port 7860
- CMD: Run Flask app

#### `docker-compose.yml`
- Service: `graph-rag`
- Port mapping: 7860:7860
- Environment: GROQ_API_KEY, PORT
- Volumes: ./data for persistence
- Health check: HTTP 200 on /
- Restart policy: unless-stopped

### Environment Variables (`.env`)

```env
GROQ_API_KEY=your_groq_api_key_here    # Required: LLM API access
PORT=7860                              # Optional: Application port
FLASK_ENV=production                   # Optional: production/development
```

**Never commit .env file!** Use `.env.example` as template.

### Data Storage

#### `data/uploads/`
- **Purpose**: Store uploaded documents
- **Contents**: PDF, CSV, TXT files
- **Persistence**: Survives container restarts
- **Size Limit**: 50MB per file

#### `data/graph_data/`
- **Purpose**: Store generated graph images
- **Format**: PNG files (DPI: 150)
- **Naming**: `{filename}_graph.png`
- **Size**: ~50-200KB per graph

---

## Technology Stack πŸ› οΈ

### Backend
- **Framework**: Flask (lightweight, easy to deploy)
- **API**: RESTful with JSON
- **Language**: Python 3.8+
- **LLM**: Groq Mixtral 8x7b
- **Embeddings**: SentenceTransformers (all-MiniLM-L6-v2)
- **Graphs**: NetworkX (algorithms, visualization)

### Frontend
- **Language**: HTML5 + CSS3 + Vanilla JavaScript
- **No frameworks**: Zero dependencies (lighter bundle)
- **Features**: Drag-and-drop, real-time updates, responsive design
- **Charts**: Native SVG visualization

### Infrastructure
- **Containerization**: Docker (Alpine-based)
- **Orchestration**: Docker Compose
- **Deployment**: HF Spaces, AWS, GCP, Azure
- **Storage**: Ephemeral (configurable)

---

## Data Flow πŸ“Š

### Upload Flow
```
User Upload
    ↓
Browser β†’ POST /api/upload
    ↓
Flask receive file β†’ Save to disk
    ↓
Queue async thread
    ↓
Return 200 OK (immediately)
    ↓
Background: Extract text
    ↓
Background: Chunk text
    ↓
Background: Build graph
    ↓
Background: Generate embeddings
    ↓
Frontend polls GET /api/documents
    ↓
Document shows "ready" status
    ↓
Graph image available
```

### Query Flow
```
User Query
    ↓
Browser β†’ POST /api/query
    ↓
Embed query text
    ↓
Calculate cosine similarity with chunks
    ↓
Select top 3 similar chunks
    ↓
Send to Groq API with context
    ↓
Groq generates answer
    ↓
Return to frontend
    ↓
Display in chat
```

---

## Development Workflow

### Local Development

```bash
# Setup
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt

# Run
export GROQ_API_KEY=your_key
python app.py

# Access
http://localhost:7860

# Debug
tail -f app.log
# or set FLASK_ENV=development for auto-reload
```

### Docker Development

```bash
# Build
docker build -t graph-rag .

# Run with logs
docker run -p 7860:7860 \
  -e GROQ_API_KEY=your_key \
  -v $(pwd)/data:/app/data \
  graph-rag

# Or use Compose
docker-compose up --build
```

### Testing

```bash
# See TESTING.md for detailed test cases
# Quick test: manual UI testing
# Run: navigate to http://localhost:7860
# Steps: upload β†’ visualize β†’ query
```

---

## Customization Points

### Easy Customizations

1. **Styling**: Edit `templates/index.html` CSS section (lines 15-300)
2. **Colors**: Change `#667eea` to your brand color (all occurrences)
3. **Title**: Change "Graph RAG Chatbot" in HTML title and headers
4. **Icons**: Replace emoji with SVG icons
5. **Fonts**: Add Google Fonts in `<head>`

### Moderate Customizations

1. **Chunk Size**: `app.py` line 66
2. **Embedding Model**: `app.py` line 27
3. **LLM Model**: `app.py` line 153
4. **Similarity Threshold**: `app.py` line 164
5. **Graph Layout**: `app.py` NetworkX spring_layout parameters

### Advanced Customizations

1. **Database**: Replace in-memory `documents_state` with PostgreSQL
2. **Vector Storage**: Add ChromaDB or Pinecone
3. **Authentication**: Add user login with Flask-Login
4. **Caching**: Add Redis for embedding cache
5. **Monitoring**: Add Prometheus metrics

---

## Deployment Targets

| Target | Path | Docs |
|---|---|---|
| Local | Direct Python | README.md |
| Local Docker | Docker | README.md |
| HF Spaces | Auto-deploy | space_config.md |
| AWS | ECR β†’ ECS | README.md |
| Azure | ACR β†’ App Service | README.md |
| GCP | Artifact Registry | README.md |
| DigitalOcean | App Platform | README.md |

---

## Performance Characteristics

### Startup
- Cold start: 30-60s (model download)
- Warm start: 2-3s (in-memory)
- Model size: ~400MB

### Upload Processing
- Small file (< 5MB): 5-10s
- Medium file (5-20MB): 15-30s
- Large file (20-50MB): 30-60s

### Query Response
- Embedding: 0.5-1s
- Similarity search: <0.1s
- LLM generation: 1-3s
- Total: 2-5s

### Concurrency
- Single-threaded requests: No
- Async upload: Yes (threading)
- Parallel documents: Yes (3+ simultaneous)

---

## Security Considerations

### API Security
- βœ… No API authentication (add if needed)
- βœ… CORS enabled (all origins)
- βœ… File size limit: 50MB
- βœ… Groq API key not exposed to frontend

### Data Security
- βœ… Files stored server-side only
- βœ… No sensitive data logging
- βœ… Uploaded files deleted on request
- ⚠️  No encryption at rest (add for sensitive data)

### Deployment Security
- βœ… Python 3.11-slim base (minimal OS)
- βœ… No root user in container
- βœ… .env not committed
- βœ… Health checks enabled

---

## Known Limitations

1. **Storage**: Ephemeral (HF Spaces free tier)
   - Solution: Upgrade to persistent storage

2. **Processing Speed**: Single machine
   - Solution: Use GPU tier or distributed processing

3. **Concurrency**: Threading (Python GIL)
   - Solution: Use Gunicorn with multiple workers

4. **Graph Complexity**: Limited to 500 nodes
   - Solution: Implement hierarchical graph layouts

5. **API Rate Limits**: Groq free tier 30req/min
   - Solution: Implement caching or upgrade plan

---

## Future Enhancements

- [ ] WebSocket for real-time updates
- [ ] Database backend (PostgreSQL + pgvector)
- [ ] Multi-user with authentication
- [ ] Advanced graph algorithms (pagerank, centrality)
- [ ] Export to PDF/HTML reports
- [ ] Multi-language support
- [ ] Fine-tuned embeddings model
- [ ] Conversation memory/history
- [ ] Advanced search (filters, facets)
- [ ] API documentation (Swagger/OpenAPI)

---

## File Ownership & Maintenance

| File | Created | Last Updated | Maintainer |
|---|---|---|---|
| app.py | Day 1 | Day 1 | You |
| index.html | Day 1 | Day 1 | You |
| Dockerfile | Day 1 | Day 1 | You |
| requirements.txt | Day 1 | Day 1 | You |
| README.md | Day 1 | Day 1 | You |

---

**Total Project Size**: ~5MB (including dependencies on first run: ~2GB)
**Source Code Size**: ~50KB (uncompressed)
**Docker Image Size**: ~2.5GB (uncompressed)
**Docker Image Size**: ~800MB (compressed)

---

**Last Updated**: June 27, 2024
**Version**: 1.0.0
**Status**: Production Ready βœ