From 8871f136d4996895e08d840b61a823620b120e6b Mon Sep 17 00:00:00 2001 From: zwitschi Date: Wed, 29 Apr 2026 13:01:55 +0200 Subject: [PATCH] Update application title and headers; specify versions for bcrypt and passlib in requirements --- backend/app/main.py | 2 +- backend/app/services/openrouter.py | 2 +- backend/requirements.txt | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/backend/app/main.py b/backend/app/main.py index c548ae1..1c54f01 100644 --- a/backend/app/main.py +++ b/backend/app/main.py @@ -22,7 +22,7 @@ async def lifespan(app: FastAPI): app = FastAPI( - title="AI Allucanget Biz API", + title="All You Can GET AI Biz API", description="Multi-modal AI generation API powered by openrouter.ai", version="0.1.0", lifespan=lifespan, diff --git a/backend/app/services/openrouter.py b/backend/app/services/openrouter.py index 4843603..6778ee3 100644 --- a/backend/app/services/openrouter.py +++ b/backend/app/services/openrouter.py @@ -20,7 +20,7 @@ def _headers() -> dict[str, str]: "Authorization": f"Bearer {_api_key()}", "Content-Type": "application/json", "HTTP-Referer": os.getenv("APP_URL", "https://ai.allucanget.biz"), - "X-Title": os.getenv("APP_NAME", "AI Allucanget"), + "X-Title": os.getenv("APP_NAME", "All You Can GET AI"), } diff --git a/backend/requirements.txt b/backend/requirements.txt index f584e29..cbc952b 100644 --- a/backend/requirements.txt +++ b/backend/requirements.txt @@ -1,5 +1,5 @@ anyio -bcrypt +bcrypt==4.0.1 blinker certifi cryptography @@ -13,7 +13,7 @@ httpx Jinja2 MarkupSafe packaging -passlib +passlib==1.7.4 pydantic python-dotenv python-jose