chore(ai): lower codex default verbosity
This commit is contained in:
@@ -2,6 +2,10 @@
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Changed OpenAI Codex Responses default text verbosity to `low` when no verbosity is specified.
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- Fixed OpenAI-compatible prompt cache tests to cover proxies that explicitly disable long cache retention.
|
- Fixed OpenAI-compatible prompt cache tests to cover proxies that explicitly disable long cache retention.
|
||||||
|
|||||||
@@ -325,7 +325,7 @@ function buildRequestBody(
|
|||||||
stream: true,
|
stream: true,
|
||||||
instructions: context.systemPrompt,
|
instructions: context.systemPrompt,
|
||||||
input: messages,
|
input: messages,
|
||||||
text: { verbosity: options?.textVerbosity || "medium" },
|
text: { verbosity: options?.textVerbosity || "low" },
|
||||||
include: ["reasoning.encrypted_content"],
|
include: ["reasoning.encrypted_content"],
|
||||||
prompt_cache_key: options?.sessionId,
|
prompt_cache_key: options?.sessionId,
|
||||||
tool_choice: "auto",
|
tool_choice: "auto",
|
||||||
|
|||||||
Reference in New Issue
Block a user