summaryrefslogtreecommitdiffstats
path: root/g4f/Provider/ChatgptAi.py
diff options
context:
space:
mode:
authorTekky <98614666+xtekky@users.noreply.github.com>2023-09-05 15:26:08 +0200
committerGitHub <noreply@github.com>2023-09-05 15:26:08 +0200
commitae9702ecf05562f47fdcdc005a2a36124c6cc567 (patch)
tree5015b50c0e9f679aa2682d2064418d5473de9637 /g4f/Provider/ChatgptAi.py
parentMerge pull request #875 from Lin-jun-xiang/annotations (diff)
parentJoin the messages (diff)
downloadgpt4free-ae9702ecf05562f47fdcdc005a2a36124c6cc567.tar
gpt4free-ae9702ecf05562f47fdcdc005a2a36124c6cc567.tar.gz
gpt4free-ae9702ecf05562f47fdcdc005a2a36124c6cc567.tar.bz2
gpt4free-ae9702ecf05562f47fdcdc005a2a36124c6cc567.tar.lz
gpt4free-ae9702ecf05562f47fdcdc005a2a36124c6cc567.tar.xz
gpt4free-ae9702ecf05562f47fdcdc005a2a36124c6cc567.tar.zst
gpt4free-ae9702ecf05562f47fdcdc005a2a36124c6cc567.zip
Diffstat (limited to 'g4f/Provider/ChatgptAi.py')
-rw-r--r--g4f/Provider/ChatgptAi.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/g4f/Provider/ChatgptAi.py b/g4f/Provider/ChatgptAi.py
index 55b9b942..7613ccf1 100644
--- a/g4f/Provider/ChatgptAi.py
+++ b/g4f/Provider/ChatgptAi.py
@@ -19,10 +19,8 @@ class ChatgptAi(BaseProvider):
messages: list[dict[str, str]],
stream: bool, **kwargs: Any) -> CreateResult:
- chat = ""
- for message in messages:
- chat += "%s: %s\n" % (message["role"], message["content"])
- chat += "assistant: "
+ chat = "\n".join(f"{message['role']}: {message['content']}" for message in messages)
+ chat += "\nassistant: "
response = requests.get("https://chatgpt.ai/")
nonce, post_id, _, bot_id = re.findall(