From f28f634d09fd048f6f56b83d1b4cd3f322a50eb6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 2 Sep 2026 10:07:32 +0000 Subject: [PATCH] chore(deps): bump openai from 1.58.1 to 3.6.0 in /backend Bumps [openai](https://github.com/openai/openai-python) from 1.58.1 to 3.6.0. - [Release notes](https://github.com/openai/openai-python/releases) - [Changelog](https://github.com/openai/openai-python/blob/main/CHANGELOG.md) - [Commits](https://github.com/openai/openai-python/compare/v1.58.1...v3.6.0) --- updated-dependencies: - dependency-name: openai dependency-version: 3.6.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- backend/pyproject.toml | 2 +- backend/requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/pyproject.toml b/backend/pyproject.toml index 370d75d..bb923b5 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -29,7 +29,7 @@ dependencies = [ "pydantic-settings==2.7.1", "sqlalchemy==2.0.36", "aiosqlite==0.20.0", - "openai==1.58.1", + "openai==3.6.0", "httpx==0.28.1", "passlib[bcrypt]==1.7.4", # Mirror requirements.txt: PyJWT is imported by app/core/auth.py; bcrypt 4.1+ diff --git a/backend/requirements.txt b/backend/requirements.txt index 9d21d24..29de52b 100644 --- a/backend/requirements.txt +++ b/backend/requirements.txt @@ -12,7 +12,7 @@ sqlalchemy==2.0.36 aiosqlite==0.20.0 # LLM / AI -openai==1.58.1 +openai==3.6.0 # HTTP Client httpx==0.28.1