You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Sources/OpenAI/Public/Models/Models/Models.swift
+16-2Lines changed: 16 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -53,6 +53,20 @@ public extension Model {
53
53
@available(*, deprecated, message:"On April 14th, 2025, developers were notified that the gpt-4.5-preview model is deprecated and will be removed from the API in the coming months. Recommended replacement: gpt-4.1")
54
54
staticletgpt4_5_preview="gpt-4.5-preview"
55
55
56
+
// GPT-5
57
+
58
+
/// `gpt-5` OpenAI's best AI system with significant leap in intelligence, designed for logic and multi-step tasks with deep reasoning
59
+
staticletgpt5="gpt-5"
60
+
61
+
/// `gpt-5-mini` Lightweight GPT-5 version for cost-sensitive applications
62
+
staticletgpt5_mini="gpt-5-mini"
63
+
64
+
/// `gpt-5-nano` Optimized for ultra-low latency and fast execution
65
+
staticletgpt5_nano="gpt-5-nano"
66
+
67
+
/// `gpt-5-chat` Built for advanced, natural, multimodal conversations
0 commit comments