Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -145,10 +145,13 @@ async def query(question_request: QuestionRequest):
|
|
145 |
def run_streamlit():
|
146 |
subprocess.Popen(["streamlit", "run", "frontend.py", "--server.port", "8501"])
|
147 |
|
|
|
|
|
|
|
|
|
148 |
@app.get("/")
|
149 |
-
async def root(
|
150 |
-
|
151 |
-
return {"message": "Streamlit app is running at http://localhost:8501"}
|
152 |
|
153 |
|
154 |
#if __name__ == '__main__':
|
|
|
145 |
def run_streamlit():
|
146 |
subprocess.Popen(["streamlit", "run", "frontend.py", "--server.port", "8501"])
|
147 |
|
148 |
+
@app.on_event("startup")
|
149 |
+
async def startup_event():
|
150 |
+
run_streamlit()
|
151 |
+
|
152 |
@app.get("/")
|
153 |
+
async def root():
|
154 |
+
return RedirectResponse(url="http://localhost:8501")
|
|
|
155 |
|
156 |
|
157 |
#if __name__ == '__main__':
|