From 6924e86b8de29731e7a3915d273ab91453209484 Mon Sep 17 00:00:00 2001 From: Paulo Reyes Date: Thu, 29 Jan 2026 13:42:16 +0800 Subject: [PATCH] Updated rate limit feedback --- app/main.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/main.py b/app/main.py index 895de96..796b493 100644 --- a/app/main.py +++ b/app/main.py @@ -50,8 +50,7 @@ def create_application() -> FastAPI: status_code=429, content={ "error": "Too Many Requests", - "message": "Chill out! You've reached the rate limit. Please wait a moment before trying again.", - "limit": str(exc.detail) + "message": "Chill out! You've reached the rate limit. Please wait a moment before trying again." } )