| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
AI-powered code reviewer. Send code snippets → get clean, well-structured comments back.
Clone repo
git clone https://github.com/yourusername/code-commenter.git
cd code-commenterSetup environment
python -m venv venv
source venv/bin/activate # Linux/Mac
venv\Scripts\activate # Windows
pip install -r requirements.txtAdd API key Create .env:
GEMINI_API_KEY=your_api_key_hereRun server
uvicorn backend.main:app --reloadTest with cURL or Swagger UI (http://127.0.0.1:8000/docs).
Input:
def fibonacci(n):
if n <= 1:
return n
return fibonacci(n-1) + fibonacci(n-2)Output: Docstring + inline comments explaining recursion and edge cases.
| Back | FazBrowse Home | New Git URL |