Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -60,7 +59,6 @@ jobs:
uses: actions/setup-python@v5
with:

python-version: "3.13"
python-version: "3.12"

- name: Cache pip dependencies
Expand Down
2 changes: 1 addition & 1 deletion backend/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down