chore(ai): lower codex default verbosity

This commit is contained in:
Mario Zechner
2026-04-25 16:20:56 +02:00
parent dcf2651631
commit 953f89fbe9
2 changed files with 5 additions and 1 deletions

View File

@@ -2,6 +2,10 @@
## [Unreleased]
### Changed
- Changed OpenAI Codex Responses default text verbosity to `low` when no verbosity is specified.
### Fixed
- Fixed OpenAI-compatible prompt cache tests to cover proxies that explicitly disable long cache retention.

View File

@@ -325,7 +325,7 @@ function buildRequestBody(
stream: true,
instructions: context.systemPrompt,
input: messages,
text: { verbosity: options?.textVerbosity || "medium" },
text: { verbosity: options?.textVerbosity || "low" },
include: ["reasoning.encrypted_content"],
prompt_cache_key: options?.sessionId,
tool_choice: "auto",