remove "please" from prompt in browser.py

This commit is contained in:
HDKiller
2023-04-15 06:28:14 +00:00
parent 72da564db5
commit bee1bc8c06

View File

@@ -145,9 +145,9 @@ def create_message(chunk, question):
"""Create a message for the user to summarize a chunk of text"""
return {
"role": "user",
"content": f'"""{chunk}""" Using the above text, please answer the following'
"content": f'"""{chunk}""" Using the above text, answer the following'
f' question: "{question}" -- if the question cannot be answered using the'
" text, please summarize the text.",
" text, summarize the text.",
}