(20241205) Small bug fix for f-strings.

This commit is contained in:
2024-12-05 18:11:29 +05:30
parent 81550898eb
commit 7fb90bc948
+1 -1
View File
@@ -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']}\"\"\""
}
]
)