zoya-hammad commited on
Commit
2279aea
·
1 Parent(s): d493c81

Added gitignore and README

Browse files
Files changed (2) hide show
  1. .gitignore +6 -0
  2. README.md +12 -13
.gitignore ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ .env
2
+ __pycache__/
3
+ *.pyc
4
+ *.pyo
5
+ .DS_Store
6
+
README.md CHANGED
@@ -1,14 +1,13 @@
1
- ---
2
- title: QueryMD
3
- emoji: ⚡
4
- colorFrom: red
5
- colorTo: pink
6
- sdk: gradio
7
- sdk_version: 5.22.0
8
- app_file: app.py
9
- pinned: false
10
- license: mit
11
- short_description: Markdown Based Q&A with Visualization (RAG)
12
- ---
13
 
14
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
+ # QueryMD
2
+ ## Gradio UI for Markdown-Based Q&A with Visualization
3
+
4
+ This project integrates LangChain, ChromaDB, and OpenAI to process, store, and retrieve information efficiently.
5
+
6
+ Key Features:
7
+ - Upload Markdown files for processing
8
+ - Visualize similarity between document chunks in 2D and 3D using embeddings
9
+ - Ask questions and receive RAG enabled responses
10
+ - Mantain conversation context for better question answering
11
+ - Clear chat history when required for fresh sessions
12
+ - Store and retrieve embeddings using ChromaDB
13