website-RAG / app.py
beeguy's picture
test_fastapi
9c7a5d2
raw
history blame
110 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}