We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c06556e commit 785d84fCopy full SHA for 785d84f
1 file changed
Tool/Sources/Preferences/Types/ChatGPTModel.swift
@@ -4,6 +4,7 @@ public enum ChatGPTModel: String {
4
case gpt35Turbo = "gpt-3.5-turbo"
5
case gpt35Turbo16k = "gpt-3.5-turbo-16k"
6
case gpt4o = "gpt-4o"
7
+ case gpt4oMini = "gpt-4o-mini"
8
case gpt4 = "gpt-4"
9
case gpt432k = "gpt-4-32k"
10
case gpt4Turbo = "gpt-4-turbo"
@@ -63,6 +64,8 @@ public extension ChatGPTModel {
63
64
return 128000
65
case .gpt4o:
66
67
+ case .gpt4oMini:
68
+ return 128000
69
}
70
71
0 commit comments