heymenn commited on
Commit
aa2b4c1
·
1 Parent(s): ced1993

fix backend cors

Browse files
Files changed (1) hide show
  1. backend/main.py +0 -6
backend/main.py CHANGED
@@ -30,12 +30,6 @@ app = FastAPI(title="3GPP Innovation Backend")
30
  # Initialize DataService
31
  data_service = DataService()
32
 
33
- app.add_middleware(
34
- allow_credentials=True,
35
- allow_methods=["*"],
36
- allow_headers=["*"],
37
- )
38
-
39
 
40
  def ask_gemini(prompt, content):
41
  MAX_LEN = 10000
 
30
  # Initialize DataService
31
  data_service = DataService()
32
 
 
 
 
 
 
 
33
 
34
  def ask_gemini(prompt, content):
35
  MAX_LEN = 10000