File size: 41,733 Bytes
9c0b225 | 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 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 | # MAC β MBM AI Cloud: Complete Project Documentation
> A self-hosted AI inference platform that turns a single GPU-equipped PC into a private AI cloud for an entire college.
---
## Table of Contents
1. [What is MAC?](#1-what-is-mac)
2. [Why Does MAC Exist?](#2-why-does-mac-exist)
3. [How Does It Work? (Big Picture)](#3-how-does-it-work-big-picture)
4. [System Architecture (Deep Dive)](#4-system-architecture-deep-dive)
5. [The AI Models β What, Why, and How](#5-the-ai-models--what-why-and-how)
6. [Why vLLM?](#6-why-vllm)
7. [Smart Routing β Automatic Model Selection](#7-smart-routing--automatic-model-selection)
8. [Authentication and API Keys](#8-authentication-and-api-keys)
9. [Usage Tracking and Quotas](#9-usage-tracking-and-quotas)
10. [The Frontend Dashboard (PWA)](#10-the-frontend-dashboard-pwa)
11. [RAG β Knowledge Base Search](#11-rag--knowledge-base-search)
12. [Web Search Integration](#12-web-search-integration)
13. [Guardrails β Content Safety](#13-guardrails--content-safety)
14. [Infrastructure Services](#14-infrastructure-services)
15. [API Design Principles](#15-api-design-principles)
16. [Security Model](#16-security-model)
17. [Hardware Requirements and GPU Planning](#17-hardware-requirements-and-gpu-planning)
18. [Setup Guide β Step by Step](#18-setup-guide--step-by-step)
19. [How Students Use MAC](#19-how-students-use-mac)
20. [How Admins Manage MAC](#20-how-admins-manage-mac)
21. [Troubleshooting](#21-troubleshooting)
22. [Project File Map](#22-project-file-map)
23. [Technology Choices Explained](#23-technology-choices-explained)
---
## 1. What is MAC?
**MAC** stands for **MBM AI Cloud**. It is a complete AI platform that runs on a local server inside a college. Think of it as your own private ChatGPT β but you own the hardware, the data stays on campus, and there are no per-token API charges.
MAC takes a PC with a decent GPU, loads open-source language models onto it, and exposes them through a clean API that is **100% compatible with the OpenAI SDK**. This means any tool, library, or application that works with OpenAI's API can work with MAC β just change the base URL.
The platform includes:
- **Multiple AI models** running simultaneously, each specializing in different tasks
- **A web dashboard** where students log in and chat directly
- **API keys** so students can use the AI from their own code, Jupyter notebooks, or apps
- **Usage tracking** so admins know who is using what and how much
- **Rate limiting and quotas** to ensure fair use across all students
- **Content guardrails** to keep responses appropriate
- **RAG (knowledge base)** to let the AI answer questions from uploaded documents
- **Web search** so the AI can fetch and reason over live internet data
---
## 2. Why Does MAC Exist?
### The Problem
College students need access to AI for coursework, projects, research, and learning. But:
1. **Cloud APIs are expensive.** OpenAI charges per token. A class of 60 students doing assignments quickly runs up a bill.
2. **Free tiers are limited.** ChatGPT Free has message caps, no API, and can't be integrated into projects.
3. **Data privacy matters.** Research data, student work, and college documents shouldn't be sent to third-party cloud servers.
4. **Internet dependency.** Many Indian colleges have unreliable internet. A local server works even when the internet is down.
### The Solution
MAC puts the AI on a server that sits physically in the college lab. The models run directly on the server's GPU. Students connect over the campus network (or LAN). No internet required for inference, no per-token billing, and all data stays on campus.
### The Economics
- A single RTX 4090 GPU (βΉ1.5-2L) can serve 30-50 concurrent students running 7B-14B models
- The same usage via OpenAI's API would cost βΉ50K-1L per month
- MAC pays for itself in 2-3 months, then runs at zero marginal cost
---
## 3. How Does It Work? (Big Picture)
Here's what happens when a student sends a message:
```
Student types "Write a Python function for binary search"
β
βΌ
Browser β Nginx (port 80) β MAC API (port 8000)
β
βΌ
MAC checks: Is the student authenticated? β Yes (JWT token valid)
MAC checks: Has the student exceeded their quota? β No
MAC checks: Does the message violate guardrails? β No
β
βΌ
Smart Router analyzes the message:
"Python function" β code keywords detected β Route to Code Model
β
βΌ
MAC sends request to vLLM Code Server (port 8002)
β Qwen2.5-Coder-7B-Instruct processes the prompt on the GPU
β Generates response tokens
β
βΌ
Response streams back: MAC API β Nginx β Browser
β
βΌ
MAC logs: user=21CS045, model=qwen2.5-coder:7b, tokens=342, latency=1.2s
β
βΌ
Student sees the response in the chat UI (streamed in real-time)
```
That's the full flow. Every request follows this path. The smart router, authentication, quota checks, and logging all happen in milliseconds before the actual AI inference begins.
---
## 4. System Architecture (Deep Dive)
MAC is a **microservices architecture** β each component runs as a separate Docker container, communicating over an internal Docker network.
### The Components
#### Nginx (Port 80)
The single entry point. All traffic goes through Nginx. It does two things:
- Serves the **frontend dashboard** (static HTML/CSS/JS files) directly
- **Reverse-proxies** all `/api/*` requests to the MAC API backend
This means students only need to know one URL: `http://server-ip`. Nginx figures out what goes where.
#### MAC API (Port 8000)
The brain of the platform. Written in Python using **FastAPI**. This is where all the business logic lives:
- **11 routers** handling different API areas (auth, query, models, keys, usage, quota, guardrails, rag, search, explore, integration)
- **7 services** containing the core logic (auth, LLM, model management, usage tracking, guardrails, RAG, search)
- **Middleware** for JWT authentication and rate limiting
- **Database models** for users, usage logs, quotas, guardrail rules, RAG documents
The API runs with **4 Uvicorn workers** (async Python HTTP server) for concurrent request handling.
#### vLLM Servers (Ports 8001-8004)
Each AI model gets its own vLLM server process. vLLM exposes an **OpenAI-compatible API**, so MAC talks to it using the exact same format as the OpenAI API.
Why separate instances? Because:
- Each model needs its own dedicated GPU memory
- If one model crashes, the others keep running
- You can restart or swap individual models without downtime
#### PostgreSQL (Port 5432)
The relational database. Stores:
- **Users** β roll number, email, hashed password, role
- **Usage logs** β every API request with model, tokens, latency
- **Refresh tokens** β for JWT session management
- **Quota overrides** β custom limits per user
- **Guardrail rules** β content moderation configuration
- **RAG documents** β metadata for uploaded knowledge base files
#### Redis (Port 6379)
An in-memory key-value store used for:
- **Rate limiting** β tracking requests per user per hour
- **Token counting** β tracking daily token consumption per user
- **Caching** β search results, model health status
#### Qdrant (Port 6333)
A vector database used for **RAG** (Retrieval-Augmented Generation). When documents are uploaded, they're split into chunks, converted to embeddings (vector representations), and stored in Qdrant. When a user asks a question, Qdrant finds the most relevant chunks to include as context for the AI.
#### SearXNG (Port 8888)
A self-hosted meta search engine. When a user requests a "grounded" answer, MAC:
1. Searches the web via SearXNG
2. Extracts relevant content from the results
3. Feeds that content to the AI as context
4. The AI generates an answer backed by real web sources
---
## 5. The AI Models β What, Why, and How
### Model Selection Philosophy
Not all AI tasks are equal. A student asking "What is a linked list?" needs a fast answer. A student asking "Prove that the sum of the first n squares equals n(n+1)(2n+1)/6" needs deep reasoning. A student asking "Debug this 200-line Python script" needs code expertise.
MAC solves this by running **specialized models** for different task categories:
### The Four Tiers
#### 1. Speed Tier β Qwen2.5-7B-Instruct
- **Purpose:** Fast general-purpose responses
- **Good at:** Q&A, summarization, general chat, simple explanations
- **Parameters:** 7 billion
- **GPU VRAM:** ~5 GB
- **Response speed:** Fastest (high tokens/second due to small size)
- **Why this model:** Qwen2.5 from Alibaba ranks near the top of the 7B model benchmarks. It's fast enough for real-time chat and smart enough for most daily questions.
#### 2. Code Tier β Qwen2.5-Coder-7B-Instruct
- **Purpose:** Code generation, debugging, explanation
- **Good at:** Writing functions, fixing bugs, explaining code, generating tests
- **Parameters:** 7 billion
- **GPU VRAM:** ~5 GB
- **Response speed:** Fast (same architecture as speed tier)
- **Why this model:** Specifically fine-tuned on code data. It understands Python, JavaScript, Java, C++, SQL, and 50+ languages far better than a general model of the same size.
#### 3. Reasoning Tier β DeepSeek-R1-Distill-Qwen-14B
- **Purpose:** Step-by-step logical reasoning and mathematics
- **Good at:** Proofs, equations, calculus, physics problems, multi-step logic
- **Parameters:** 14 billion
- **GPU VRAM:** ~9 GB
- **Response speed:** Moderate (larger model, more compute per token)
- **Why this model:** DeepSeek-R1 pioneered "chain-of-thought" reasoning in open-source models. The 14B distilled version retains most of R1's reasoning ability while fitting on consumer GPUs.
#### 4. Intelligence Tier β Gemma-3-27B-IT (Optional)
- **Purpose:** Complex analysis, creative writing, research assistance
- **Good at:** Essays, comparisons, in-depth explanations, nuanced understanding
- **Parameters:** 27 billion
- **GPU VRAM:** ~18 GB
- **Response speed:** Slower (largest model)
- **Requirement:** 48GB+ GPU (this model is disabled by default on 24GB GPUs)
- **Why this model:** Google's Gemma 3 is one of the highest-quality open-source models available. The 27B variant approaches the quality of much larger closed models.
### How Models Are Served
Each model runs as a **separate vLLM Docker container**. vLLM loads the model weights into GPU memory at startup and keeps them there. When a request comes in, vLLM:
1. Tokenizes the input (converts text to numbers the model understands)
2. Runs forward passes through the neural network on the GPU
3. Generates output tokens one at a time (or in batches)
4. Streams the response back
The model weights are downloaded from **HuggingFace Hub** on first startup and cached in a shared Docker volume (`hf-cache`). This means:
- First startup: 10-15 minutes (downloads ~15GB of model weights)
- Every subsequent startup: Instant (reads from cache)
---
## 6. Why vLLM?
When serving language models, the serving engine matters enormously. Here's why vLLM was chosen over alternatives:
### vLLM vs. Ollama
| Feature | vLLM | Ollama |
|---------|------|--------|
| **Concurrent users** | Excellent (continuous batching) | Poor (sequential processing) |
| **Memory efficiency** | PagedAttention (2-4x better) | Standard KV-cache |
| **Throughput (tokens/sec)** | Very high | Moderate |
| **GPU memory control** | Precise (`--gpu-memory-utilization`) | Automatic, less control |
| **OpenAI API compatibility** | Native | Partial |
| **Multi-model on one GPU** | Yes (with memory splitting) | Difficult |
| **Production readiness** | Enterprise-grade | Developer tool |
### vLLM vs. Raw HuggingFace Transformers
| Feature | vLLM | HuggingFace |
|---------|------|-------------|
| **Serving overhead** | Minimal (built for serving) | High (built for research) |
| **Batching** | Automatic continuous batching | Manual |
| **Memory optimization** | PagedAttention, prefix caching | None by default |
| **API server** | Built-in OpenAI-compatible | Must build your own |
### Key vLLM Technologies
- **PagedAttention:** Instead of allocating a contiguous block of GPU memory for each request's KV-cache (wasteful), vLLM uses a paged approach (like virtual memory in operating systems). This allows up to 24x more concurrent requests.
- **Continuous Batching:** Traditional serving processes requests one batch at a time. vLLM dynamically adds new requests to the running batch without waiting for all previous requests to finish. This means near-zero wait time.
- **Prefix Caching:** If multiple requests start with the same system prompt, vLLM reuses the computed KV-cache instead of recomputing it.
---
## 7. Smart Routing β Automatic Model Selection
When a student sends `"auto"` as the model (or uses the default), MAC's **smart router** reads the prompt and decides which model to use.
### How It Works
The router scans the user's message for keywords in three categories:
**Code keywords** (25+ words):
`code`, `function`, `bug`, `debug`, `python`, `javascript`, `class`, `api`, `algorithm`, `programming`, `html`, `css`, `sql`, `git`, `docker`, `def `, `import `, `print(`...
**Math keywords** (20+ words):
`math`, `equation`, `calculate`, `prove`, `integral`, `derivative`, `theorem`, `matrix`, `algebra`, `calculus`, `probability`, `statistics`, `solve`...
**Intelligence keywords** (20+ words):
`explain`, `analyze`, `research`, `essay`, `write`, `creative`, `story`, `compare`, `evaluate`, `summarize`, `thesis`, `report`, `comprehensive`...
### Routing Logic
```
1. Count how many code keywords appear β code_score
2. Count how many math keywords appear β math_score
3. Count how many intel keywords appear β intel_score
4. If math_score > code_score AND math_score >= 2 β DeepSeek-R1 (reasoning)
5. If code_score >= 1 β Qwen2.5-Coder (code)
6. If intel_score >= 2 β Gemma-3 (intelligence)
7. Otherwise β Qwen2.5 (speed β general)
```
### Examples
| Student Message | Routed To | Reason |
|---|---|---|
| "Write a Python function for binary search" | Qwen2.5-Coder | "python" + "function" β code |
| "Prove that β2 is irrational using calculus" | DeepSeek-R1 | "prove" + "calculus" β math (score 2) |
| "Write a comprehensive essay comparing democracy vs communism" | Gemma-3 | "comprehensive" + "essay" + "compare" β intel (score 3) |
| "What is the capital of France?" | Qwen2.5 | No category matches β fast general |
Students can bypass smart routing by specifying a model ID directly: `"model": "deepseek-r1:14b"`.
---
## 8. Authentication and API Keys
MAC uses a dual authentication system:
### 1. JWT Tokens (Session-Based)
Used for the **web dashboard**:
- Student logs in with roll number + date of birth (first time) or roll number + password (after setting one)
- Server returns an **access token** (valid 24 hours) and a **refresh token** (valid 30 days)
- Every API request includes the access token in the `Authorization: Bearer <token>` header
- When the access token expires, the frontend silently uses the refresh token to get a new one
### 2. API Keys (Persistent)
Used for **programmatic access**:
- Students generate an API key from the dashboard or via `POST /api/v1/keys/generate`
- The key looks like: `mac_7a3b9c2d...` (32-character hex string)
- It can be used anywhere β Python scripts, Jupyter notebooks, curl, VSCode extensions, mobile apps
- The key doesn't expire (unless revoked), so students don't need to re-authenticate
- All usage is tracked per key: which model, how many tokens, when
### How API Keys Are Tracked
Every request made with an API key is logged:
```json
{
"user": "21CS045",
"api_key": "mac_7a3b...",
"model": "qwen2.5-coder:7b",
"prompt_tokens": 45,
"completion_tokens": 287,
"total_tokens": 332,
"latency_ms": 1200,
"timestamp": "2025-04-15T10:30:00Z"
}
```
Admins can see:
- Total usage per student
- Which models each student uses most
- Usage over time (daily/hourly patterns)
- Who is exceeding their quotas
---
## 9. Usage Tracking and Quotas
### Why Quotas?
GPU time is a shared resource. Without limits, one student running a script in a loop could consume all available compute, leaving nothing for others.
### Default Limits
| Role | Requests per Hour | Tokens per Day |
|------|------------------|---------------|
| Student | 100 | 50,000 |
| Faculty | 300 | 200,000 |
| Admin | Unlimited | Unlimited |
### How It Works
1. **Request-level:** Every request to `/query/*` endpoints is counted. Redis stores a counter per user with a 1-hour TTL.
2. **Token-level:** After each response, the total tokens (prompt + completion) are added to a daily counter in Redis.
3. **Headers:** Every response includes `X-RateLimit-Remaining` and `X-TokenLimit-Remaining` so the client always knows how much quota is left.
4. **Rejection:** When limits are exceeded, the API returns `429 Too Many Requests` with details on when the limit resets.
### Custom Overrides
Admins can set per-user overrides. For example, a student working on a research project might get 200,000 tokens/day instead of the default 50,000:
```
PUT /api/v1/quota/admin/user/21CS045
{
"requests_per_hour": 200,
"tokens_per_day": 200000
}
```
---
## 10. The Frontend Dashboard (PWA)
The dashboard is a **Progressive Web App** built with vanilla JavaScript, HTML, and CSS. No React, no Vue, no build tools β just files served directly by Nginx.
### Features
**For Students:**
- **Chat interface** β Send messages, choose models (or use auto), see streaming responses
- **Stat cards** β Total requests, tokens used, active models, days active
- **Activity heatmap** β GitHub-style 26-week grid showing daily usage intensity
- **Model distribution doughnut** β Which models you use most
- **Hourly usage chart** β Gradient area chart showing activity by hour
- **Quota rings** β Visual progress indicators for request and token limits
- **Activity table** β Recent requests with model, tokens, and timestamp
**For Admins:**
- **User management** β View all users, their roles, and usage
- **Model management** β Monitor model health, load/unload
- **Quota management** β Set limits, view who's exceeding quotas
- **API key management** β View all keys, revoke misbehaving ones
- **System health** β infrastructure status, uptime
### Why a PWA?
- Works on any device β desktop, laptop, phone, tablet
- Can be installed to the home screen (looks like a native app)
- Works offline for cached resources (service worker)
- No app store approval needed
- Instant updates (just refresh)
### Interactive Particle Background
The login screen features an animated canvas background with floating particles that form "MAC" and "MBM" text. The particles have physics-based hover interaction β they disperse when the cursor approaches and rejoin when it moves away.
---
## 11. RAG β Knowledge Base Search
**RAG** stands for **Retrieval-Augmented Generation**. It lets the AI answer questions based on specific documents you upload β like textbooks, research papers, or lecture notes.
### How It Works
1. **Upload:** A user uploads a document (PDF, TXT, etc.) via the API or dashboard
2. **Chunking:** MAC splits the document into small overlapping chunks (~500 tokens each)
3. **Embedding:** Each chunk is converted to a vector (a list of numbers that captures its meaning) using an embedding model
4. **Storage:** The vectors are stored in Qdrant alongside the original text
5. **Query:** When a user asks a question:
- The question is also converted to a vector
- Qdrant finds the most similar document chunks (nearest neighbors in vector space)
- Those chunks are prepended to the AI prompt as context
- The AI generates an answer grounded in the retrieved documents
### Example
A professor uploads the "Data Structures" textbook. A student asks:
> "Explain how AVL trees maintain balance after insertion"
Without RAG: The AI gives a general answer from its training data.
With RAG: The AI finds the relevant textbook section about AVL rotations and gives a specific answer that matches the course material.
---
## 12. Web Search Integration
MAC includes **SearXNG**, a self-hosted meta search engine. This enables three search features:
### Web Search
```
POST /api/v1/search/web
{"query": "latest Python 3.13 features"}
```
Returns top search results from multiple engines (Google, Bing, DuckDuckGo, etc.) without sending user data to any single search engine.
### Wikipedia Search
```
POST /api/v1/search/wikipedia
{"query": "PagedAttention mechanism"}
```
Searches Wikipedia specifically and returns relevant article summaries.
### Grounded Search
```
POST /api/v1/search/grounded
{"query": "What are the new features in CUDA 12.4?"}
```
This is the most powerful: MAC searches the web, extracts content from top results, feeds it to the AI as context, and returns an answer that cites real sources. The AI doesn't hallucinate because it's working from actual web pages.
---
## 13. Guardrails β Content Safety
MAC has a content moderation layer to keep AI interactions appropriate:
### Input Guardrails
Before a prompt reaches the AI, it's checked for:
- Blocked keywords or phrases
- Prompt injection attempts
- Requests to generate harmful content
### Output Guardrails
After the AI generates a response, it's checked for:
- Personal Identifiable Information (PII) leakage
- Inappropriate content
- Safety violations
### Configuration
Admins configure guardrail rules via the API:
```
PUT /api/v1/guardrails/rules
{
"blocked_categories": ["violence", "malware"],
"custom_blocked_phrases": ["how to hack", "generate exploit"],
"pii_detection": true
}
```
---
## 14. Infrastructure Services
### PostgreSQL 16
- **Role:** Primary data store for all structured data
- **Stored data:** Users, usage logs, tokens, quotas, guardrail rules, RAG metadata
- **Why PostgreSQL:** Robust, ACID-compliant, handles concurrent writes from multiple API workers, excellent query performance, widely supported
### Redis 7
- **Role:** In-memory data store for rate limiting and caching
- **How rate limiting works:** Each user has a Redis key `ratelimit:user_id` with a counter and TTL. Incremented on each request. When it exceeds the limit, requests are rejected.
- **Why Redis:** Sub-millisecond read/write, perfect for checking rate limits on every request without adding latency
### Nginx
- **Role:** Reverse proxy and static file server
- **Why Nginx:** Extremely fast at serving static files (the frontend), handles thousands of concurrent connections, provides rate limiting at the network level (10 req/sec per IP), supports SSE streaming for chat responses
### Docker Compose
- **Role:** Orchestrates all services into a single `docker compose up` command
- **Why Docker:** Guarantees identical environments everywhere, isolates services, makes updates easy (`docker compose pull && docker compose up -d`)
---
## 15. API Design Principles
MAC's API follows specific design principles:
1. **OpenAI-compatible:** The `/query/chat` endpoint accepts the exact same request format as OpenAI's API. Any code that works with `openai` Python package works with MAC.
2. **RESTful:** Resources are nouns (`/models`, `/keys`, `/usage`), actions are HTTP verbs (`GET` = read, `POST` = create, `PUT` = update, `DELETE` = remove).
3. **Versioned:** All endpoints are under `/api/v1/` so the API can evolve without breaking existing clients.
4. **Streaming:** Chat responses are streamed via **Server-Sent Events (SSE)**. Tokens appear one by one in real-time, just like ChatGPT. This is critical for user experience β waiting 10 seconds for a complete response feels slow; seeing tokens appear instantly feels fast.
5. **Self-documenting:** FastAPI auto-generates interactive Swagger docs at `/docs` and ReDoc at `/redoc`. Every endpoint, parameter, and response type is documented.
---
## 16. Security Model
### Authentication Chain
```
Request arrives
β
ββ Has "Authorization: Bearer <JWT>" header?
β ββ Yes β Validate JWT signature and expiry β Proceed
β
ββ Has "Authorization: Bearer mac_<key>" header?
β ββ Yes β Look up API key in database β Proceed
β
ββ Neither β Return 401 Unauthorized
```
### Password Security
- Passwords are hashed with **bcrypt** (cost factor 12) before storage
- Raw passwords are never stored or logged
- JWT tokens are signed with **HS256** using a secret key from the environment
### Rate Limiting (Two Layers)
1. **Nginx layer:** 10 requests/second per IP address (prevents DDoS)
2. **Application layer:** Per-user limits with Redis (prevents quota abuse)
### Access Control (Three Roles)
| Role | Can Do |
|------|--------|
| **Student** | Chat, view own usage, manage own API key |
| **Faculty** | Same as student + higher limits |
| **Admin** | Everything: manage users, quotas, models, guardrails, view all usage |
---
## 17. Hardware Requirements and GPU Planning
### Minimum Requirements (3 models: speed + code + reasoning)
- **GPU:** NVIDIA GPU with 24GB VRAM (RTX 3090, RTX 4090, A5000)
- **CPU:** 8 cores / 16 threads
- **RAM:** 32 GB
- **Storage:** 100 GB SSD (for model weights and database)
- **Network:** Gigabit Ethernet (for serving multiple students)
- **OS:** Ubuntu 22.04 or Windows 11 with WSL2
### Recommended (4 models including Gemma-3-27B)
- **GPU:** 48GB+ VRAM (A6000, 2Γ RTX 3090, A100)
- **CPU:** 16 cores
- **RAM:** 64 GB
- **Storage:** 200 GB NVMe SSD
### How GPU Memory is Shared
vLLM's `--gpu-memory-utilization` flag controls how much GPU memory each model can use:
```
24 GB GPU:
βββ vLLM Speed (Qwen2.5-7B): 0.22 Γ 24 = 5.3 GB
βββ vLLM Code (Coder-7B): 0.22 Γ 24 = 5.3 GB
βββ vLLM Reasoning (R1-14B): 0.35 Γ 24 = 8.4 GB
βββ Free for CUDA overhead: ~5.0 GB
```
Each vLLM instance reserves its memory at startup. They don't interfere with each other.
### Scaling for More Students
| Students | GPU Recommendation |
|----------|-------------------|
| 1-20 | Single RTX 4090 (24GB) |
| 20-50 | A6000 (48GB) or 2Γ RTX 4090 |
| 50-100 | A100 (80GB) or multiple GPUs with tensor parallelism |
| 100+ | Multiple servers with MAC's worker integration |
---
## 18. Setup Guide β Step by Step
### Option A: Docker (Recommended)
This is the fastest way. Docker handles everything β database, cache, models, proxy.
**Step 1: Install Docker and NVIDIA Container Toolkit**
For Ubuntu:
```bash
# Docker
curl -fsSL https://get.docker.com | sh
sudo usermod -aG docker $USER
# NVIDIA Container Toolkit
curl -fsSL https://nvidia.github.io/libnvidia-container/gpgkey | sudo gpg --dearmor -o /usr/share/keyrings/nvidia-container-toolkit-keyring.gpg
curl -s -L https://nvidia.github.io/libnvidia-container/stable/deb/nvidia-container-toolkit.list | \
sed 's#deb https://#deb [signed-by=/usr/share/keyrings/nvidia-container-toolkit-keyring.gpg] https://#g' | \
sudo tee /etc/apt/sources.list.d/nvidia-container-toolkit.list
sudo apt-get update
sudo apt-get install -y nvidia-container-toolkit
sudo nvidia-ctk runtime configure --runtime=docker
sudo systemctl restart docker
```
For Windows:
- Install Docker Desktop with WSL2 backend
- In WSL2: Install NVIDIA Container Toolkit (same commands as Ubuntu)
**Step 2: Clone and Configure**
```bash
git clone https://github.com/23f2003700/mac.git
cd mac
cp .env.example .env
```
Edit `.env`:
- Change `JWT_SECRET_KEY` to a random string
- Change `MAC_SECRET_KEY` to a different random string
- Everything else can stay default for local use
**Step 3: Start**
```bash
docker compose up -d
```
Watch the logs to see models downloading:
```bash
docker compose logs -f vllm-speed # Watch Qwen2.5-7B downloading
docker compose logs -f vllm-code # Watch Qwen2.5-Coder downloading
docker compose logs -f vllm-reason # Watch DeepSeek-R1 downloading
```
When you see `Uvicorn running on http://0.0.0.0:800X` in each log, the models are ready.
**Step 4: Access**
- Dashboard: `http://localhost` (or `http://server-ip` from other machines)
- API Docs: `http://localhost/docs`
- Health: `http://localhost/api/v1/explore/health`
### Option B: Manual (No Docker)
See the [Manual Setup](../README.md#manual-setup-no-docker) section in the README.
---
## 19. How Students Use MAC
### Using the Dashboard
1. Open `http://server-ip` in a browser
2. Log in with your roll number and password
3. Type a message in the chat box
4. The AI responds in real-time (streaming)
5. Choose a model from the dropdown, or leave it on "auto"
6. View your usage stats on the dashboard
### Using the API Key (for projects and scripts)
1. Log in to the dashboard
2. Go to Settings β Generate API Key
3. Copy the key (e.g., `mac_7a3b9c2d...`)
4. Use it in your code:
**Python:**
```python
from openai import OpenAI
client = OpenAI(
base_url="http://server-ip/api/v1/query",
api_key="mac_7a3b9c2d..."
)
response = client.chat.completions.create(
model="auto",
messages=[{"role": "user", "content": "Explain quicksort"}]
)
print(response.choices[0].message.content)
```
**curl:**
```bash
curl http://server-ip/api/v1/query/chat \
-H "Authorization: Bearer mac_7a3b9c2d..." \
-H "Content-Type: application/json" \
-d '{"model": "auto", "messages": [{"role": "user", "content": "Hello"}]}'
```
**JavaScript:**
```javascript
const response = await fetch('http://server-ip/api/v1/query/chat', {
method: 'POST',
headers: {
'Authorization': 'Bearer mac_7a3b9c2d...',
'Content-Type': 'application/json'
},
body: JSON.stringify({
model: 'auto',
messages: [{ role: 'user', content: 'Hello' }]
})
});
const data = await response.json();
console.log(data.choices[0].message.content);
```
The API key works from anywhere on the campus network β laptops, phones, lab computers. Usage is tracked to your account regardless of the device.
---
## 20. How Admins Manage MAC
### Dashboard Admin Panel
Login as admin to access the admin tabs:
- **Users** β See all registered users, their roles, last active time
- **Models** β Check which models are online/offline, view health metrics
- **Quotas** β See who's approaching or exceeding limits, set overrides
- **Keys** β View all API keys, revoke any that are being misused
- **System** β Overall health, uptime, resource usage
### Common Admin Tasks
**Add a new student:**
Students are created on first login (verify with roll number + DOB). Admins can also create bulk accounts.
**Increase a student's quota:**
```bash
curl -X PUT http://localhost/api/v1/quota/admin/user/21CS045 \
-H "Authorization: Bearer ADMIN_TOKEN" \
-H "Content-Type: application/json" \
-d '{"requests_per_hour": 200, "tokens_per_day": 200000}'
```
**Check which model is most used:**
```bash
curl http://localhost/api/v1/usage/admin/models \
-H "Authorization: Bearer ADMIN_TOKEN"
```
**Revoke a misbehaving API key:**
```bash
curl -X POST http://localhost/api/v1/keys/admin/revoke \
-H "Authorization: Bearer ADMIN_TOKEN" \
-H "Content-Type: application/json" \
-d '{"roll_number": "21CS045"}'
```
### Server Maintenance
**Update models:**
Edit `docker-compose.yml` to change model names/versions, then:
```bash
docker compose up -d --build
```
**View logs:**
```bash
docker compose logs -f mac # API logs
docker compose logs -f vllm-speed # Speed model logs
docker compose logs -f postgres # Database logs
```
**Backup the database:**
```bash
docker exec mac-postgres pg_dump -U mac mac_db > backup.sql
```
**Restore from backup:**
```bash
docker exec -i mac-postgres psql -U mac mac_db < backup.sql
```
---
## 21. Troubleshooting
### vLLM Won't Start
**Symptom:** `docker compose logs vllm-speed` shows CUDA errors.
**Causes:**
1. NVIDIA driver not installed β `nvidia-smi` should show GPU info
2. NVIDIA Container Toolkit not installed β `docker run --gpus all nvidia/cuda:12.0-base nvidia-smi` should work
3. Not enough GPU memory β Reduce `--gpu-memory-utilization` values in `docker-compose.yml`
### MAC API Shows "Model Unavailable"
**Symptom:** Chat returns "vLLM returned 502" or connection refused.
**Cause:** The vLLM instance for that model isn't running or hasn't finished starting up.
**Fix:**
1. Check if the vLLM container is running: `docker compose ps`
2. Check its logs: `docker compose logs vllm-speed`
3. Wait for model download to finish (first startup only)
### Slow Responses
**Cause:** GPU is at capacity with too many concurrent requests.
**Fix:**
- Reduce `--max-model-len` (uses less GPU memory per request, allowing more concurrent requests)
- Remove a model to free GPU memory
- Upgrade to a larger GPU
### Out of Memory (OOM)
**Symptom:** vLLM crashes with CUDA OOM error.
**Fix:**
1. Reduce `--gpu-memory-utilization` for each vLLM instance
2. Reduce `--max-model-len` (most impactful)
3. Remove a model to free memory
4. Restart: `docker compose restart vllm-speed`
### Frontend Not Loading
**Cause:** Nginx isn't running or can't find the frontend files.
**Fix:**
```bash
docker compose restart nginx
docker compose logs nginx
```
### Database Connection Failed
**Cause:** PostgreSQL isn't ready when MAC starts.
**Fix:** The Docker Compose configuration includes health checks that prevent MAC from starting before PostgreSQL is ready. If it still fails:
```bash
docker compose restart mac
```
---
## 22. Project File Map
```
mac/ β Python backend package
βββ __init__.py
βββ main.py β FastAPI app, startup events, DB init, user seeding
βββ config.py β Pydantic settings loaded from .env
βββ database.py β SQLAlchemy async engine and session factory
βββ models/ β Database table definitions (SQLAlchemy ORM)
β βββ user.py β User, RefreshToken, UsageLog tables
β βββ guardrail.py β GuardrailRule table
β βββ quota.py β QuotaOverride table
β βββ rag.py β RAGCollection, RAGDocument tables
βββ schemas/ β Pydantic request/response schemas (11 files)
β βββ auth.py β Login, token, password change schemas
β βββ chat.py β Chat completion request/response
β βββ explore.py β Model listing, health schemas
β βββ ... β (one per router)
βββ routers/ β API endpoint handlers (11 files)
β βββ auth.py β /auth/* endpoints
β βββ query.py β /query/* (chat, completions, embeddings)
β βββ models.py β /models/* (health, load/unload)
β βββ keys.py β /keys/* (generate, revoke, stats)
β βββ usage.py β /usage/* (personal + admin stats)
β βββ quota.py β /quota/* (limits, overrides)
β βββ guardrails.py β /guardrails/* (content moderation)
β βββ rag.py β /rag/* (document upload, search)
β βββ search.py β /search/* (web, wikipedia, grounded)
β βββ explore.py β /explore/* (public model list, health)
β βββ integration.py β /integration/* (routing rules, workers)
βββ services/ β Business logic (7 files)
β βββ llm_service.py β β
Core: model registry, smart routing, vLLM proxy
β βββ auth_service.py β Login verification, JWT creation, password management
β βββ usage_service.py β Log requests, aggregate stats, admin reports
β βββ model_service.py β Model health checks, warmup, management
β βββ guardrail_service.py β Input/output content filtering
β βββ rag_service.py β Document ingestion, chunking, vector search
β βββ search_service.py β Web search, Wikipedia, grounded answers
βββ middleware/ β Request interceptors
β βββ auth_middleware.py β JWT/API-key validation on every request
β βββ rate_limit.py β Redis-based rate limiting
βββ utils/
βββ security.py β Password hashing, JWT encode/decode, request IDs
frontend/ β PWA dashboard (served by Nginx)
βββ index.html β Single-page app shell
βββ app.js β Full application (login, chat, dashboard, admin)
βββ style.css β Responsive styles, particle background
βββ manifest.json β PWA manifest (name, icons, theme)
βββ sw.js β Service worker for caching
nginx/
βββ nginx.conf β Reverse proxy rules, rate limiting, static serving
tests/ β Pytest test suite
βββ conftest.py β Shared fixtures (test client, auth helpers)
βββ test_auth.py β Authentication tests
βββ test_query.py β Chat completion and routing tests
βββ test_models.py β Model management tests
βββ test_keys.py β API key tests
βββ test_usage.py β Usage tracking tests
βββ test_quota.py β Quota enforcement tests
βββ test_guardrails.py β Content moderation tests
βββ test_rag.py β RAG pipeline tests
βββ test_search.py β Search integration tests
βββ test_explore.py β Public API tests
βββ test_integration.py β Worker/routing tests
docker-compose.yml β Full-stack orchestration (all services)
Dockerfile β MAC API container build
requirements.txt β Python dependencies
alembic.ini β Database migration config
alembic/ β Migration scripts directory
```
---
## 23. Technology Choices Explained
### Why FastAPI (and not Flask or Django)?
| Factor | FastAPI | Flask | Django |
|--------|---------|-------|--------|
| **Async support** | Native (built on ASGI) | Bolt-on | Bolt-on |
| **Speed** | One of the fastest Python frameworks | Moderate | Slower |
| **Auto-docs** | Built-in Swagger + ReDoc | Manual | Manual |
| **Type checking** | First-class Pydantic integration | None | Basic |
| **Learning curve** | Low | Low | High |
| **Streaming** | Native SSE support | Difficult | Difficult |
For an AI proxy that needs async HTTP, streaming responses, and auto docs, FastAPI is the clear choice.
### Why PostgreSQL (and not SQLite or MySQL)?
- **Concurrent writes** β Multiple API workers writing usage logs simultaneously. SQLite locks on writes.
- **JSONB support** β For storing flexible metadata (guardrail rules, model configs)
- **Robust** β Battle-tested, handles millions of rows, excellent query optimizer
- **Production standard** β Same DB in development and production means no surprises
(SQLite is still supported for quick dev/testing via `aiosqlite`.)
### Why Redis?
Rate limiting needs sub-millisecond reads on every single request. A database query would add 1-5ms per request. Redis returns in <0.1ms because data is in memory.
### Why Docker Compose?
Starting MAC manually would mean:
1. Start PostgreSQL server
2. Start Redis server
3. Start 3 vLLM instances
4. Start Qdrant
5. Start SearXNG
6. Start Nginx
7. Start the MAC API
With Docker Compose: `docker compose up -d`. One command. Done.
### Why Nginx (and not serving from FastAPI directly)?
- **Static files** β Nginx serves HTML/CSS/JS at wire speed. FastAPI would waste Python CPU cycles on static files.
- **Reverse proxy** β Nginx cleanly separates "frontend at /" and "API at /api/"
- **Rate limiting** β Network-level protection before requests even reach Python
- **Buffering** β Handles slow clients without tying up FastAPI workers
- **Production standard** β Used by Netflix, Airbnb, and millions of other applications
### Why Vanilla JS (and not React/Vue)?
The entire frontend is ~3 files (HTML + JS + CSS). Adding React would mean:
- A build step (npm, webpack/vite)
- 100+ npm dependencies
- 10x more code for the same functionality
- A separate dev server during development
For a dashboard with chat + charts + admin panel, vanilla JS with Chart.js is simpler, faster to load, and has zero build complexity.
---
*MAC β Built at MBM, for MBM.*
|