1
0
Fork 0

Merge pull request #135 from TSOA2/main

Trim remaining characters
This commit is contained in:
t.me/xtekky 2023-04-26 08:54:52 +01:00 committed by GitHub
commit 71f507ee94
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -64,7 +64,8 @@ class Completion:
text = response.text.split('}]}\n\nevent: youChatToken\ndata: {"youChatToken": "')[-1]
text = text.replace('"}\n\nevent: youChatToken\ndata: {"youChatToken": "', '')
text = text.replace('event: done\ndata: I\'m Mr. Meeseeks. Look at me.\n\n', '')
text = text[:-4] # trims '"}', along with the last two remaining newlines
extra = {
'youChatSerpResults' : loads(youChatSerpResults),
#'slots' : loads(slots)
@ -74,4 +75,4 @@ class Completion:
'response': text,
'links' : loads(thirdPartySearchResults)['search']["third_party_search_results"] if includelinks else None,
'extra' : extra if detailed else None,
}
}