Skip to content

Commit 6842fff

Browse files
daniel-lxsellipsis-dev[bot]roomotehannesrudolph
committed
Fix GPT-5 Responses API issues with condensing and image support (#7067)
Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> Co-authored-by: Roo Code <[email protected]> Co-authored-by: Hannes Rudolph <[email protected]>
1 parent 602a4fe commit 6842fff

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/api/providers/openai-native.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1197,9 +1197,9 @@ export class OpenAiNativeHandler extends BaseProvider implements SingleCompletio
11971197
}
11981198

11991199
/**
1200-
* Returns a shallow-cloned ModelInfo with pricing overridden for the given tier, if available.
1201-
* If no tier or no overrides exist, the original ModelInfo is returned.
1202-
*/
1200+
* Returns a shallow-cloned ModelInfo with pricing overridden for the given tier, if available.
1201+
* If no tier or no overrides exist, the original ModelInfo is returned.
1202+
*/
12031203
private applyServiceTierPricing(info: ModelInfo, tier?: ServiceTier): ModelInfo {
12041204
if (!tier || tier === "default") return info
12051205

src/core/task/Task.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2791,7 +2791,7 @@ export class Task extends EventEmitter<TaskEvents> implements TaskLike {
27912791
// Checkpoints
27922792

27932793
public async checkpointSave(force: boolean = false, suppressMessage: boolean = false) {
2794-
return checkpointSave(this, force, suppressMessage)
2794+
return checkpointSave(this, force, undefined, suppressMessage)
27952795
}
27962796

27972797
public async checkpointRestore(options: CheckpointRestoreOptions) {

0 commit comments

Comments
 (0)