moraxgiga's picture
Update TextGen/router.py
3a45825 verified
raw
history blame
No virus
362 Bytes
from pydantic import BaseModel
from fastapi.middleware.cors import CORSMiddleware
from TextGen import app
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
@app.get("/", tags=["Home"])
def api_home():
return {'detail': 'Welcome to FastAPI TextGen Tutorial!'}