An AI-powered assistant that answers user questions based on help center documentation — built as a technical interview prototype.
“How do I reset my password?”
“Where can I update my payment info?”
“How do I invite teammates?”
HelpBot delivers fast, relevant answers by searching through help articles and using GPT to provide clear, human-like responses.
- Understands user questions using OpenAI embeddings
- Searches help documents for the most relevant matches
- Summarizes the best answer using GPT (optional layer)
- Simple CLI or UI interface for testing and demonstration
git clone https://github.com/your-username/helpbot.git
cd helpbotpython3 -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activatepip install -r requirements.txtCreate a .env file in the root directory with:
ini
OPENAI_API_KEY=your-api-key-herepython src/main.pyBuilt by Sarab as part of a technical prototype project.
