3.1-finituning / app.py
souzat19's picture
Create app.py
d0a12b9 verified
raw
history blame
108 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}