Spaces:
Runtime error
Runtime error
File size: 671 Bytes
87ce049 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# π AI Code Debugger β Executor + Gradio App
This repository contains:
- `executor.py` β a **Jina Executor** (lazy-loads your HF model).
- `model_wrapper.py` β simple wrapper used by the Gradio app.
- `app.py` β a Gradio UI (suitable for Hugging Face Spaces or local run).
- `manifest.yml` & `config.yml` β metadata for Jina Hub.
- `requirements.txt` β dependencies.
## Model
This uses your fine-tuned model:
`Girinath11/aiml_code_debug_model` on Hugging Face.
**If the model is private**, set `HF_TOKEN` or run `huggingface-cli login` on the host to allow downloads.
---
## Run locally (quick)
1. Install deps:
```bash
pip install -r requirements.txt
|