From 7fb90bc9484e4863f5c0770667b90dfd2405ec53 Mon Sep 17 00:00:00 2001 From: khushal Date: Thu, 5 Dec 2024 18:11:29 +0530 Subject: [PATCH] (20241205) Small bug fix for f-strings. --- models/behaviour/mail/sync_v2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/behaviour/mail/sync_v2.py b/models/behaviour/mail/sync_v2.py index 451d88b..b2f599b 100644 --- a/models/behaviour/mail/sync_v2.py +++ b/models/behaviour/mail/sync_v2.py @@ -345,7 +345,7 @@ class MailSyncModel(BaseModel): messages = self.PROMPT_TEMPLATE + [ { "role": "human", - "content": f"Please summarize this mail: \"\"\"{client_response.data["unformattedText"]}\"\"\"" + "content": f"Please summarize this mail: \"\"\"{client_response.data['unformattedText']}\"\"\"" } ] )