Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -2,7 +2,7 @@ import os
|
|
2 |
import re
|
3 |
import logging
|
4 |
from fastapi import FastAPI, HTTPException, BackgroundTasks
|
5 |
-
from fastapi.middleware.cors import CORSMiddleware
|
6 |
from fastapi.responses import StreamingResponse
|
7 |
from fastapi.responses import RedirectResponse
|
8 |
import subprocess
|
@@ -143,12 +143,12 @@ async def query(question_request: QuestionRequest):
|
|
143 |
raise HTTPException(status_code=500, detail="Internal Server Error")
|
144 |
|
145 |
|
146 |
-
def run_streamlit():
|
147 |
-
subprocess.Popen(["streamlit", "run", "frontend.py", "--server.port", "8501"])
|
148 |
|
149 |
-
|
150 |
-
async def startup_event():
|
151 |
-
run_streamlit()
|
152 |
|
153 |
@app.get("/")
|
154 |
async def root():
|
|
|
2 |
import re
|
3 |
import logging
|
4 |
from fastapi import FastAPI, HTTPException, BackgroundTasks
|
5 |
+
#from fastapi.middleware.cors import CORSMiddleware
|
6 |
from fastapi.responses import StreamingResponse
|
7 |
from fastapi.responses import RedirectResponse
|
8 |
import subprocess
|
|
|
143 |
raise HTTPException(status_code=500, detail="Internal Server Error")
|
144 |
|
145 |
|
146 |
+
#def run_streamlit():
|
147 |
+
#subprocess.Popen(["streamlit", "run", "frontend.py", "--server.port", "8501"])
|
148 |
|
149 |
+
#@app.on_event("startup")
|
150 |
+
#async def startup_event():
|
151 |
+
#run_streamlit()
|
152 |
|
153 |
@app.get("/")
|
154 |
async def root():
|