From 17c9adf4852a0ca0d1a5cfa448478fa195a9c368 Mon Sep 17 00:00:00 2001 From: hs_junxiang Date: Mon, 4 Sep 2023 13:34:31 +0800 Subject: Join the messages A better approach is to use the `.join()` method of strings, which reduces string concatenation operations and improves performance. Additionally, using formatted strings (f-strings) makes the code cleaner and more readable. --- g4f/Provider/V50.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'g4f/Provider/V50.py') diff --git a/g4f/Provider/V50.py b/g4f/Provider/V50.py index 1dc7651d..ad3fd9e4 100644 --- a/g4f/Provider/V50.py +++ b/g4f/Provider/V50.py @@ -16,11 +16,9 @@ class V50(BaseProvider): messages: list[dict[str, str]], stream: bool, **kwargs: Any) -> CreateResult: - conversation = '' - for message in messages: - conversation += '%s: %s\n' % (message['role'], message['content']) - - conversation += 'assistant: ' + conversation = "\n".join(f"{message['role']}: {message['content']}" for message in messages) + conversation += "\nassistant: " + payload = { "prompt" : conversation, "options" : {}, -- cgit v1.2.3