From ab6413d2179255a6c1cf8a33bfec972a51e0f548 Mon Sep 17 00:00:00 2001 From: RainEggplant Date: Fri, 10 Mar 2023 14:41:38 +0800 Subject: [PATCH] v2.4.0: Timeout mechanism --- README.md | 12 +++++++++--- package.json | 2 +- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 7e18244..fcfaa38 100644 --- a/README.md +++ b/README.md @@ -9,13 +9,21 @@ A ChatGPT bot for Telegram based on Node.js. Support both browserless and browse ## Updates 🎉 v2 has been released! +
+ 🔔 Mar. 10, 2023 (v2.4.0) + + > - Add a timeout mechanism to prevent the message queue from getting stuck. You can override the default timeout in the config file. +
🔔 Mar. 07, 2023 (v2.3.2) > - You can pull the [pre-built Docker image](https://hub.docker.com/r/raineggplant/chatgpt-telegram-bot) from Docker Hub now!
-
+ +
+Previous Updates +
🔔 Mar. 02, 2023 (v2.3.0) > - Support the [official OpenAI chat completions API](https://platform.openai.com/docs/guides/chat). @@ -24,8 +32,6 @@ A ChatGPT bot for Telegram based on Node.js. Support both browserless and browse We strongly advice you to use the `official` API. There are rumors that OpenAI may ban your account if you continue to use the `unofficial` and `browser` API.
-
-Previous Updates
🔔 Feb. 28, 2023 (v2.2.0) diff --git a/package.json b/package.json index 73df13a..06c4f51 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "chatgpt-telegram-bot", - "version": "2.3.2", + "version": "2.4.0", "description": "A ChatGPT bot for Telegram.", "main": "index.js", "type": "module",