r23 commited on
Commit
389d1fc
1 Parent(s): 7669879

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py CHANGED
@@ -1,3 +1,11 @@
 
 
 
 
 
 
 
 
1
  from diffusers import StableDiffusionLDM3DPipeline
2
 
3
  pipe = StableDiffusionLDM3DPipeline.from_pretrained("Intel/ldm3d")
 
1
+ from fastapi import FastAPI
2
+
3
+ app = FastAPI()
4
+
5
+ @app.get(“/”) def hello(): return {“message”: “Hello World”}
6
+
7
+
8
+
9
  from diffusers import StableDiffusionLDM3DPipeline
10
 
11
  pipe = StableDiffusionLDM3DPipeline.from_pretrained("Intel/ldm3d")