A simple web app that instantly reviews your code and provides smart feedback — built with FastAPI and Streamlit.
- 🔍 Detects programming language automatically
- 📊 Estimates time complexity (O(1), O(n), O(n²))
- 💡 Gives improvement suggestions
- ⚡ Fast and lightweight — no AI API needed
| Layer | Technology |
|---|---|
| Frontend | Streamlit |
| Backend | FastAPI |
| Language | Python 3.13 |
git clone https://github.com/Mahakpadlaya/AI-Code-Reviewer.git
cd AI-Code-Reviewerpip install -r requirements.txtuvicorn backend.main:app --reloadstreamlit run frontend/app.pyhttp://localhost:8501
AI-Code-Reviewer/
├── backend/
│ └── main.py
├── frontend/
│ └── app.py
├── reviewer/
│ └── review.py
├── requirements.txt
└── README.md