An AI-powered Python code review tool built with Streamlit and Google Gemini API. Paste any Python code and instantly get feedback on bugs, improvements, and best practices.
- Paste any Python code and click Review
- Gemini AI identifies bugs and errors
- Suggests improvements and best practices
- Gives an overall code quality rating out of 10
- Clean, simple Streamlit web interface
- Python
- Streamlit
- Google Gemini API (
google-generativeai)
1. Clone the repo
git clone https://github.com/172005-dot/AI-Code-Reveiwer.git
cd AI-Code-Reveiwer2. Install dependencies
pip install streamlit google-generativeai3. Add your Gemini API key
Get a free key from Google AI Studio and replace in app.py:
genai.configure(api_key="YOUR_GEMINI_API_KEY_HERE")4. Run the app
streamlit run app.pyAI-Code-Reveiwer/
│
├── app.py # Main Streamlit application
└── README.md