Spaces:
Sleeping
Sleeping
File size: 316 Bytes
6c0ac6b ba94f40 6c0ac6b ba94f40 57aba77 ba94f40 6c0ac6b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
from fastapi import FastAPI
from fastapi.middleware.cors import CORSMiddleware
app.add_middleware(
CORSMiddleware,
allow_origins=[],
allow_origin_regex=r"^https://jofthomas-.*\.hf\.space$",
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
from TextGen import router
|