File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 3434from models .openai_model import Model
3535
3636
37- __version__ = "12.3.7 "
37+ __version__ = "12.3.8 "
3838
3939
4040PID_FILE = Path ("bot.pid" )
Original file line number Diff line number Diff line change @@ -72,6 +72,7 @@ class Models:
7272 GPT4_32_DEV = "gpt-4-32k-0613"
7373 GPT_4_TURBO = "gpt-4-1106-preview"
7474 GPT_4_TURBO_VISION = "gpt-4-vision-preview"
75+ GPT_4_TURBO_CATCHALL = "gpt-4-turbo-preview"
7576
7677 # Model collections
7778 TEXT_MODELS = [
@@ -87,6 +88,7 @@ class Models:
8788 GPT4_32_DEV ,
8889 GPT_4_TURBO ,
8990 GPT_4_TURBO_VISION ,
91+ GPT_4_TURBO_CATCHALL
9092 ]
9193 CHATGPT_MODELS = [
9294 TURBO ,
@@ -96,6 +98,7 @@ class Models:
9698 GPT4_32 ,
9799 GPT_4_TURBO_VISION ,
98100 GPT_4_TURBO ,
101+ GPT_4_TURBO_CATCHALL
99102 ]
100103 GPT4_MODELS = [
101104 GPT4 ,
@@ -104,6 +107,7 @@ class Models:
104107 GPT4_32_DEV ,
105108 GPT_4_TURBO_VISION ,
106109 GPT_4_TURBO ,
110+ GPT_4_TURBO_CATCHALL
107111 ]
108112 EDIT_MODELS = [EDIT ]
109113
@@ -124,6 +128,7 @@ class Models:
124128 GPT4_32_DEV : 32768 ,
125129 GPT_4_TURBO_VISION : 128000 ,
126130 GPT_4_TURBO : 128000 ,
131+ GPT_4_TURBO_CATCHALL : 128000 ,
127132 }
128133
129134 @staticmethod
You can’t perform that action at this time.
0 commit comments