t.me/xtekky
commited on
Commit
•
c70a257
1
Parent(s):
2b30701
fix
Browse files- you/__init__.py +2 -2
you/__init__.py
CHANGED
@@ -59,7 +59,7 @@ class Completion:
|
|
59 |
|
60 |
youChatSerpResults = findall(r'youChatSerpResults\ndata: (.*)\n\nevent', response.text)[0]
|
61 |
thirdPartySearchResults = findall(r"thirdPartySearchResults\ndata: (.*)\n\nevent", response.text)[0]
|
62 |
-
slots = findall(r"slots\ndata: (.*)\n\nevent", response.text)[0]
|
63 |
|
64 |
text = response.text.split('}]}\n\nevent: youChatToken\ndata: {"youChatToken": "')[-1]
|
65 |
text = text.replace('"}\n\nevent: youChatToken\ndata: {"youChatToken": "', '')
|
@@ -67,7 +67,7 @@ class Completion:
|
|
67 |
|
68 |
extra = {
|
69 |
'youChatSerpResults' : loads(youChatSerpResults),
|
70 |
-
'slots' : loads(slots)
|
71 |
}
|
72 |
|
73 |
return {
|
|
|
59 |
|
60 |
youChatSerpResults = findall(r'youChatSerpResults\ndata: (.*)\n\nevent', response.text)[0]
|
61 |
thirdPartySearchResults = findall(r"thirdPartySearchResults\ndata: (.*)\n\nevent", response.text)[0]
|
62 |
+
#slots = findall(r"slots\ndata: (.*)\n\nevent", response.text)[0]
|
63 |
|
64 |
text = response.text.split('}]}\n\nevent: youChatToken\ndata: {"youChatToken": "')[-1]
|
65 |
text = text.replace('"}\n\nevent: youChatToken\ndata: {"youChatToken": "', '')
|
|
|
67 |
|
68 |
extra = {
|
69 |
'youChatSerpResults' : loads(youChatSerpResults),
|
70 |
+
#'slots' : loads(slots)
|
71 |
}
|
72 |
|
73 |
return {
|