File size: 547 Bytes
bc5c1e5 6c0ac6b ba94f40 6c0ac6b bc5c1e5 ba94f40 5b2426d ba94f40 6c0ac6b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | from contextlib import asynccontextmanager
from fastapi import FastAPI
from fastapi.middleware.cors import CORSMiddleware
@asynccontextmanager
async def lifespan(app):
from TextGen.router import startup
await startup()
yield
app = FastAPI(title="Deploying FastAPI Apps on Huggingface", lifespan=lifespan)
app.add_middleware(
CORSMiddleware,
allow_origins=["https://jofthomas-everchanging-quest.static.hf.space"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
from TextGen import router
|