evBackend / TextGen /__init__.py
Jofthomas's picture
Jofthomas HF staff
Test to not allow duplicate of space
5b2426d
raw
history blame
367 Bytes
from fastapi import FastAPI
from fastapi.middleware.cors import CORSMiddleware
app = FastAPI(title="Deploying FastAPI Apps on Huggingface")
app.add_middleware(
CORSMiddleware,
allow_origins=["https://jofthomas-everchanging-quest.static.hf.space"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
from TextGen import router