An intelligent FAQ chatbot using Sentence-BERT for question matching and Groqβs LLaMA 3 for smart fallback answers.
Wizard Customer Support is a Streamlit-based chatbot that handles real-time customer queries using a hybrid of:
- Semantic Search with SentenceTransformers
- Groq LLaMA 3 API for fallback answers
Itβs designed to simulate a helpful, magical support wizard π§ that always finds an answer.
- π€ NLP:
sentence-transformers
(all-MiniLM-L6-v2
) - π€ Fallback LLM:
Groq
+llama3-8b-8192
- π Data: CSV-based FAQ ingestion
- π Frontend: Streamlit
- π Similarity: Cosine similarity for semantic search
# 1. Clone the repository
git clone https://github.com/Flash019/FUTURE_ML_03.git
cd FUTURE_ML_03
# 2. Install dependencies
pip install -r requirements.txt
# 3. Run the app
streamlit run wizard_coustomer_support.py