Spaces:
Runtime error
Runtime error
File size: 5,748 Bytes
91525e6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 |
import uuid
from datetime import datetime
from typing import Union
from .conversation_style import CONVERSATION_STYLE_TYPE
from .conversation_style import ConversationStyle
from .utilities import get_location_hint_from_locale
from .utilities import get_ran_hex
from .utilities import guess_locale
class ChatHubRequest:
def __init__(
self,
conversation_signature: str,
client_id: str,
conversation_id: str,
invocation_id: int = 3,
) -> None:
self.struct: dict = {}
self.client_id: str = client_id
self.conversation_id: str = conversation_id
self.conversation_signature: str = conversation_signature
self.invocation_id: int = invocation_id
def update(
self,
prompt: str,
conversation_style: CONVERSATION_STYLE_TYPE,
webpage_context: Union[str, None] = None,
search_result: bool = False,
locale: str = guess_locale(),
) -> None:
options = [
"deepleo",
"enable_debug_commands",
"disable_emoji_spoken_text",
"enablemm",
]
if conversation_style:
if not isinstance(conversation_style, ConversationStyle):
conversation_style = getattr(ConversationStyle, conversation_style)
options = conversation_style.value
message_id = str(uuid.uuid4())
# Get the current local time
now_local = datetime.now()
# Get the current UTC time
now_utc = datetime.utcnow()
# Calculate the time difference between local and UTC time
timezone_offset = now_local - now_utc
# Get the offset in hours and minutes
offset_hours = int(timezone_offset.total_seconds() // 3600)
offset_minutes = int((timezone_offset.total_seconds() % 3600) // 60)
# Format the offset as a string
offset_string = f"{offset_hours:+03d}:{offset_minutes:02d}"
# Get current time
timestamp = datetime.now().strftime("%Y-%m-%dT%H:%M:%S") + offset_string
self.struct = {
"arguments": [
{
"source": "cib",
"optionsSets": options,
"allowedMessageTypes": [
"ActionRequest",
"Chat",
"Context",
"InternalSearchQuery",
"InternalSearchResult",
"Disengaged",
"InternalLoaderMessage",
"Progress",
"RenderCardRequest",
"AdsQuery",
"SemanticSerp",
"GenerateContentQuery",
"SearchQuery",
],
"sliceIds": [
"winmuid1tf",
"styleoff",
"ccadesk",
"smsrpsuppv4cf",
"ssrrcache",
"contansperf",
"crchatrev",
"winstmsg2tf",
"creatgoglt",
"creatorv2t",
"sydconfigoptt",
"adssqovroff",
"530pstho",
"517opinion",
"418dhlth",
"512sprtic1s0",
"emsgpr",
"525ptrcps0",
"529rweas0",
"515oscfing2s0",
"524vidansgs0",
],
"verbosity": "verbose",
"traceId": get_ran_hex(32),
"isStartOfSession": self.invocation_id == 3,
"message": {
"locale": locale,
"market": locale,
"region": locale[-2:], # en-US -> US
"locationHints": get_location_hint_from_locale(locale),
"timestamp": timestamp,
"author": "user",
"inputMethod": "Keyboard",
"text": prompt,
"messageType": "Chat",
"messageId": message_id,
"requestId": message_id,
},
"tone": conversation_style.name.capitalize(), # Make first letter uppercase
"requestId": message_id,
"conversationSignature": self.conversation_signature,
"participant": {
"id": self.client_id,
},
"conversationId": self.conversation_id,
},
],
"invocationId": str(self.invocation_id),
"target": "chat",
"type": 4,
}
if search_result:
have_search_result = [
"InternalSearchQuery",
"InternalSearchResult",
"InternalLoaderMessage",
"RenderCardRequest",
]
self.struct["arguments"][0]["allowedMessageTypes"] += have_search_result
if webpage_context:
self.struct["arguments"][0]["previousMessages"] = [
{
"author": "user",
"description": webpage_context,
"contextType": "WebPage",
"messageType": "Context",
"messageId": "discover-web--page-ping-mriduna-----",
},
]
self.invocation_id += 1
# print(timestamp)
|