Spaces:
Sleeping
Sleeping
Upload app.py
Browse files
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]:
|