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

Update appDeepseekCoder.py

Browse files
Files changed (1) hide show
  1. appDeepseekCoder.py +11 -0
appDeepseekCoder.py CHANGED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from fastapi import FastAPI
2
+ from chainlit.utils import mount_chainlit
3
+
4
+ app = FastAPI()
5
+
6
+
7
+ @app.get("/app")
8
+ def read_main():
9
+ return {"message": "Hello World from main app"}
10
+
11
+ mount_chainlit(app=app, target="app.py", path="/")