catheihei-api / main.py
Next7years
last try
734297d
raw
history blame
320 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}
'''
@app.post("/generate")
def generate_image(input: str):
model = StableDiffusionPipeline.from_pretrained("runwayml/stable-diffusion-v1-5")
return {"image": "hello from the server", "input": input}
'''