From 4ac97f5752dda5f6674d751e4e76587767d2be3f Mon Sep 17 00:00:00 2001 From: Philipp Zagar Date: Fri, 2 Feb 2024 13:34:56 -0800 Subject: [PATCH] Incorporate feedback from review --- README.md | 4 ++-- Sources/OpenAI/Public/Models/Models/Models.swift | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e27d2e9a..72033675 100644 --- a/README.md +++ b/README.md @@ -799,8 +799,8 @@ public extension Model { static let gpt3_5Turbo = "gpt-3.5-turbo" static let gpt3_5Turbo_0125 = "gpt-3.5-turbo-0125" static let gpt3_5Turbo_1106 = "gpt-3.5-turbo-1106" - static let gpt3_5Turbo0613 = "gpt-3.5-turbo-0613" - static let gpt3_5Turbo0301 = "gpt-3.5-turbo-0301" + static let gpt3_5Turbo_0613 = "gpt-3.5-turbo-0613" + static let gpt3_5Turbo_0301 = "gpt-3.5-turbo-0301" static let gpt3_5Turbo_16k = "gpt-3.5-turbo-16k" static let gpt3_5Turbo_16k_0613 = "gpt-3.5-turbo-16k-0613" diff --git a/Sources/OpenAI/Public/Models/Models/Models.swift b/Sources/OpenAI/Public/Models/Models/Models.swift index 4eaaeb9a..514dc99b 100644 --- a/Sources/OpenAI/Public/Models/Models/Models.swift +++ b/Sources/OpenAI/Public/Models/Models/Models.swift @@ -59,11 +59,11 @@ public extension Model { /// Snapshot of `gpt-3.5-turbo` from June 13th 2023 with function calling data. Unlike `gpt-3.5-turbo`, this model will not receive updates, and will be deprecated 3 months after a new version is released. @available(*, deprecated, message: "Please upgrade to the newer model") - static let gpt3_5Turbo0613 = "gpt-3.5-turbo-0613" + static let gpt3_5Turbo_0613 = "gpt-3.5-turbo-0613" /// Snapshot of `gpt-3.5-turbo` from March 1st 2023. Unlike `gpt-3.5-turbo`, this model will not receive updates, and will only be supported for a three month period ending on June 1st 2023. @available(*, deprecated, message: "Please upgrade to the newer model") - static let gpt3_5Turbo0301 = "gpt-3.5-turbo-0301" + static let gpt3_5Turbo_0301 = "gpt-3.5-turbo-0301" /// Same capabilities as the standard `gpt-3.5-turbo` model but with 4 times the context. static let gpt3_5Turbo_16k = "gpt-3.5-turbo-16k"