Instructions to use nsr51324/CortexRAG with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use nsr51324/CortexRAG with sentence-transformers:
from sentence_transformers import CrossEncoder model = CrossEncoder("nsr51324/CortexRAG") query = "Which planet is known as the Red Planet?" passages = [ "Venus is often called Earth's twin because of its similar size and proximity.", "Mars, known for its reddish appearance, is often referred to as the Red Planet.", "Jupiter, the largest planet in our solar system, has a prominent red spot.", "Saturn, famous for its rings, is sometimes mistaken for the Red Planet." ] scores = model.predict([(query, passage) for passage in passages]) print(scores) - Notebooks
- Google Colab
- Kaggle
- π©Ί CortexRAG - Advanced Medical RAG API
π©Ί CortexRAG - Advanced Medical RAG API
CortexRAG is a high-performance, domain-specific Retrieval-Augmented Generation (RAG) system engineered for medical and clinical question answering. It combines semantic vector search (FAISS + Sentence Transformers), cross-encoder re-ranking, and high-speed LLM inference (Groq / Llama) wrapped in a lightweight FastAPI REST interface.
π Features
- Semantic Embedding Engine:
all-MiniLM-L6-v2dense vector retrieval using FAISS indexing. - Precision Re-ranking: Cross-encoder scoring (
cross-encoder/ms-marco-MiniLM-L-6-v2) for optimal document relevance. - Medical Synonym Expansion: Context-aware synonym mapping for expanded search recall.
- Ultra-Fast REST API: Built on FastAPI with asynchronous request handling and Pydantic validation.
- Cloudflare Tunnel Ready: Zero-trust public exposure without complex firewall configuration.
π System Architecture
βββββββββββββββββββββββββββββ
β Client Request β
βββββββββββββββ¬ββββββββββββββ
β POST /query
βΌ
βββββββββββββββββββββββββββββ
β FastAPI Web Server β
βββββββββββββββ¬ββββββββββββββ
β
βββββββββββββββββββββββ΄ββββββββββββββββββββββ
β β
βΌ βΌ
βββββββββββββββββββββββββββββ βββββββββββββββββββββββββββββ
β Query Vectorization β β Medical Synonym Expansion β
β (all-MiniLM-L6-v2) β βββββββββββββββ¬ββββββββββββββ
βββββββββββββββ¬ββββββββββββββ β
β β
βββββββββββββββββββββββ¬ββββββββββββββββββββββ
β
βΌ
βββββββββββββββββββββββββββββ
β FAISS Vector Index β
βββββββββββββββ¬ββββββββββββββ
β Top-N Candidate Docs
βΌ
βββββββββββββββββββββββββββββ
β Cross-Encoder Reranker β
β (ms-marco-MiniLM-L-6-v2) β
βββββββββββββββ¬ββββββββββββββ
β Top-K Ranked Context
βΌ
βββββββββββββββββββββββββββββ
β LLM Synthesis (Groq) β
βββββββββββββββ¬ββββββββββββββ
β
βΌ
βββββββββββββββββββββββββββββ
β JSON API Response β
βββββββββββββββββββββββββββββ
π Repository Structure
CortexRAG/
βββ API_DEPLOYMENT_PLAN.md # Step-by-step API & tunnel setup documentation
βββ README.md # Hugging Face & GitHub Project Card
βββ question_embeddings.npy # Pre-computed dense embeddings matrix
βββ questions.index # Binary FAISS vector search index
βββ notebooks/ # Experimental notebooks & cleaning scripts
β βββ Medical_RAG_Sytem.ipynb
β βββ rag_data_cleaning.ipynb
βββ rag_model/ # Core RAG engine configurations & resources
βββ rag_config.json # Search, score & model parameters
βββ requirements.txt # Python dependency specifications
βββ models/ # Synonyms & model metadata
βββ medical_synonyms.json
β‘ Quick Start & Installation
1. Prerequisites
- Python 3.9+
- Pip package manager
2. Environment Setup
# Clone repository
git clone https://huggingface.co/spaces/YOUR_USERNAME/CortexRAG
cd CortexRAG
# Create virtual environment
python -m venv venv
# Activate on Windows:
venv\Scripts\activate
# Activate on Linux/macOS:
source venv/bin/activate
# Install dependencies
pip install -r rag_model/requirements.txt fastapi uvicorn pydantic
3. Environment Variables
Set your Groq API Key (or other LLM provider keys):
# Windows PowerShell
$env:GROQ_API_KEY="your_groq_api_key_here"
# Linux/macOS
export GROQ_API_KEY="your_groq_api_key_here"
π Running the Local API
Start the server using uvicorn:
uvicorn app:app --host 127.0.0.1 --port 8000 --reload
Interactive API Documentation (Swagger UI) is available at:
π http://127.0.0.1:8000/docs
π Exposing Publicly via Cloudflare Tunnel
To expose your local FastAPI server securely to the internet without port forwarding:
- Download cloudflared.
- Run the tunnel pointing to your local port:
cloudflared tunnel --url http://127.0.0.1:8000 - Use the generated URL (e.g.
https://xxx.trycloudflare.com) as your public API endpoint.
π API Reference & Integration Guide
Endpoint
POST /query
Request Headers
Content-Type: application/json
Request Payload Example
{
"question": "What are the first-line treatments for type 2 diabetes?",
"top_k": 6
}
Response Payload Example
{
"status": "success",
"question": "What are the first-line treatments for type 2 diabetes?",
"answer": "First-line pharmacological management for type 2 diabetes typically includes Metformin alongside lifestyle modifications...",
"retrieved_context": [
{
"doc_id": 42,
"text": "Metformin remains the initial drug of choice for monotherapy...",
"rerank_score": 4.85
}
],
"execution_time_sec": 0.38
}
Python Integration Example
import requests
url = "https://your-cloudflare-url.trycloudflare.com/query"
payload = {
"question": "What are the common causes of chest pain?",
"top_k": 5
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.json())
π Configuration Parameters (rag_config.json)
| Parameter | Default | Description |
|---|---|---|
embedding_model |
all-MiniLM-L6-v2 |
SentenceTransformer embedding model |
reranker_model |
cross-encoder/ms-marco-MiniLM-L-6-v2 |
Precision reranking cross-encoder model |
retrieve_top_n |
20 |
Initial FAISS vector retrieval candidate count |
rerank_top_k |
6 |
Number of context snippets passed to LLM |
min_similarity_floor |
0.4 |
Cosine similarity threshold |
π License
This project is released under the MIT License.
Inference Providers NEW
This model isn't deployed by any Inference Provider. π Ask for provider support