A simple coding assistant chatbot built with Node.js (Express), React, and OpenAI GPT-4 API.
You send questions from the browser UI, and get helpful, AI-powered replies using your own OpenAI key.
- Ask coding questions in the browser
- Get instant, AI-powered responses
- Easy to run locally
- Clean React & Node API separation
Personal-AI/ ├── backend/ │ ├── server.js │ └── .env ├── frontend/ │ ├── src/ │ │ └── Chat.js │ └── package.json └── README.md
cd backend
-
Create a
.envfile:npm start
Backend should show:
Server running on http://localhost:3001
cd frontend
npm install
npm start
- Visit
http://localhost:3000in your browser.