Open ljlVink opened 1 year ago
EdgeGPT.py
line 287-298
class _Conversation: """ Conversation API """ def __init__( self, proxy: str | None = None, async_mode: bool = False, cookies: list[dict] | None = None, ) -> None: if async_mode:
cookies需要提前被解析成dict带入
在本项目中 main.py bingchat_command_chat中 Chatbot创建时,需要带入cookies参数
bingchat_command_chat
f=open(plugin_data.current_cookies_file_path) d=json.loads(f.read()) f.close() current_user_data.chatbot = Chatbot( cookies=d, # type: ignore 应该支持Path的 proxy=plugin_config.bingchat_proxy, )
EdgeGPT.py
line 287-298
cookies需要提前被解析成dict带入
在本项目中 main.py
bingchat_command_chat
中 Chatbot创建时,需要带入cookies参数