zwa73

Results 17 comments of zwa73

It seems to be a problem, after I got this error, I created a new AsyncChatbot() instance and it received it normally Although it breaks again shortly after, I'm not...

Creating new AsyncChatbot() instances does solve this problem reliably However, the error occurs again after 2 messages Tried refresh and login to no avail Resetting the conversation_id doesn't work either...

Well, now that new instances can't be created either, this is a really hard problem to verify ``` self.main_chat = self.main_chat = Chatbot(config, conversation_id=None) File "E:\Python 3.9\lib\site-packages\revChatGPT\revChatGPT.py", line 89, in...

> Sorry. Fixed https://github.com/acheong08/ChatGPT/releases/tag/0.0.37.2 你好? 等待回复 Error handling request Traceback (most recent call last): File "E:\Python 3.9\lib\site-packages\aiohttp\web_protocol.py", line 433, in _handle_request resp = await request_handler(request) File "E:\Python 3.9\lib\site-packages\aiohttp\web_app.py", line 504,...

```py async def handle_request(request): json_data = await request.json() msg = json_data["message"] msg = re.sub('\r\n','\n',msg) tid = json_data["thread_id"] # AI回复 resp = await chat_server.send_thread_message(tid,msg) if(resp): print(resp) # 将响应内容转为 json 字符串 response_body_str...

@acheong08 线程:test 接收消息: 你好吗? 等待回复 Error handling request Traceback (most recent call last): File "E:\Python 3.9\lib\site-packages\aiohttp\web_protocol.py", line 433, in _handle_request resp = await request_handler(request) File "E:\Python 3.9\lib\site-packages\aiohttp\web_app.py", line 504, in...

``` import asyncio async def chat(): print("Hello, world!") async def main(): await chat() asyncio.run(main()) ``` Like this? If you just want to run

> Try `playwright install`. It might help with installing the correct browsers I was prompted to use it in a previous error report So I was getting this "can't log...

``` python3.9 -m revChatGPT --debug ChatGPT - A command-line interface to OpenAI's ChatGPT (https://chat.openai.com/chat) Repo: github.com/acheong08/ChatGPT Run with --debug to enable debugging Type '!help' to show commands Press enter twice...