Skip to content
This repository was archived by the owner on Aug 10, 2023. It is now read-only.

Commit 860e540

Browse files
author
Antonio
committed
Merge branch 'main' of https://github.com/acheong08/ChatGPT
2 parents 831800c + 9de5229 commit 860e540

3 files changed

Lines changed: 5 additions & 1 deletion

File tree

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
setup(
1414
name="revChatGPT",
15-
version="6.3.2",
15+
version="6.3.4",
1616
description="ChatGPT is a reverse engineering of OpenAI's ChatGPT API",
1717
long_description=open(PATH, encoding="utf-8").read(),
1818
long_description_content_type="text/markdown",

src/revChatGPT/V1.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -463,6 +463,7 @@ def __send_request(
463463
message = message.strip("\n")
464464
for i in self.continue_write(
465465
conversation_id=cid,
466+
model=model,
466467
timeout=timeout,
467468
auto_continue=False,
468469
):
@@ -1043,6 +1044,7 @@ async def __send_request(
10431044
message = message.strip("\n")
10441045
async for i in self.continue_write(
10451046
conversation_id=cid,
1047+
model=model,
10461048
timeout=timeout,
10471049
auto_continue=False,
10481050
):

src/revChatGPT/V3.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,13 @@
2727
"gpt-3.5-turbo-16k",
2828
"gpt-3.5-turbo-0301",
2929
"gpt-3.5-turbo-0613",
30+
"gpt-3.5-turbo-16k-0613",
3031
"gpt-4",
3132
"gpt-4-0314",
3233
"gpt-4-32k",
3334
"gpt-4-32k-0314",
3435
"gpt-4-0613",
36+
"gpt-4-32k-0613",
3537
]
3638

3739

0 commit comments

Comments
 (0)