Spaces:
Runtime error
Runtime error
File size: 7,773 Bytes
fc006a5 |
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 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 |
"""
Main.py
"""
from __future__ import annotations
import json
from pathlib import Path
from typing import Generator
from .chathub import *
from .conversation import *
from .conversation_style import *
from .request import *
from .utilities import *
class Chatbot:
"""
Combines everything to make it seamless
"""
def __init__(
self,
proxy: str | None = None,
cookies: list[dict] | None = None,
) -> None:
self.proxy: str | None = proxy
self.chat_hub: ChatHub = ChatHub(
Conversation(self.proxy, cookies=cookies),
proxy=self.proxy,
cookies=cookies,
)
@staticmethod
async def create(
proxy: str | None = None,
cookies: list[dict] | None = None,
) -> Chatbot:
self = Chatbot.__new__(Chatbot)
self.proxy = proxy
self.chat_hub = ChatHub(
await Conversation.create(self.proxy, cookies=cookies),
proxy=self.proxy,
cookies=cookies,
)
return self
async def save_conversation(self, filename: str) -> None:
"""
Save the conversation to a file
"""
with open(filename, "w") as f:
conversation_id = self.chat_hub.request.conversation_id
conversation_signature = self.chat_hub.request.conversation_signature
client_id = self.chat_hub.request.client_id
invocation_id = self.chat_hub.request.invocation_id
f.write(
json.dumps(
{
"conversation_id": conversation_id,
"conversation_signature": conversation_signature,
"client_id": client_id,
"invocation_id": invocation_id,
},
),
)
async def load_conversation(self, filename: str) -> None:
"""
Load the conversation from a file
"""
with open(filename) as f:
conversation = json.load(f)
self.chat_hub.request = ChatHubRequest(
conversation_signature=conversation["conversation_signature"],
client_id=conversation["client_id"],
conversation_id=conversation["conversation_id"],
invocation_id=conversation["invocation_id"],
)
async def get_conversation(self) -> dict:
"""
Gets the conversation history from conversation_id (requires load_conversation)
"""
return await self.chat_hub.get_conversation()
async def get_activity(self) -> dict:
"""
Gets the recent activity (requires cookies)
"""
return await self.chat_hub.get_activity()
async def ask(
self,
prompt: str,
wss_link: str = "wss://sydney.bing.com/sydney/ChatHub",
conversation_style: CONVERSATION_STYLE_TYPE = None,
webpage_context: str | None = None,
search_result: bool = False,
locale: str = guess_locale(),
simplify_response: bool = False,
) -> dict:
"""
Ask a question to the bot
Response:
{
item (dict):
messages (list[dict]):
adaptiveCards (list[dict]):
body (list[dict]):
text (str): Response
}
To get the response, you can do:
response["item"]["messages"][1]["adaptiveCards"][0]["body"][0]["text"]
"""
async for final, response in self.chat_hub.ask_stream(
prompt=prompt,
conversation_style=conversation_style,
wss_link=wss_link,
webpage_context=webpage_context,
search_result=search_result,
locale=locale,
):
if final:
if not simplify_response:
return response
messages_left = response["item"]["throttling"][
"maxNumUserMessagesInConversation"
] - response["item"]["throttling"].get(
"numUserMessagesInConversation",
0,
)
if messages_left == 0:
raise Exception("Max messages reached")
message = ""
for msg in reversed(response["item"]["messages"]):
if msg.get("adaptiveCards") and msg["adaptiveCards"][0]["body"][
0
].get("text"):
message = msg
break
if not message:
raise Exception("No message found")
suggestions = [
suggestion["text"]
for suggestion in message.get("suggestedResponses", [])
]
adaptive_cards = message.get("adaptiveCards", [])
adaptive_text = (
adaptive_cards[0]["body"][0].get("text") if adaptive_cards else None
)
sources = (
adaptive_cards[0]["body"][0].get("text") if adaptive_cards else None
)
sources_text = (
adaptive_cards[0]["body"][-1].get("text")
if adaptive_cards
else None
)
return {
"text": message["text"],
"author": message["author"],
"sources": sources,
"sources_text": sources_text,
"suggestions": suggestions,
"messages_left": messages_left,
"max_messages": response["item"]["throttling"][
"maxNumUserMessagesInConversation"
],
"adaptive_text": adaptive_text,
}
return {}
async def ask_stream(
self,
prompt: str,
wss_link: str = "wss://sydney.bing.com/sydney/ChatHub",
conversation_style: CONVERSATION_STYLE_TYPE = None,
raw: bool = False,
webpage_context: str | None = None,
search_result: bool = False,
locale: str = guess_locale(),
) -> Generator[bool, dict | str, None]:
"""
Ask a question to the bot
"""
async for response in self.chat_hub.ask_stream(
prompt=prompt,
conversation_style=conversation_style,
wss_link=wss_link,
raw=raw,
webpage_context=webpage_context,
search_result=search_result,
locale=locale,
):
yield response
async def close(self) -> None:
"""
Close the connection
"""
await self.chat_hub.close()
async def delete_conversation(
self,
conversation_id: str = None,
conversation_signature: str = None,
client_id: str = None,
) -> None:
"""
Delete the chat in the server
"""
await self.chat_hub.delete_conversation(
conversation_id=conversation_id,
conversation_signature=conversation_signature,
client_id=client_id,
)
async def reset(self, delete=False) -> None:
"""
Reset the conversation
"""
if delete:
await self.remove_and_close()
else:
await self.close()
self.chat_hub = ChatHub(
await Conversation.create(self.proxy, cookies=self.chat_hub.cookies),
proxy=self.proxy,
cookies=self.chat_hub.cookies,
)
if __name__ == "__main__":
from .main import main
main()
|