Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Add gpt4o-mini model #53

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions Sources/SwiftOpenAI/OpenAI/DataModels/OpenAIModelType.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import Foundation

public enum OpenAIModelType {
case gpt4o(GPT4o)
case gpt4o_mini(GPT4o_mini)
case gpt4(GPT4)
case gpt3_5(GPT3_5)
case embedding(EmbeddingModel)
Expand All @@ -10,6 +11,8 @@ public enum OpenAIModelType {
switch self {
case .gpt4o(let gpt4oModel):
return gpt4oModel.rawValue
case .gpt4o_mini(let gpt4oMiniModel):
return gpt4oMiniModel.rawValue
case .gpt4(let gpt4Model):
return gpt4Model.rawValue
case .gpt3_5(let gpt3_5Model):
Expand All @@ -36,6 +39,10 @@ public enum GPT4o: String {
case gpt_4o_2024_05_13 = "gpt-4o-2024-05-13"
}

public enum GPT4o_mini: String {
case base = "gpt-4o-mini"
}

public enum GPT4: String {
case base = "gpt-4-turbo"
case gpt_4_turbo_2024_04_09 = "gpt-4-turbo-2024-04-09"
Expand Down