KarthikMuraliM commited on
Commit
80b1953
·
verified ·
1 Parent(s): 88a9fa1

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +1 -1
main.py CHANGED
@@ -70,7 +70,7 @@ def health_check():
70
  return {"status": "ok", "message": "Data Analyst Agent is running."}
71
 
72
  @app.post("/api/")
73
- async def process_analysis_request(files: List[UploadFile] = File(...)):
74
  # This is the main function that will be rewritten.
75
 
76
  max_retries = 3
 
70
  return {"status": "ok", "message": "Data Analyst Agent is running."}
71
 
72
  @app.post("/api/")
73
+ async def process_analysis_request(request: Request):
74
  # This is the main function that will be rewritten.
75
 
76
  max_retries = 3