test-llm / app /main.py
kneyugn
uvicorn
418fd77
raw
history blame contribute delete
No virus
107 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}