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
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,16 @@ public typealias Model = String
10
10
11
11
publicextensionModel{
12
12
// Chat Completion
13
+
14
+
// o1 series
15
+
// The o1 series of models are trained with reinforcement learning to perform complex reasoning. o1 models think before they answer, producing a long internal chain of thought before responding to the user.
16
+
17
+
/// `o1`: reasoning model designed to solve hard problems across domains
18
+
staticleto1="o1"
19
+
20
+
/// `o1-mini`: fast and affordable reasoning model for specialized tasks
21
+
staticleto1_mini="o1-mini"
22
+
13
23
// GPT-4
14
24
15
25
/// `gpt-4o`, currently the most advanced, multimodal flagship model that's cheaper and faster than GPT-4 Turbo.
0 commit comments