Spaces:
Configuration error

chat / main.py
yonkasoft's picture
Create main.py
100bced verified
raw
history blame
107 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World"}