shivanis14 commited on
Commit
8d8c141
·
verified ·
1 Parent(s): cb0ba0f

Update appDeepseekCoder.py

Browse files
Files changed (1) hide show
  1. appDeepseekCoder.py +4 -1
appDeepseekCoder.py CHANGED
@@ -8,4 +8,7 @@ app = FastAPI()
8
  def read_main():
9
  return {"message": "Hello World from main app"}
10
 
11
- mount_chainlit(app=app, target="app.py", path="/")
 
 
 
 
8
  def read_main():
9
  return {"message": "Hello World from main app"}
10
 
11
+ mount_chainlit(app=app, target="app.py", path="/quiz")
12
+
13
+ if __name__ == "__main__":
14
+ uvicorn.run(app, host="0.0.0.0", port=7860)