File size: 373 Bytes
4f67c26 6e96e6e 4f67c26 6e96e6e 4f67c26 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#!/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)
|