Skip to content

Commit dddd618

Browse files
committed
Update model deprecation list
1 parent c9796f5 commit dddd618

6 files changed

Lines changed: 3 additions & 5 deletions

File tree

Private/Assert-DeprecationModel.ps1

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ class OpenAIDepricationModels {
4848
'text-moderation-007' = [datetime]::new(2025, 10, 27)
4949
'text-moderation-stable' = [datetime]::new(2025, 10, 27)
5050
'text-moderation-latest' = [datetime]::new(2025, 10, 27)
51+
'codex-mini-latest' = [datetime]::new(2026, 01, 16)
52+
'chatgpt-4o-latest' = [datetime]::new(2026, 02, 17)
5153
'gpt-4-0314' = [datetime]::new(2026, 03, 26)
5254
'gpt-4-1106-preview' = [datetime]::new(2026, 03, 26)
5355
'gpt-4-0125-preview' = [datetime]::new(2026, 03, 26)

Public/Chat/Request-ChatCompletion.ps1

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ function Request-ChatCompletion {
2323
'gpt-4',
2424
'gpt-4o',
2525
'gpt-4o-mini',
26-
'chatgpt-4o-latest',
2726
'gpt-4o-audio-preview',
2827
'gpt-4o-mini-audio-preview',
2928
'gpt-4o-search-preview',

Public/Enter-ChatGPT.ps1

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ function Enter-ChatGPT {
77
'gpt-4',
88
'gpt-4o',
99
'gpt-4o-mini',
10-
'chatgpt-4o-latest',
1110
'gpt-3.5-turbo-16k',
1211
'gpt-3.5-turbo-1106',
1312
'gpt-3.5-turbo-0125',

Public/Responses/Request-Response.ps1

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ function Request-Response {
4343
'o4-mini',
4444
'o3-deep-research',
4545
'o4-mini-deep-research',
46-
'codex-mini-latest',
4746
'computer-use-preview'
4847
)]
4948
[string]$Model = 'gpt-4o-mini',

Public/Responses/Request-ResponseCompaction.ps1

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ function Request-ResponseCompaction {
4343
'o4-mini',
4444
'o3-deep-research',
4545
'o4-mini-deep-research',
46-
'codex-mini-latest',
4746
'computer-use-preview'
4847
)]
4948
[string]$Model = 'gpt-4o-mini',

Tests/Responses/Request-Response.tests.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1121,7 +1121,7 @@ STEP2. Use the timestamp tool to save the resulting timestamp in date and time,
11211121
{
11221122
$param = @{
11231123
Message = 'List all files that the size is larger than 100MB in /var/logs'
1124-
Model = 'codex-mini-latest'
1124+
Model = 'gpt-5-codex-mini'
11251125
UseLocalShellTool = $true
11261126
Store = $false
11271127
TimeoutSec = 30

0 commit comments

Comments
 (0)