diff options
author | Tekky <98614666+xtekky@users.noreply.github.com> | 2023-09-05 15:26:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-05 15:26:08 +0200 |
commit | ae9702ecf05562f47fdcdc005a2a36124c6cc567 (patch) | |
tree | 5015b50c0e9f679aa2682d2064418d5473de9637 /g4f/Provider/AItianhu.py | |
parent | Merge pull request #875 from Lin-jun-xiang/annotations (diff) | |
parent | Join the messages (diff) | |
download | gpt4free-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/AItianhu.py')
-rw-r--r-- | g4f/Provider/AItianhu.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/g4f/Provider/AItianhu.py b/g4f/Provider/AItianhu.py index 4458c14f..0982d3c6 100644 --- a/g4f/Provider/AItianhu.py +++ b/g4f/Provider/AItianhu.py @@ -19,10 +19,8 @@ class AItianhu(BaseProvider): messages: list[dict[str, str]], stream: bool, **kwargs: Any) -> CreateResult: - base = "" - for message in messages: - base += "%s: %s\n" % (message["role"], message["content"]) - base += "assistant:" + base = "\n".join(f"{message['role']}: {message['content']}" for message in messages) + base += "\nassistant: " headers = { "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36" |