Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .speakeasy/in.openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3101,6 +3101,8 @@ components:
properties:
effort:
$ref: '#/components/schemas/ReasoningEffort'
mode:
$ref: '#/components/schemas/ReasoningMode'
summary:
$ref: '#/components/schemas/ReasoningSummaryVerbosity'
type: object
Expand Down Expand Up @@ -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'
Expand Down
Loading