Skip to content

Commit 85f2eee

Browse files
committed
fix(lint): format reasoning_effort union type
1 parent aefdb25 commit 85f2eee

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

src/services/copilot/create-chat-completions.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,14 @@ export interface ChatCompletionsPayload {
148148
| null
149149
user?: string | null
150150
thinking_budget?: number
151-
reasoning_effort?: "none" | "minimal" | "low" | "medium" | "high" | "xhigh" | null
151+
reasoning_effort?:
152+
| "none"
153+
| "minimal"
154+
| "low"
155+
| "medium"
156+
| "high"
157+
| "xhigh"
158+
| null
152159
}
153160

154161
export interface Tool {

0 commit comments

Comments
 (0)