We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a456b51 commit 26ff2ceCopy full SHA for 26ff2ce
autogen/oai/completion.py
@@ -51,6 +51,7 @@ class Completion(openai_Completion):
51
"gpt-3.5-turbo-16k",
52
"gpt-3.5-turbo-16k-0613",
53
"gpt-35-turbo",
54
+ "gpt-35-turbo-16k",
55
"gpt-4",
56
"gpt-4-32k",
57
"gpt-4-32k-0314", # deprecate in Sep
@@ -69,11 +70,14 @@ class Completion(openai_Completion):
69
70
"text-davinci-002": 0.02,
71
"text-davinci-003": 0.02,
72
"gpt-3.5-turbo": (0.0015, 0.002),
73
+ "gpt-3.5-turbo-instruct": (0.0015, 0.002),
74
"gpt-3.5-turbo-0301": (0.0015, 0.002), # deprecate in Sep
75
"gpt-3.5-turbo-0613": (0.0015, 0.002),
76
"gpt-3.5-turbo-16k": (0.003, 0.004),
77
"gpt-3.5-turbo-16k-0613": (0.003, 0.004),
- "gpt-35-turbo": 0.002,
78
+ "gpt-35-turbo": (0.0015, 0.002),
79
+ "gpt-35-turbo-16k": (0.003, 0.004),
80
+ "gpt-35-turbo-instruct": (0.0015, 0.002),
81
"gpt-4": (0.03, 0.06),
82
"gpt-4-32k": (0.06, 0.12),
83
"gpt-4-0314": (0.03, 0.06), # deprecate in Sep
0 commit comments