#!/usr/bin/env python3 """ Entry point for Hugging Face Spaces - GGUF Backend This file imports and runs the GGUF FastAPI application with native transformers GGUF support """ # Import the GGUF backend with native transformers support from gguf_transformers_backend import app if __name__ == "__main__": import uvicorn uvicorn.run(app, host="0.0.0.0", port=7860)