CoolFace
Apppublic

Ranajit1997/CodeReviewer

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
App README

AI Code Reviewer (FastAPI + Docker)

This Hugging Face Space runs a pure FastAPI service inside Docker. It analyzes Python code using OpenAI GPT models and returns structured JSON reviews.

Endpoints

  • GET / → health check
  • POST /review → review Python code

Example

bash
curl -X POST https://YOUR-SPACE-NAME.hf.space/review \
  -H "Content-Type: application/json" \
  -d '{"code": "print(\"hello world\")"}'