Ani14 commited on
Commit
a8a080c
·
verified ·
1 Parent(s): d0dbd33

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -155,6 +155,7 @@ async def get_debug_logs():
155
  @app.post("/api/honeypot-detection", response_model=HoneypotResponse)
156
  @app.post("/api/honeypot-detection/", response_model=HoneypotResponse)
157
  async def honeypot_detection(
 
158
  request_data: HoneypotRequest,
159
  api_key: str = Depends(get_api_key)
160
  ) -> Dict[str, Any]:
 
155
  @app.post("/api/honeypot-detection", response_model=HoneypotResponse)
156
  @app.post("/api/honeypot-detection/", response_model=HoneypotResponse)
157
  async def honeypot_detection(
158
+ request: Request,
159
  request_data: HoneypotRequest,
160
  api_key: str = Depends(get_api_key)
161
  ) -> Dict[str, Any]: