CoolFace
Apppublic

hiropr/llm-code-deployment

sourceHugging Facemitupdated 11mo agoView on Hugging Face
0likes
README.md28 linesDownload Raw Back to root
1---2title: LLM Code Deployment3emoji: ⚙️4colorFrom: blue5colorTo: indigo6sdk: docker7pinned: false8license: mit9---10 11# LLM Code Deployment12 13This Space hosts a FastAPI-based automation service for building and deploying14LLM-generated code projects. It uses the Hugging Face **Docker runtime** and 15runs automatically via Uvicorn on port 7860.16 17 18# LLM Code Deployment — Phase 1 (FastAPI)19 20##  Setup (Local)21 221. **Initialize the project**23   ```bash24   uv init25   uv add fastapi uvicorn python-dotenv PyGithub requests pydantic26   uv sync27   uv export > requirements.txt28