LLM_Mimic / main.py
kiranb99's picture
Create main.py
8da9e95
raw
history blame
107 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}