Multimodal RAG pipeline for low-compute, local, real-world deployment
Project description
RAG-LLM-API-Pipeline
A fully local GPU poor, multimodal Retrieval-Augmented Generation (RAG) system powered by open-source local LLMs. This pipeline is designed for operational technology environments to provide AI-assisted access to technical knowledge, manuals, and historical data — securely and offline, at min cost.
✅ Key Features
🔍 Retrieval-Augmented Generation (RAG) using FAISS + SentenceTransformers
🧠 Flexible LLM Integration with support for:
- Open-source HuggingFace models (Qwen, Mistral, etc.)
- Mixed precision support: fp32, fp16, bfloat16
- Dynamic model/device/precision switching via YAML
🔧 1-line YAML configuration to control:
- System-specific documents
- Embedding & generation models
- GPU/CPU inference toggle
- Index rebuilding, token limits, chunking
📂 Multimodal Input Support:
- PDFs
- Plain text
- Images (OCR via Tesseract)
- Audio (.wav)
- Video (.mp4)
💻 Multiple Interfaces:
- CLI (rag-cli) for single-line querying
- FastAPI-powered REST API for local serving
- Lightweight HTML Web UI for interactive search
###🛠️ Per-system configuration via system.yaml for flexible deployments ###🔐 Fully local operation — no cloud dependencies required
###✅ One-line install via pip install rag-llm-api-pipeline ###✅ Quickstart guide and prebuilt example included ###✅ Runs on CPU or GPU with smart memory management ###✅ Web UI + CLI + API, all in one package
📦 Installation
pip install rag-llm-api-pipeline
🛠️ Setup Instructions (Windows + Anaconda)
1. Create Python Environment
conda create -n rag_env python=3.10
conda activate rag_env
2. Install Dependencies
Via Conda (system-level tools):
conda install -c conda-forge ffmpeg pytesseract pyaudio
Via Pip (Python packages):
pip install -r requirements.txt
Ensure Tesseract is installed and in your system PATH. You can get it from https://github.com/tesseract-ocr/tesseract.
🚀 Usage
Please review the quickstart guide.
🐧 Setup Instructions (Linux)
1. Create Python Environment
python3 -m venv rag_env
source rag_env/bin/activate
Or with conda:
conda create -n rag_env python=3.10
conda activate rag_env
2. Install System Dependencies
sudo apt update
sudo apt install -y ffmpeg tesseract-ocr libpulse-dev portaudio19-dev
Optional: install language packs for OCR (e.g.,
tesseract-ocr-eng).
3. Install Python Packages
pip install -r requirements.txt
🔁 Running the Application on Linux
CLI
python cli/main.py --system TestSystem --question "What is the restart sequence for this machine?"
API Server
uvicorn rag_llm_api_pipeline.api.server:app --host 0.0.0.0 --port 8000
cURL Query
curl -X POST http://localhost:8000/query \
-H "Content-Type: application/json" \
-d '{"system": "TestSystem", "question": "What does error E204 indicate?"}'
📚 How it Works
-
Index Building:
- Files are parsed using
loader.py. - Text chunks are embedded with MiniLM.
- FAISS index stores embeddings for fast similarity search.
- Files are parsed using
-
Query Execution:
- User provides a natural language question.
- Relevant text chunks are retrieved from the index.
- LLM generates an answer based on retrieved context.
🧠 Model Info
- All models are open-source and run offline.
You can replace with any local-compatible Hugging Face model.
🔐 Security & Offline Use
- No cloud or external dependencies required after initial setup.
- Ideal for OT environments.
- All processing is local: embeddings, LLM inference, and data storage.
📜 License
MIT License
📧 Contact
For issues, improvements, or contributions, please open an issue or PR.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file rag_llm_api_pipeline-0.6.0.tar.gz.
File metadata
- Download URL: rag_llm_api_pipeline-0.6.0.tar.gz
- Upload date:
- Size: 21.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
62d9983542babddd4310795bc66732cb19d76c53271834703bce44175929401e
|
|
| MD5 |
5bede6ae93966cfecb027bf8bb7bb927
|
|
| BLAKE2b-256 |
364b8a506b6ffea851a51c80b07f1b1ac5b25524c78e731cc134ccf0a935586a
|
File details
Details for the file rag_llm_api_pipeline-0.6.0-py3-none-any.whl.
File metadata
- Download URL: rag_llm_api_pipeline-0.6.0-py3-none-any.whl
- Upload date:
- Size: 17.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c357703dfb3171cf0baffcb8d4d8bc600eef4b86b965d0ca890d539086250d3b
|
|
| MD5 |
03e330479acb48bf093afa07ea5546e7
|
|
| BLAKE2b-256 |
2476e664e35fc14ec68f91f834c7297b32ddb3c211a0db252203ddb541984aa2
|