textLLM / app.py
MohamedSaeed-dev's picture
Upload 3 files
52d4b48 verified
raw
history blame
116 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def greet_json():
return {"Hello": "World!"}