Spaces:
No application file
No application file
| """ | |
| Entry point for Hugging Face Spaces | |
| This file imports the FastAPI app from the app package | |
| """ | |
| import os | |
| import sys | |
| # Add the current directory to Python path | |
| sys.path.append(os.path.dirname(os.path.abspath(__file__))) | |
| # Import the FastAPI app from your app module | |
| from app.main import app | |
| # This file exists only to give Hugging Face a clear entry point |