CoolFace
Apppublic

d221/Qdrant_Backend

sourceHugging Faceapache-2.0updated 2y agoView on Hugging Face
0likes
App README

Medical RAG QA System

A Retrieval-Augmented Generation (RAG) system for medical question answering using:

  • Meditron-7B LLM
  • Qdrant Vector Database
  • PubMedBERT Embeddings

![License](https://opensource.org/licenses/Apache-2.0) ![Model Card](https://huggingface.co/joshnader/meditron-7b-Q4KM-GGUF)

Features

  • PDF document ingestion
  • Semantic search with medical embeddings
  • LLM-powered question answering
  • Source document citation

🚀 Usage

  1. 1.Query Interface:
python
import requests

response = requests.post("https://d221/Qdrant_Backend.hf.space/get_response", 
                         data={"query": "What are the symptoms of diabetes?"})
print(response.json())