File size: 5,974 Bytes
7c908ce ef4de38 7c908ce ef4de38 7c908ce ef4de38 7c908ce ef4de38 7c908ce ef4de38 7c908ce ef4de38 7c908ce ef4de38 7c908ce ef4de38 7c908ce ef4de38 7c908ce ef4de38 7c908ce ef4de38 7c908ce ef4de38 7c908ce |
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 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 |
"""
Main.py
"""
import json
import time
import uuid
from threading import Thread
import requests
from websocket import WebSocket
def append_identifier(msg: dict) -> str:
"""
Appends special character to end of message to identify end of message
"""
# Convert dict to json string
return json.dumps(msg) + ""
class ChatHubRequest:
"""
Request object for ChatHub
"""
def __init__(
self,
conversation_signature: str,
client_id: str,
conversation_id: str,
invocation_id: int,
) -> 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
self.is_start_of_session: bool = True
self.update(
prompt=None,
conversation_signature=conversation_signature,
client_id=client_id,
conversation_id=conversation_id,
invocation_id=invocation_id,
)
def update(
self,
prompt: str,
conversation_signature: str = None,
client_id: str = None,
conversation_id: str = None,
invocation_id: int = None,
) -> None:
"""
Updates request object
"""
self.struct = {
"arguments": [
{
"source": "cib",
"optionsSets": [
"nlu_direct_response_filter",
"deepleo",
"enable_debug_commands",
"disable_emoji_spoken_text",
"responsible_ai_policy_235",
"enablemm",
],
"isStartOfSession": self.is_start_of_session,
"message": {
"timestamp": "2023-02-09T13:26:58+08:00",
"author": "user",
"inputMethod": "Keyboard",
"text": prompt,
"messageType": "Chat",
},
"conversationSignature": conversation_signature
or self.conversation_signature,
"participant": {"id": client_id or self.client_id},
"conversationId": conversation_id or self.conversation_id,
"previousMessages": [],
},
],
"invocationId": str(invocation_id),
"target": "chat",
"type": 4,
}
self.is_start_of_session = False
class Conversation:
"""
Conversation API
"""
def __init__(self) -> None:
self.struct: dict = {
"conversationId": None,
"clientId": None,
"conversationSignature": None,
"result": {"value": "Success", "message": None},
}
self.__create()
def __create(self):
# Build request
headers = {
"accept": "application/json",
"accept-encoding": "gzip, deflate, br",
"accept-language": "en-US,en;q=0.9",
"content-type": "application/json",
"sec-ch-ua": '"Microsoft Edge";v="111", "Not(A:Brand";v="8", "Chromium";v="111"',
"sec-ch-ua-arch": '"x86"',
"sec-ch-ua-bitness": '"64"',
"sec-ch-ua-full-version": '"111.0.1652.0"',
"sec-ch-ua-full-version-list": '"Microsoft Edge";v="111.0.1652.0", "Not(A:Brand";v="8.0.0.0", "Chromium";v="111.0.5551.0"',
"sec-ch-ua-mobile": "?0",
"sec-ch-ua-model": "",
"sec-ch-ua-platform": '"Linux"',
"sec-ch-ua-platform-version": '"5.19.0"',
"sec-fetch-dest": "empty",
"sec-fetch-mode": "cors",
"sec-fetch-site": "same-origin",
"user-agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36 Edg/111.0.0.0",
"x-ms-client-request-id": str(uuid.uuid4()),
"x-ms-useragent": "azsdk-js-api-client-factory/1.0.0-beta.1 core-rest-pipeline/1.10.0 OS/Linuxx86_64",
}
# Create cookies
cookies = json.loads(
open("templates/cookies.json", encoding="utf-8").read(),
)
# Send GET request
response = requests.get(
"https://www.bing.com/turing/conversation/create",
headers=headers,
cookies=cookies,
timeout=30,
)
# Return response
self.struct = response.json()
class ChatHub:
"""
Chat API
"""
def __init__(self) -> None:
self.wss = WebSocket()
self.wss.connect(url="wss://sydney.bing.com/sydney/ChatHub")
self.__initial_handshake()
# Ping in another thread
self.thread = Thread(target=self.__ping)
self.thread.start()
self.stop_thread = False
def ask(self, prompt: str):
pass
def __initial_handshake(self):
self.wss.send(append_identifier({"protocol": "json", "version": 1}))
# Receive blank message
self.wss.recv()
def __ping(self):
timing = 10
while True:
if timing == 0:
self.wss.send(append_identifier({"type": 6}))
# Receive pong
self.wss.recv()
timing = 10
else:
timing -= 1
time.sleep(1)
if self.stop_thread:
break
def close(self):
"""
Close all connections
"""
self.wss.close()
self.stop_thread = True
self.thread.join()
async def main():
"""
Main function
"""
# Create conversation
conversation = Conversation()
print(conversation.struct)
if __name__ == "__main__":
import asyncio
asyncio.run(main())
|