File size: 362 Bytes
b03eb12
 
 
 
9434231
b03eb12
 
9434231
b03eb12
 
9434231
b03eb12
 
9434231
b03eb12
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"""
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