Spaces:
Build error
Build error
File size: 188 Bytes
9dbb9e5 | 1 2 3 4 5 6 7 8 9 10 | import uvicorn
from fastapi import FastAPI
app = FastAPI()
# Here you can do things such as load your models
@app.get("/")
def read_root(input_text):
return {f"Hello {input_text}!"} |