shahabkahn commited on
Commit
4966cdc
·
verified ·
1 Parent(s): c40506c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -3
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(background_tasks: BackgroundTasks):
150
- background_tasks.add_task(run_streamlit)
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__':