Prajith04 commited on
Commit
1ec5ab7
Β·
verified Β·
1 Parent(s): d8d90e3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +35 -7
README.md CHANGED
@@ -1,10 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
- title: Customer Support
3
- emoji: 🐠
4
- colorFrom: yellow
5
- colorTo: red
6
- sdk: docker
7
- pinned: false
 
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # 🧠 Customer Support Chatbot (FastAPI + Hugging Face + Qdrant)
2
+
3
+ This is an intelligent, conversational customer support chatbot built using:
4
+
5
+ - πŸ” **GLiNER** for named entity extraction
6
+ - 🧠 **SentenceTransformers** + **Qdrant** for semantic search and retrieval
7
+ - πŸ€– **Groq LLM** for answer validation and response generation
8
+ - ⚑ **FastAPI** for the web backend
9
+ - πŸ–ΌοΈ **Jinja2 templates** for a simple frontend chat UI
10
+
11
+ It runs both locally and on **Hugging Face Spaces via Docker**.
12
+
13
  ---
14
+
15
+ ## πŸš€ Features
16
+
17
+ - Extracts key entities from support requests
18
+ - Semantic similarity search with Qdrant + SentenceTransformers
19
+ - LLM validation of results via Groq API
20
+ - Fully functional FastAPI-based web interface
21
+ - Docker-ready for Hugging Face Spaces deployment
22
+
23
  ---
24
 
25
+ ## πŸ“¦ Installation
26
+
27
+ ### Local Setup
28
+
29
+ ```bash
30
+ git clone https://github.com/your-username/support-chatbot
31
+ cd support-chatbot
32
+
33
+ python -m venv venv
34
+ source venv/bin/activate
35
+
36
+ pip install -r requirements.txt
37
+
38
+ uvicorn main:app --reload