This is a simple AI chatbot web app that runs locally using Ollama and the LLaMA 3 model. This can be done locally from your browser no API key needed!
- Interactive chatbot interface (HTML + CSS + JS)
- Node.js + Express backend
- LLaMA 3 model served locally using Ollama
- No OpenAI API key or internet connection required after setup
git clone https://github.com/yourusername/personal-chatbot.git
cd personal-chatbotnpm installollama pull llama3
ollama servenode server.js
- Local only: doesn't work online can only work on your system locally
- No memory storage: It doesn't store memory
- Coursera Hands-on Lab: Building a Basic Chatbot using ChatGPT (I've used Ollama instead of OpenAI here)
- Chatgpt for debugging and crashes, restructuring the code and resolving server/model integration issues.