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