fix typo in browse.py

specifc -> specific
This commit is contained in:
Ikko Eltociear Ashimine
2023-04-03 00:34:01 +09:00
committed by GitHub
parent 99a33023c4
commit 0d94711d76

View File

@@ -88,7 +88,7 @@ def summarize_text(text, is_website=True):
messages = [ messages = [
{ {
"role": "user", "role": "user",
"content": "Please summarize the following website text, do not describe the general website, but instead concisely extract the specifc information this subpage contains.: " + "content": "Please summarize the following website text, do not describe the general website, but instead concisely extract the specific information this subpage contains.: " +
chunk}, chunk},
] ]
else: else:
@@ -116,7 +116,7 @@ def summarize_text(text, is_website=True):
messages = [ messages = [
{ {
"role": "user", "role": "user",
"content": "Please summarize the following website text, do not describe the general website, but instead concisely extract the specifc information this subpage contains.: " + "content": "Please summarize the following website text, do not describe the general website, but instead concisely extract the specific information this subpage contains.: " +
combined_summary}, combined_summary},
] ]
else: else: