Skip to content

Commit 5186569

Browse files
feat(sdk): add xhigh reasoning effort support to TypeScript SDK (#8108)
Add "xhigh" to the ModelReasoningEffort type to match the Rust backend which already supports this reasoning level for models like gpt-5.1-codex-max.
1 parent 3a32716 commit 5186569

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdk/typescript/src/threadOptions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ export type ApprovalMode = "never" | "on-request" | "on-failure" | "untrusted";
22

33
export type SandboxMode = "read-only" | "workspace-write" | "danger-full-access";
44

5-
export type ModelReasoningEffort = "minimal" | "low" | "medium" | "high";
5+
export type ModelReasoningEffort = "minimal" | "low" | "medium" | "high" | "xhigh";
66

77
export type ThreadOptions = {
88
model?: string;

0 commit comments

Comments
 (0)