From f491699262b016009871b9f7ceb0558696231f32 Mon Sep 17 00:00:00 2001 From: OpenRouter SDK Bot Date: Thu, 9 Jul 2026 17:27:04 +0000 Subject: [PATCH] chore: update OpenAPI spec [sdk-bot] --- .speakeasy/in.openapi.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.speakeasy/in.openapi.yaml b/.speakeasy/in.openapi.yaml index 99e8729..2200f9b 100644 --- a/.speakeasy/in.openapi.yaml +++ b/.speakeasy/in.openapi.yaml @@ -3101,6 +3101,8 @@ components: properties: effort: $ref: '#/components/schemas/ReasoningEffort' + mode: + $ref: '#/components/schemas/ReasoningMode' summary: $ref: '#/components/schemas/ReasoningSummaryVerbosity' type: object @@ -19565,6 +19567,17 @@ components: - text: Step by step analysis type: summary_text type: reasoning + ReasoningMode: + description: >- + Selects the reasoning mode. `standard` is the default; `pro` engages deeper reasoning on models that support it, + billed at standard token rates. Only supported by OpenAI GPT-5.6 and newer. + enum: + - standard + - pro + - null + example: standard + nullable: true + type: string ReasoningSummaryPartAddedEvent: allOf: - $ref: '#/components/schemas/BaseReasoningSummaryPartAddedEvent'