Skip to content

Commit

Permalink
Fix model name (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
pmanot authored Mar 19, 2024
1 parent 983a75f commit b72fa69
Show file tree
Hide file tree
Showing 2 changed files with 78 additions and 1 deletion.
77 changes: 77 additions & 0 deletions Package.resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
{
"pins" : [
{
"identity" : "corepersistence",
"kind" : "remoteSourceControl",
"location" : "https://github.com/vmanot/CorePersistence.git",
"state" : {
"branch" : "main",
"revision" : "e02d171abea447353b1a514266188f121e72b0d0"
}
},
{
"identity" : "merge",
"kind" : "remoteSourceControl",
"location" : "https://github.com/vmanot/Merge.git",
"state" : {
"branch" : "master",
"revision" : "dfe52aa401a238cd6b9e783756cc645f3e349748"
}
},
{
"identity" : "networkkit",
"kind" : "remoteSourceControl",
"location" : "https://github.com/vmanot/NetworkKit.git",
"state" : {
"branch" : "master",
"revision" : "01cd6091ddf244840e143dfa2fc1f176621786f2"
}
},
{
"identity" : "swallow",
"kind" : "remoteSourceControl",
"location" : "https://github.com/vmanot/Swallow.git",
"state" : {
"branch" : "master",
"revision" : "95f1a039ae927a10ee3fa95f802b16a0d05f5351"
}
},
{
"identity" : "swift-collections",
"kind" : "remoteSourceControl",
"location" : "https://github.com/apple/swift-collections",
"state" : {
"revision" : "94cf62b3ba8d4bed62680a282d4c25f9c63c2efb",
"version" : "1.1.0"
}
},
{
"identity" : "swift-syntax",
"kind" : "remoteSourceControl",
"location" : "https://github.com/apple/swift-syntax.git",
"state" : {
"revision" : "fa8f95c2d536d6620cc2f504ebe8a6167c9fc2dd",
"version" : "510.0.1"
}
},
{
"identity" : "swiftapi",
"kind" : "remoteSourceControl",
"location" : "https://github.com/vmanot/SwiftAPI.git",
"state" : {
"branch" : "master",
"revision" : "195ce0c8e6c177ba9cfded33c2c0ced21d8d5949"
}
},
{
"identity" : "swiftuix",
"kind" : "remoteSourceControl",
"location" : "https://github.com/SwiftUIX/SwiftUIX.git",
"state" : {
"branch" : "master",
"revision" : "95e399ac149577d6996a7c62c90282d06373a3b7"
}
}
],
"version" : 2
}
2 changes: 1 addition & 1 deletion Sources/OpenAI/Intramodular/Models/OpenAI.Model.swift
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ extension OpenAI.Model {
case gpt_4_32k_0314 = "gpt-4-32k-0314"
case gpt_4_32k_0613 = "gpt-4-32k-0613"

case gpt_4_turbo_preview = "gpt_4_turbo_preview"
case gpt_4_turbo_preview = "gpt-4-turbo-preview"

public var name: String {
switch self {
Expand Down

0 comments on commit b72fa69

Please sign in to comment.