pininkara / BingChatBot

Bing chat Telegram bot using Python and unofficial EdgeGPT API
Apache License 2.0
54 stars 21 forks source link

不同用户使用相同对话的解决方案 #8

Closed tom-snow closed 1 year ago

tom-snow commented 1 year ago

为每一个用户创建一个 EdgeGPT 的实例,比如

from EdgeGPT import Chatbot

EDGES = {}
for user in ALLOWED_IDS:
  EDGES[user] = Chatbot(cookiePath=COOKIE_FILE) # 可以使用同一个 cookie file

我自己已经实现了

pininkara commented 1 year ago

感谢帮助