hiropr/llm-code-deployment
0
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 