From 157aabb0eebebd43064d65c64be87626ee966424 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Oct 2025 22:57:29 +0000 Subject: [PATCH 1/3] Bump flake8-isort from 6.1.2 to 7.0.0 in /requirements Bumps [flake8-isort](https://github.com/gforcada/flake8-isort) from 6.1.2 to 7.0.0. - [Changelog](https://github.com/gforcada/flake8-isort/blob/main/CHANGES.rst) - [Commits](https://github.com/gforcada/flake8-isort/compare/6.1.2...7.0.0) --- updated-dependencies: - dependency-name: flake8-isort dependency-version: 7.0.0 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- requirements/dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/dev.txt b/requirements/dev.txt index e6169c5..1c869a7 100644 --- a/requirements/dev.txt +++ b/requirements/dev.txt @@ -13,7 +13,7 @@ black==25.9.0 flake8-blind-except==0.2.1 flake8-debugger==4.1.2 flake8-docstrings==1.7.0 -flake8-isort==6.1.2 +flake8-isort==7.0.0 Flake8-pyproject==1.2.3 flake8==7.3.0 isort==6.0.1 From b710b4a7694690d07ebc89ea6e8d92751a2496c2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Nov 2025 21:32:47 +0000 Subject: [PATCH 2/3] Bump environs from 14.4.0 to 14.5.0 in /requirements Bumps [environs](https://github.com/sloria/environs) from 14.4.0 to 14.5.0. - [Changelog](https://github.com/sloria/environs/blob/main/CHANGELOG.md) - [Commits](https://github.com/sloria/environs/compare/14.4.0...14.5.0) --- updated-dependencies: - dependency-name: environs dependency-version: 14.5.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- requirements/prod.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/prod.txt b/requirements/prod.txt index 0fc3da7..4abf54e 100644 --- a/requirements/prod.txt +++ b/requirements/prod.txt @@ -16,4 +16,4 @@ gunicorn>=19.9.0 supervisor==4.3.0 # Environment variable parsing -environs==14.4.0 +environs==14.5.0 From 63a946ad4fb00855c15f088f3e1ce74f979f611a Mon Sep 17 00:00:00 2001 From: Gabriel Gavilan Date: Sat, 8 Nov 2025 12:36:07 +0100 Subject: [PATCH 3/3] Update readme to reflect Azure changes and gpt-5-pro/codex test results --- README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/README.md b/README.md index bf1f4a4..e207e98 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,25 @@ A service that allows Cursor to use Azure GPT-5 deployments by: This project originates from Cursor's lack of support for Azure models that are only served through the **Responses API**. It will hopefully become obsolete as Cursor continues to improve its model support. +> [!IMPORTANT] +> **Azure** now supports the **Completions API** for the models `gpt-5`, `gpt-5-mini`, and `gpt-5-nano`. +> +> They can now be used directly in Cursor, but without the ability to change the _Reasoning Effort_ / _Verbosity_ / _Summary Level_. To do so, you can still use this project. +> +> The models `gpt-5-pro` and `gpt-5-codex` remain available only through the **Responses API**, but work great with this project (see list of specific model limitations in the next section). + +## Supported Models + +The entire gpt-5 series is supported, although `gpt-5-pro` and `gpt-5-codex` have some limitations on the reasoning effort / verbosity values they accept: + +| Model Name | Reasoning Effort | Verbosity | +|---|---|---| +| gpt-5 | ✅ `minimal` `low` `medium` `high` | ✅ `low` `medium` `high` | +| gpt-5-mini | ✅ `minimal` `low` `medium` `high` | ✅ `low` `medium` `high` | +| gpt-5-nano | ✅ `minimal` `low` `medium` `high` | ✅ `low` `medium` `high` | +| gpt-5-pro | ⚠️ _~~`minimal`~~ ~~`low`~~ ~~`medium`~~_ `high` | ✅ `low` `medium` `high` | +| gpt-5-codex |⚠️ _~~`minimal`~~_ `low` `medium` `high` | ⚠️ _~~`low`~~_ `medium` _~~`high`~~_ | + ## Feature highlights - Switching between `high`/`medium`/`low` reasoning effort levels by selecting different models in Cursor.