-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathmain.py
186 lines (160 loc) · 7.5 KB
/
main.py
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
import argparse
import asyncio
import json
import traceback
import urllib.request
import emoji
import claude
import sys, os
import random, uuid
sys.path.insert(0, os.path.dirname(__file__))
public_dir = '/public'
from EdgeGPT.EdgeGPT import Chatbot
from aiohttp import web
def generate_hex_string(length):
hex_digits = '0123456789ABCDEF'
return ''.join(random.choice(hex_digits) for _ in range(length))
async def sydney_process_message(user_message, bot_mode, context, _U, KievRPSSecAuth, _RwBf, MUID, locale, enable_gpt4turbo, imageInput, enableSearch, enableFakeCookie):
chatbot = None
# Set the maximum number of retries
max_retries = 10
for i in range(max_retries + 1):
try:
cookies = loaded_cookies
if _U:
cookies = list(filter(lambda d: d.get('name') != '_U', cookies)) + [{"name": "_U", "value": _U}]
if KievRPSSecAuth:
cookies = list(filter(lambda d: d.get('name') != 'KievRPSSecAuth', cookies)) + [{"name": "KievRPSSecAuth", "value": KievRPSSecAuth}]
if _RwBf:
cookies = list(filter(lambda d: d.get('name') != '_RwBf', cookies)) + [{"name": "_RwBf", "value": _RwBf}]
if MUID:
cookies = list(filter(lambda d: d.get('name') != 'MUID', cookies)) + [{"name": "MUID", "value": MUID}]
SRCHHPGUSR = {
"creative": "cdxtone=Creative&cdxtoneopts=h3imaginative,gencontentv3,nojbfedge",
"precise": "cdxtone=Precise&cdxtoneopts=h3precise,clgalileo,gencontentv3,nojbfedge",
"balanced": "cdxtone=Balanced&cdxtoneopts=galileo,fluxhint,glfluxv13,nojbfedge"
}
cookies = list(filter(lambda d: d.get('name') != 'SRCHHPGUSR', cookies)) + [{"name": "SRCHHPGUSR","value": "SRCHLANG=zh-Hans&" + SRCHHPGUSR[bot_mode]}]
os.environ['image_gen_cookie'] = json.dumps(cookies)
if enableFakeCookie:
chatCookie = [{"name": "_U", "value": str(uuid.uuid4()).replace('-','')}] + list(filter(lambda d: d.get('name') not in ['_U', 'KievRPSSecAuth', '_RwBf'], cookies))
else:
chatCookie = cookies
chatbot = await Chatbot.create(cookies=chatCookie, proxy=args.proxy, imageInput=imageInput)
async for _, response in chatbot.ask_stream(prompt=user_message, conversation_style=bot_mode, raw=True,
webpage_context=context, search_result=enableSearch, locale=locale,
enable_gpt4turbo=enable_gpt4turbo):
yield response
break
except Exception as e:
if (
"Sorry, you need to login first to access this service." in str(e)
or "ServiceClient failure for DeepLeo" in str(e)
or "Cannot retrieve user status" in str(e)
or "Authentication failed" in str(e)
or "conversationSignature" in str(e)
or "Unhandled Exception" in str(e)
) and i < max_retries:
print("Retrying...", i + 1, "attempts.")
await asyncio.sleep(0.1)
else:
if i == max_retries:
print("Failed after", max_retries, "attempts.")
yield {"type": "error", "error": traceback.format_exc()}
finally:
if chatbot:
await chatbot.close()
async def claude_process_message(context):
try:
async for reply in claude_chatbot.ask_stream(context):
yield {"type": "reply", "text": emoji.emojize(reply, language='alias').strip()}
yield {"type": "finished"}
except:
yield {"type": "error", "error": traceback.format_exc()}
async def http_handler(request):
file_path = request.path
if file_path == "/":
file_path = "/index.html"
full_path = os.path.realpath('.' + public_dir + file_path)
if not full_path.startswith(os.path.realpath('.' + public_dir)):
raise web.HTTPForbidden()
response = web.FileResponse(full_path)
response.headers['Cache-Control'] = 'no-store'
return response
async def websocket_handler(request):
ws = web.WebSocketResponse()
await ws.prepare(request)
async def monitor():
while True:
if ws.closed:
task.cancel()
break
await asyncio.sleep(0.1)
async def main_process():
async for msg in ws:
if msg.type == web.WSMsgType.TEXT:
request = json.loads(msg.data)
user_message = request['message']
context = request['context']
locale = request['locale']
enable_gpt4turbo = request['enable_gpt4turbo']
_U = request.get('_U')
KievRPSSecAuth = request.get('KievRPSSecAuth')
_RwBf = request.get('_RwBf')
MUID = request.get('MUID')
enableSearch = request.get('enableSearch')
enableFakeCookie = request.get('enableFakeCookie')
if (request.get('imageInput') is not None) and (len(request.get('imageInput')) > 0):
imageInput = request.get('imageInput').split(",")[1]
else:
imageInput = None
bot_type = request.get("botType", "Sydney")
bot_mode = request.get("botMode", "creative")
if bot_type == "Sydney":
async for response in sydney_process_message(user_message, bot_mode, context, _U, KievRPSSecAuth, _RwBf, MUID, locale=locale, enable_gpt4turbo=enable_gpt4turbo, imageInput=imageInput, enableSearch=enableSearch, enableFakeCookie=enableFakeCookie):
await ws.send_json(response)
elif bot_type == "Claude":
async for response in claude_process_message(context):
await ws.send_json(response)
else:
print(f"Unknown bot type: {bot_type}")
task = asyncio.ensure_future(main_process())
monitor_task = asyncio.ensure_future(monitor())
done, pending = await asyncio.wait([task, monitor_task], return_when=asyncio.FIRST_COMPLETED)
for task in pending:
task.cancel()
return ws
async def main(host, port):
app = web.Application()
app.router.add_get('/ws/', websocket_handler)
app.router.add_get('/{tail:.*}', http_handler)
runner = web.AppRunner(app)
await runner.setup()
site = web.TCPSite(runner, host, port)
await site.start()
print(f"Go to http://{host}:{port} to start chatting!")
if __name__ == '__main__':
parser = argparse.ArgumentParser()
parser.add_argument("--host", "-H", help="host:port for the server", default="localhost:65432")
parser.add_argument("--proxy", "-p", help='proxy address like "http://localhost:7890"',
default=urllib.request.getproxies().get('https'))
args = parser.parse_args()
print(f"Proxy used: {args.proxy}")
host, port = args.host.split(":")
port = int(port)
if os.path.isfile("cookies.json"):
with open("cookies.json", 'r') as f:
loaded_cookies = json.load(f)
print("Loaded cookies.json")
else:
loaded_cookies = []
print("cookies.json not found")
claude_chatbot = claude.Chatbot(proxy=args.proxy)
loop = asyncio.get_event_loop()
try:
loop.run_until_complete(main(host, port))
loop.run_forever()
except KeyboardInterrupt:
pass
finally:
loop.close()