aminaj commited on
Commit
3175e88
·
verified ·
1 Parent(s): 40f00a3

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +13 -1
main.py CHANGED
@@ -26,6 +26,7 @@ import pptx
26
  import os
27
  import utils
28
  import shutil
 
29
 
30
  ## APPLICATION LIFESPAN
31
  # Load the environment variables using FastAPI lifespan event so that they are available throughout the application
@@ -367,4 +368,15 @@ async def get_answer_with_chat_history(llm: str, question: Question):
367
  # Handle errors
368
  raise HTTPException(status_code=500, detail=str(e))
369
 
370
- return response
 
 
 
 
 
 
 
 
 
 
 
 
26
  import os
27
  import utils
28
  import shutil
29
+ import nest_asyncio
30
 
31
  ## APPLICATION LIFESPAN
32
  # Load the environment variables using FastAPI lifespan event so that they are available throughout the application
 
368
  # Handle errors
369
  raise HTTPException(status_code=500, detail=str(e))
370
 
371
+ return response
372
+
373
+ # Set ngrok authentication token
374
+ ngrok.set_auth_token(os.environ['NGROK_AUTHTOKEN'])
375
+
376
+ # Establish ngrok tunnel
377
+ ngrok_tunnel = ngrok.connect(7860)
378
+ print('Public URL:', ngrok_tunnel.public_url)
379
+
380
+ # Run FastAPI server using uvicorn
381
+ nest_asyncio.apply()
382
+ uvicorn.run(app, port=7860)