Skip to content

Commit 9bb3c4e

Browse files
feat(api): add gpt-3.5-turbo-1106 (#813)
1 parent 0bc211f commit 9bb3c4e

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

src/openai/resources/chat/completions.py

+8
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ def create(
5151
"gpt-4-32k",
5252
"gpt-4-32k-0314",
5353
"gpt-4-32k-0613",
54+
"gpt-3.5-turbo-1106",
5455
"gpt-3.5-turbo",
5556
"gpt-3.5-turbo-16k",
5657
"gpt-3.5-turbo-0301",
@@ -221,6 +222,7 @@ def create(
221222
"gpt-4-32k",
222223
"gpt-4-32k-0314",
223224
"gpt-4-32k-0613",
225+
"gpt-3.5-turbo-1106",
224226
"gpt-3.5-turbo",
225227
"gpt-3.5-turbo-16k",
226228
"gpt-3.5-turbo-0301",
@@ -391,6 +393,7 @@ def create(
391393
"gpt-4-32k",
392394
"gpt-4-32k-0314",
393395
"gpt-4-32k-0613",
396+
"gpt-3.5-turbo-1106",
394397
"gpt-3.5-turbo",
395398
"gpt-3.5-turbo-16k",
396399
"gpt-3.5-turbo-0301",
@@ -561,6 +564,7 @@ def create(
561564
"gpt-4-32k",
562565
"gpt-4-32k-0314",
563566
"gpt-4-32k-0613",
567+
"gpt-3.5-turbo-1106",
564568
"gpt-3.5-turbo",
565569
"gpt-3.5-turbo-16k",
566570
"gpt-3.5-turbo-0301",
@@ -648,6 +652,7 @@ async def create(
648652
"gpt-4-32k",
649653
"gpt-4-32k-0314",
650654
"gpt-4-32k-0613",
655+
"gpt-3.5-turbo-1106",
651656
"gpt-3.5-turbo",
652657
"gpt-3.5-turbo-16k",
653658
"gpt-3.5-turbo-0301",
@@ -818,6 +823,7 @@ async def create(
818823
"gpt-4-32k",
819824
"gpt-4-32k-0314",
820825
"gpt-4-32k-0613",
826+
"gpt-3.5-turbo-1106",
821827
"gpt-3.5-turbo",
822828
"gpt-3.5-turbo-16k",
823829
"gpt-3.5-turbo-0301",
@@ -988,6 +994,7 @@ async def create(
988994
"gpt-4-32k",
989995
"gpt-4-32k-0314",
990996
"gpt-4-32k-0613",
997+
"gpt-3.5-turbo-1106",
991998
"gpt-3.5-turbo",
992999
"gpt-3.5-turbo-16k",
9931000
"gpt-3.5-turbo-0301",
@@ -1158,6 +1165,7 @@ async def create(
11581165
"gpt-4-32k",
11591166
"gpt-4-32k-0314",
11601167
"gpt-4-32k-0613",
1168+
"gpt-3.5-turbo-1106",
11611169
"gpt-3.5-turbo",
11621170
"gpt-3.5-turbo-16k",
11631171
"gpt-3.5-turbo-0301",

src/openai/types/chat/completion_create_params.py

+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ class CompletionCreateParamsBase(TypedDict, total=False):
4444
"gpt-4-32k",
4545
"gpt-4-32k-0314",
4646
"gpt-4-32k-0613",
47+
"gpt-3.5-turbo-1106",
4748
"gpt-3.5-turbo",
4849
"gpt-3.5-turbo-16k",
4950
"gpt-3.5-turbo-0301",

0 commit comments

Comments
 (0)