ImTamsi/ai-code-reviewer
0
AI Code Reviewer (Space)
Heads-up: this Space does not ship a hosted GPU. It is a Gradio front-end that calls your own OpenAI-compatible Qwen endpoint (vLLM on AWS, local GPU, etc.). Without secrets configured, the app will show a setup banner and health-check errors.
Gradio demo of the AI Code Reviewer MCP project. Enter a public GitHub repository and the app runs LLM-powered analyses (code review, potential bugs, technical debt, security, performance, missing tests) using a Qwen3.6-27B model served behind an OpenAI-compatible endpoint.
Quick start (Space maintainer)
- Open Settings → Variables and secrets on this Space.
- Add the required secrets below.
- Restart the Space (or push a commit) and wait for the build.
- Try an example repo such as
psf/requests.
Configuration
Set these as Space secrets (Settings → Variables and secrets):
Serving recipe and JSON output contract: ImTamsi/qwen3.6-27b-code-reviewer
Sample findings dataset: ImTamsi/code-review-findings-samples
The prompts in prompts/ are copied from the MCP server package so both share the exact same review behavior.
Run locally
pip install -r requirements.txt
export QWEN_BASE_URL=http://localhost:8000/v1
export QWEN_API_KEY=...
python app.pyRelated
- MCP server: github.com/Tamsi/ai-code-reviewer-mcp
- Org: build-small-hackathon
- Author: ImTamsi
