Skip to content

Commit 9d9cc59

Browse files
committed
Update reasoning effort parameter values to include 'none'
1 parent ab81206 commit 9d9cc59

11 files changed

Lines changed: 16 additions & 18 deletions

Docs/New-Assistant.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,8 @@ Position: Named
9393
```
9494

9595
### -ReasoningEffort
96-
**o1 and o3-mini models only**
9796
Constrains effort on reasoning for reasoning models.
98-
Currently supported values are `low`, `medium`, and `high`.
97+
Supported values are `none`, `low`, `medium`, and `high`.
9998
Reducing reasoning effort can result in faster responses and fewer tokens used on reasoning in a response.
10099

101100
```yaml

Docs/Request-ChatCompletion.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ Default value: medium
429429
```
430430

431431
### -ReasoningEffort
432-
Constrains effort on reasoning for reasoning models. Currently supported values are low, medium, and high.
432+
Constrains effort on reasoning for reasoning models. Currently supported values are `none`, `low`, `medium`, and `high`.
433433
Reducing reasoning effort can result in faster responses and fewer tokens used on reasoning in a response.
434434

435435
```yaml

Docs/Request-Response.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -877,7 +877,7 @@ Default value: medium
877877
```
878878

879879
### -ReasoningEffort
880-
Constrains effort on reasoning for reasoning models. Currently supported values are low, medium, and high.
880+
Constrains effort on reasoning for reasoning models. Currently supported values are `none`, `low`, `medium`, and `high`.
881881

882882
```yaml
883883
Type: String

Docs/Set-Assistant.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,8 @@ Position: Named
105105
```
106106

107107
### -ReasoningEffort
108-
**o1 and o3-mini models only**
109108
Constrains effort on reasoning for reasoning models.
110-
Currently supported values are `low`, `medium`, and `high`.
109+
Supported values are `none`, `low`, `medium`, and `high`.
111110
Reducing reasoning effort can result in faster responses and fewer tokens used on reasoning in a response.
112111

113112
```yaml

Docs/Start-ThreadRun.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,9 +144,8 @@ Position: Named
144144
145145
146146
### -ReasoningEffort
147-
**o1 and o3-mini models only**
148147
Constrains effort on reasoning for reasoning models.
149-
Currently supported values are `low`, `medium`, and `high`.
148+
Supported values are `none`, `low`, `medium`, and `high`.
150149
Reducing reasoning effort can result in faster responses and fewer tokens used on reasoning in a response.
151150

152151
```yaml

Public/Assistants/New-Assistant.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ function New-Assistant {
4747

4848
[Parameter()]
4949
[Alias('reasoning_effort')]
50-
[Completions('minimal', 'low', 'medium', 'high')]
51-
[string]$ReasoningEffort = 'medium',
50+
[Completions('none', 'minimal', 'low', 'medium', 'high')]
51+
[string]$ReasoningEffort,
5252

5353
[Parameter()]
5454
[switch]$UseCodeInterpreter,

Public/Assistants/Set-Assistant.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ function Set-Assistant {
4848

4949
[Parameter()]
5050
[Alias('reasoning_effort')]
51-
[Completions('minimal', 'low', 'medium', 'high')]
52-
[string]$ReasoningEffort = 'medium',
51+
[Completions('none', 'minimal', 'low', 'medium', 'high')]
52+
[string]$ReasoningEffort,
5353

5454
[Parameter()]
5555
[switch]$UseCodeInterpreter,

Public/Batch/Start-Batch.ps1

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ function Start-Batch {
1717
'/v1/responses',
1818
'/v1/chat/completions',
1919
'/v1/embeddings',
20-
'/v1/completions'
20+
'/v1/completions',
21+
'/v1/moderations'
2122
)]
2223
[string][LowerCaseTransformation()]$Endpoint = '/v1/chat/completions',
2324

Public/Chat/Request-ChatCompletion.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,8 +165,8 @@ function Request-ChatCompletion {
165165

166166
[Parameter()]
167167
[Alias('reasoning_effort')]
168-
[Completions('minimal', 'low', 'medium', 'high')]
169-
[string]$ReasoningEffort = 'medium',
168+
[Completions('none', 'minimal', 'low', 'medium', 'high')]
169+
[string]$ReasoningEffort,
170170

171171
[Parameter()]
172172
[System.Collections.IDictionary]$MetaData,

Public/Responses/Request-Response.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ function Request-Response {
385385

386386
#region Reasoning
387387
[Parameter()]
388-
[Completions('minimal', 'low', 'medium', 'high')]
388+
[Completions('none', 'minimal', 'low', 'medium', 'high')]
389389
[string]$ReasoningEffort,
390390

391391
[Parameter()]

0 commit comments

Comments
 (0)