| --- |
| title: Irminsul |
| colorFrom: green |
| colorTo: green |
| sdk: docker |
| pinned: false |
| --- |
| |
| <div align="center"> |
|
|
| <img src="docs/assets/banner.png" alt="Irminsul Banner" width="100%"> |
| <!-- PLACEHOLDER: Add a banner image. Can be a dark-themed graphic with the Irminsul logo/name. |
| Recommended: 1280x320px, dark green/forest aesthetic matching the UI. |
| Tools: Figma, Canva, or even a screenshot of the UI works. --> |
| |
| # Irminsul |
|
|
| **A production-shaped LLMOps stack β QLoRA fine-tuning on Colab, RAG pipeline, containerized serving, and cloud deployment.** |
|
|
| [](https://huggingface.co/spaces/MukulRay/Irminsul) |
| [](https://github.com/MukulRay1603/Irminsul) |
| [](https://github.com/MukulRay1603/irminsul-corpus) |
| [](LICENSE) |
|
|
| </div> |
|
|
| --- |
|
|
| Most LLM projects stop at inference. This one builds the full stack: a QLoRA fine-tuned Llama 3.1 8B served through a RAG pipeline, with guardrails, a domain-specific knowledge base, and a containerized FastAPI server designed for cloud deployment. |
|
|
| **[β Try the live demo](https://huggingface.co/spaces/MukulRay/Irminsul)** |
|
|
| --- |
|
|
| ## What This Is |
|
|
| Irminsul is a domain-specific AI assistant for Genshin Impact β built not because Genshin needed an AI assistant, but because it provided a concrete, evaluable knowledge domain to build an LLMOps pipeline around. Every component was chosen deliberately: |
|
|
| - A knowledge domain rich enough to evaluate retrieval quality (characters, mechanics, lore) |
| - Ground truth data available (KQM Theorycrafting Library, game stat APIs) to measure hallucination |
| - Community signal data (patch notes, meta shifts) to test corpus freshness |
|
|
| The domain is the test harness. The pipeline is the project. |
|
|
| --- |
|
|
| ## Architecture |
|
|
| ``` |
| βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ |
| β User Query β |
| βββββββββββββββββββββββ¬ββββββββββββββββββββββββββββββββββββββββββββ |
| β |
| βΌ |
| βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ |
| β Guardrails Layer β |
| β β’ Injection detection (pattern matching) β |
| β β’ Domain validation (cosine similarity vs anchor embeddings) β |
| β β’ Output sanitization β |
| βββββββββββββββββββββββ¬ββββββββββββββββββββββββββββββββββββββββββββ |
| β |
| βΌ |
| βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ |
| β FastAPI /generate β |
| ββββββββββββ¬βββββββββββββββββββββββββββββββββββββββββββββββββββββββ |
| β |
| ββββ Embed query (sentence-transformers, local, CPU) |
| β β |
| β βΌ |
| β Pinecone ββ semantic search βββΊ top-k chunks |
| β β |
| βΌ βΌ |
| LangChain RetrievalQA (stuff chain) |
| β |
| βΌ |
| ββββββββββββββββββββββββββββββββββββββ |
| β LLM Backend β |
| β β |
| β Groq (live demo) β |
| β llama-3.3-70b-versatile β |
| β ~300 tok/s, free tier β |
| β ββββ OR ββββ β |
| β Local (fine-tuned) β |
| β Llama 3.1 8B QLoRA β |
| β 4-bit NF4, RTX 3060 6GB β |
| β (inference only β trained on β |
| β Colab A100) β |
| ββββββββββββββββββββββββββββββββββββββ |
| β |
| βΌ |
| Grounded answer + source attribution |
| ``` |
|
|
| --- |
|
|
| ## Components |
|
|
| ### Fine-Tuned Model |
|
|
| Llama 3.1 8B Instruct fine-tuned with QLoRA on a custom instruction dataset, trained on Google Colab Pro (A100). Local inference runs in 4-bit NF4 quantization on an RTX 3060 6GB. |
|
|
| **[β View training notebook on Colab](https://colab.research.google.com/drive/YOUR_NOTEBOOK_LINK_HERE)** |
| <!-- PLACEHOLDER: Replace YOUR_NOTEBOOK_LINK_HERE with your actual Colab share link |
| File β Share β Copy link (set to "Anyone with the link can view") --> |
| |
| | Parameter | Value | |
| |---|---| |
| | Base model | `meta-llama/Llama-3.1-8B-Instruct` | |
| | Method | QLoRA via PEFT | |
| | Rank / Alpha | r=16, Ξ±=32 | |
| | Learning rate | 2e-4 | |
| | Quantization (inference) | 4-bit NF4, bfloat16 compute | |
| | Training infra | Google Colab Pro (A100) | |
| | Experiment tracking | MLflow (3 runs) | |
| |
| Three experiments were tracked in MLflow. Winning checkpoint selected by faithfulness score (0.826) and ROUGE-L (0.466) on a held-out eval set. |
| |
| <!-- PLACEHOLDER: Add MLflow experiment screenshot here |
| docs/assets/mlflow_experiments.png |
| A screenshot of your MLflow UI showing the 3 runs and metrics comparison --> |
| |
| ### RAG Pipeline |
|
|
| Documents are chunked, embedded locally with `sentence-transformers/all-MiniLM-L6-v2` (384-dim, zero API cost), and stored in Pinecone serverless. Retrieval is semantic, top-k configurable per query. |
|
|
| | Component | Choice | Reason | |
| |---|---|---| |
| | Embedder | all-MiniLM-L6-v2 | Runs locally, strong semantic retrieval, 384-dim fits free Pinecone tier | |
| | Vector DB | Pinecone serverless | Zero ops, cosine similarity, free tier sufficient for corpus size | |
| | Chunking | Word-level, 300 words, 40-word overlap | Preserves semantic units across chunk boundaries | |
| | Chain | LangChain RetrievalQA (stuff) | Simple, inspectable, returns source documents | |
|
|
| ### Knowledge Corpus |
|
|
| Corpus is maintained in a [separate repository](https://github.com/MukulRay1603/irminsul-corpus) with an autonomous update pipeline. It ingests from three tiers of sources with different trust levels: |
|
|
| | Tier | Source | Files | Trust | |
| |---|---|---|---| |
| | 1 β Ground Truth | KQM Theorycrafting Library (peer-reviewed mechanics) | ~305 | Highest β cite in builds | |
| | 1 β Ground Truth | genshin-db API (exact character/weapon/artifact stats) | ~406 | Highest β exact game data | |
| | 2 β Expert Synthesis | Gemini-authored prose grounded in Tier 1 | ~83 | High β no hallucinated stats | |
| | 3 β Community Signal | Official patch notes, banner history, event calendar | ~80 | Medium β tagged explicitly | |
|
|
| A GitHub Actions workflow runs every Sunday at 2am UTC, pulls fresh data, commits the docs, and re-ingests ~4,000 vectors to Pinecone automatically. |
|
|
| ### Guardrails |
|
|
| Two layers of input validation before any LLM call: |
|
|
| 1. **Injection detection** β pattern matching against known jailbreak phrases (`ignore previous instructions`, `act as`, `DAN mode`, etc.) |
| 2. **Domain validation** β cosine similarity between the query embedding and a set of Genshin-domain anchor sentences. Queries scoring below threshold (0.35) are rejected with a domain-scoped error message before touching the LLM. |
|
|
| Output is sanitized to strip generation artifacts (`</s>` tokens, trailing whitespace) and length-checked. |
|
|
| ### Serving Layer |
|
|
| FastAPI with: |
| - Async lifespan model loading (model loads once at startup, not per request) |
| - Typed Pydantic request/response models with `blocked` flag for guardrail rejections |
| - CORS enabled for cross-origin UI |
| - `/health` endpoint reporting model load status |
| - Browser UI served from the same process (no separate frontend server) |
|
|
| --- |
|
|
| ## Stack |
|
|
| | Layer | Technology | |
| |---|---| |
| | Base model | Llama 3.1 8B Instruct | |
| | Fine-tuning | QLoRA via PEFT (r=16, Ξ±=32, lr=2e-4) | |
| | Experiment tracking | MLflow | |
| | Quantization | BitsAndBytes 4-bit NF4, bfloat16 compute | |
| | Embeddings | sentence-transformers/all-MiniLM-L6-v2 | |
| | Vector DB | Pinecone serverless (cosine, 384-dim) | |
| | RAG chain | LangChain RetrievalQA | |
| | Serving | FastAPI + Uvicorn | |
| | Containerization | Docker (python:3.12-slim) | |
| | Live demo hosting | HuggingFace Spaces (CPU Basic) | |
| | Production deployment | Azure Container Apps + ACR | |
| | LLM backend (demo) | Groq API (llama-3.3-70b-versatile) | |
| | Corpus pipeline | GitHub Actions (weekly, autonomous) | |
|
|
| --- |
|
|
| ## Quickstart |
|
|
| ### Option 1 β Groq backend (no GPU required) |
|
|
| ```bash |
| # 1. Clone |
| git clone https://github.com/MukulRay1603/Irminsul.git |
| cd Irminsul |
| |
| # 2. Install |
| python -m venv venv && source venv/bin/activate |
| # Windows: venv\Scripts\activate |
| pip install -r requirements.txt |
| |
| # 3. Configure |
| cp .env.example .env |
| # Set PINECONE_API_KEY and GROQ_API_KEY in .env |
| # LLM_BACKEND=groq is the default |
| |
| # 4. Ingest corpus (or use pre-ingested Pinecone index) |
| python ingest.py --dir ./docs --chunk-size 300 --chunk-overlap 40 |
| |
| # 5. Run |
| uvicorn main:app --reload --port 8000 |
| # UI: http://localhost:8000 |
| # API docs: http://localhost:8000/docs |
| ``` |
|
|
| ### Option 2 β Local fine-tuned model (GPU required for inference, 6GB+ VRAM) |
|
|
| ```bash |
| # Same steps 1β3, then: |
| # Set LLM_BACKEND=local and MODEL_PATH in .env |
| |
| # 4. Download model |
| # Place the merged QLoRA model at: ./models/merged/exp2_lr2e-4_r16/ |
| # (Or update MODEL_PATH in .env) |
| |
| # 5. Run |
| uvicorn main:app --reload --port 8000 |
| ``` |
|
|
| ### Docker |
|
|
| ```bash |
| # Groq backend (no GPU) |
| docker build -t irminsul:latest . |
| docker run -p 8000:8000 \ |
| -e PINECONE_API_KEY=your_key \ |
| -e GROQ_API_KEY=your_key \ |
| -e LLM_BACKEND=groq \ |
| irminsul:latest |
| ``` |
|
|
| --- |
|
|
| ## API |
|
|
| | Method | Endpoint | Description | |
| |---|---|---| |
| | `GET` | `/` | Browser UI | |
| | `GET` | `/health` | Model load status + ready flag | |
| | `POST` | `/generate` | RAG query β grounded answer + sources | |
| | `POST` | `/ingest` | Ingest docs from a local directory path | |
|
|
| **Request:** |
| ```json |
| { |
| "query": "What weapons should Hu Tao use on a budget?", |
| "top_k": 3 |
| } |
| ``` |
|
|
| **Response:** |
| ```json |
| { |
| "answer": "For Hu Tao on a budget, Dragon's Bane is the strongest F2P option β it scales with Elemental Mastery and deals significant bonus damage on vaporized hits. White Tassel is the best 3-star alternative for pure Normal Attack scaling.", |
| "sources": ["docs/generated/characters/hu_tao.md", "docs/tcl/characters/pyro/hutao.md"], |
| "latency_ms": 1240.5, |
| "blocked": false |
| } |
| ``` |
|
|
| If a query is rejected by guardrails, `blocked: true` is returned with the rejection reason in `answer`. No LLM call is made. |
|
|
| --- |
|
|
| ## Deployment |
|
|
| See **[DEPLOYMENT.md](DEPLOYMENT.md)** for the full guide covering: |
|
|
| - Local development setup |
| - Docker (local and cloud) |
| - Azure Container Apps (one-shot `deploy_azure.sh`) |
| - Cost breakdown and the reasoning behind the demo setup |
| - GPU serving path for the fine-tuned model |
|
|
| **Why the live demo runs on HuggingFace + Groq, not Azure GPU:** |
|
|
| Serving the fine-tuned Llama 3.1 8B requires a GPU instance. The minimum viable option on Azure (NC4as T4 v3) costs ~$360/month β not justified for a portfolio project. The Dockerfile and `deploy_azure.sh` are written for the Azure path; the live demo swaps the LLM backend to Groq via a single environment variable. The RAG pipeline, guardrails, and serving layer are identical. |
|
|
| --- |
|
|
| ## Project Structure |
|
|
| ``` |
| Irminsul/ |
| βββ main.py # FastAPI app: endpoints, lifespan, CORS, response models |
| βββ rag.py # LangChain RAG chain, dual backend (Groq / local Llama) |
| βββ embedder.py # sentence-transformers singleton (loads once, reused) |
| βββ ingest.py # Doc loader β word chunker β Pinecone upsert |
| βββ guardrails.py # Input validation: injection detection + domain cosine check |
| βββ index.html # Browser UI: dark Dendro theme, query history, source display |
| β |
| βββ Dockerfile # python:3.12-slim, model NOT baked in |
| βββ deploy_azure.sh # One-shot ACR build + Container Apps deploy |
| βββ .env.example # Environment variable reference |
| β |
| βββ DEPLOYMENT.md # Full deployment guide + cost analysis |
| βββ requirements.txt |
| βββ images/ # Screenshots and assets used in this README |
| β βββ banner.png |
| β βββ ui_main.png |
| β βββ ui_response.png |
| β βββ mlflow_runs.png |
| βββ docs/ |
| βββ corpus/ # Legacy manual corpus docs |
| βββ demo.html # GitHub Pages demo page |
| ``` |
|
|
| --- |
|
|
| ## Evaluation |
|
|
| <!-- PLACEHOLDER: Fill this section once you have eval numbers ready. |
| Consider running a small eval set (20-50 questions) with: |
| - Faithfulness: Does the answer contradict the retrieved context? |
| - Answer relevance: Does the answer address the question? |
| - Context recall: Did retrieval find the right documents? |
| |
| Tools to consider: RAGAS (pip install ragas) against your Pinecone index. |
| |
| Example format: |
| |
| | Metric | Score | Method | |
| |---|---|---| |
| | Faithfulness | 0.826 | Custom eval, n=50 | |
| | ROUGE-L | 0.466 | vs reference answers | |
| | Context recall | TBD | RAGAS | |
| | Answer relevance | TBD | RAGAS | |
|
|
| The fine-tuned model numbers (0.826 faithfulness, 0.466 ROUGE-L) came from |
| your MLflow eval during training β pull those into this table. |
| --> |
| |
| The fine-tuned model was evaluated during training with a held-out set: |
|
|
| | Metric | Score | |
| |---|---| |
| | Faithfulness | 0.826 | |
| | ROUGE-L | 0.466 | |
|
|
| Full RAG pipeline evaluation (context recall, answer relevance) is a planned addition β see [What's Next](#whats-next). |
|
|
| --- |
|
|
| ## Screenshots |
|
|
| <!-- PLACEHOLDER: Add screenshots once you have them. |
| Save to images/ and uncomment these lines: |
| |
|  |
|  |
|  |
|
|
| Tips: |
| - ui_main.png: screenshot of http://localhost:8000 before any query |
| - ui_response.png: run a query (try "best build for Hu Tao") so the answer + sources section is visible |
| - mlflow_runs.png: from your Colab β the experiment comparison table showing 3 runs |
| --> |
| |
| *Screenshots coming soon β [try the live demo](https://huggingface.co/spaces/MukulRay/Irminsul) to see it in action.* |
|
|
| --- |
|
|
| ## What's Next |
|
|
| - [ ] **RAGAS evaluation** β systematic RAG eval (faithfulness, context recall, answer relevance) on a held-out question set |
| - [ ] **MarkdownHeaderTextSplitter** β replace naive word chunker for section-aware chunking that respects document structure |
| - [ ] **Metadata filtering** β filter Pinecone queries by character, content tier, or topic category |
| - [ ] **Streaming responses** β SSE for lower perceived latency on long answers |
| - [ ] **CI/CD pipeline** β GitHub Actions β ACR build β `az containerapp update` on push to main |
| - [ ] **Corpus expansion** β constellation effects, rotation guides, and ER/EM thresholds per character |
|
|
| --- |
|
|
| ## Related: irminsul-corpus |
|
|
| The knowledge base is maintained in a companion repository: |
|
|
| **[MukulRay1603/irminsul-corpus](https://github.com/MukulRay1603/irminsul-corpus)** |
|
|
| It runs a fully autonomous weekly pipeline: pulls fresh game data from the KQM Theorycrafting Library and genshin-db API, synthesizes prose with Gemini 2.5 Flash, commits ~800 documents to the repo, and re-ingests ~4,000 vectors to Pinecone β without any manual intervention. |
|
|
| --- |
|
|
| ## License |
|
|
| MIT β see [LICENSE](LICENSE) for details. |
|
|
| Genshin Impact is owned by HoYoverse. This project is not affiliated with or endorsed by HoYoverse. |
|
|
| --- |
|
|
| <div align="center"> |
|
|
| Built to learn the full MLOps lifecycle β fine-tuning, quantization, retrieval, serving, and cloud deployment β on consumer hardware. Every component chosen deliberately, not for hype. |
|
|
| </div> |
|
|