diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dbf6b07..0690d44 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,6 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: "3.13" python-version: "3.12" - name: Cache pip dependencies @@ -60,7 +59,6 @@ jobs: uses: actions/setup-python@v5 with: - python-version: "3.13" python-version: "3.12" - name: Cache pip dependencies diff --git a/backend/main.py b/backend/main.py index 6156417..ff4af5f 100644 --- a/backend/main.py +++ b/backend/main.py @@ -423,7 +423,7 @@ def health_check(): # Blog Generator Endpoint # ----------------------------- @app.post("/generate-blog") -@limiter.limit("5/minute") +@limiter.limit("15/hour") async def create_blog( request: Request, problem: Problem,