refactor(pr): remove forbidden translator changes

Drop the chat-completions translator edits from this PR so the branch complies with the repository policy that forbids pull-request changes under internal/translator. The remaining PR stays focused on the executor-level Codex continuity fix that was validated to restore cache reuse.
This commit is contained in:
VooDisss
2026-03-27 19:34:13 +02:00
parent 35f158d526
commit 79755e76ea
2 changed files with 0 additions and 19 deletions

View File

@@ -65,9 +65,6 @@ func ConvertOpenAIRequestToCodex(modelName string, inputRawJSON []byte, stream b
// Model
out, _ = sjson.SetBytes(out, "model", modelName)
if v := gjson.GetBytes(rawJSON, "prompt_cache_retention"); v.Exists() {
out, _ = sjson.SetBytes(out, "prompt_cache_retention", v.Value())
}
// Build tool name shortening map from original tools (if any)
originalToolNameMap := map[string]string{}