firstAI / app.py
ndc8
Refactor application to implement GGUF backend with native transformers support; update requirements and add GGUF-specific entry point
6e96e6e
raw
history blame
373 Bytes
#!/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)