Spaces:
Runtime error
Runtime error
Update appDeepseekCoder.py
Browse files- 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)
|