Spaces:
Sleeping
Sleeping
| from fastapi.middleware.cors import CORSMiddleware | |
| cors_context = {"middleware_class":CORSMiddleware, | |
| "allow_origins": ["*"], | |
| "allow_credentials": True, | |
| "allow_methods": ["*"], | |
| "allow_headers": ["*"] | |
| } |