sohamchitimali commited on
Commit
2fa86b3
·
1 Parent(s): e9038be

Fast API Fix

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -28,7 +28,7 @@ logging.basicConfig(level=logging.INFO)
28
  logger = logging.getLogger(__name__)
29
 
30
  # Create FastAPI app for API endpoints
31
- api_app = FastAPI(title="Enhanced Single Document QA API", description="Single document AI query system")
32
 
33
  # Make sure you have: from some_module import hackathon_system, logger
34
 
 
28
  logger = logging.getLogger(__name__)
29
 
30
  # Create FastAPI app for API endpoints
31
+ app = FastAPI(title="Enhanced Single Document QA API", description="Single document AI query system")
32
 
33
  # Make sure you have: from some_module import hackathon_system, logger
34