We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a720655 commit 64b2623Copy full SHA for 64b2623
2 files changed
setup.py
@@ -37,7 +37,7 @@
37
# For a discussion on single-sourcing the version across setup.py and the
38
# project code, see
39
# https://packaging.python.org/en/latest/single_source_version.html
40
- version='1.4', # Required. eg. 1.2.3
+ version='1.5', # Required. eg. 1.2.3
41
42
# This is a one-line description or tagline of what your project does. This
43
# corresponds to the "Summary" metadata field:
src/transgpt/trans_chatgpt.py
@@ -19,6 +19,7 @@
19
CHATGPT_35_TURBO = "gpt-3.5-turbo"
20
CHATGPT_4 = "gpt-4" # 8K
21
CHATGPT_4_TRUBO = "gpt-4-1106-preview" # 128K
22
+CHATGPT_4o = "gpt-4o" # 128K
23
24
ARG_ROLE = 'role'
25
ARG_OPENAI_MODEL = 'openai_model'
0 commit comments