From 76cb971c40d9fb16f30c0d957b9f98a9c756a6d0 Mon Sep 17 00:00:00 2001 From: yym68686 Date: Wed, 26 Jun 2024 19:44:51 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=BB=20Code:=201.=20Add=20the=20--quiet?= =?UTF-8?q?=20parameter=20to=20git=20clone=20to=20reduce=20the=20output=20?= =?UTF-8?q?of=20information=20during=20deployment,=20showing=20only=20nece?= =?UTF-8?q?ssary=20error=20messages.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 2. update README --- README.md | 4 ++-- setup.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 31d0c761..3dca30fd 100644 --- a/README.md +++ b/README.md @@ -16,11 +16,11 @@

-The ChatGPT Telegram Bot is a powerful Telegram bot that utilizes the latest GPT models, including GPT-3.5/4/4 Turbo/4o, DALL·E 3, Groq Mixtral-8x7b/LLaMA2-70b and the official Claude2.1/3/3.5 API. It enables users to engage in efficient conversations and information searches on Telegram. +The ChatGPT Telegram Bot is a powerful Telegram bot that utilizes the latest GPT models, including GPT-3.5/4/4 Turbo/4o, DALL·E 3, Groq Mixtral-8x7b/LLaMA2-70b, Gemini 1.5 Pro/Flash and the official Claude2.1/3/3.5 API. It enables users to engage in efficient conversations and information searches on Telegram. ## ✨ Features -- **Multiple AI Models**: Supports GPT-3.5/4/4 Turbo/4o, DALL·E 3, Groq Mixtral-8x7b/LLaMA2-70b and the official Claude2.1/3/3.5 API. Also supports one-api/new-api. Utilizes a self-developed API request backend [SDK](https://github.com/yym68686/ModelMerge), independent of the OpenAI SDK. +- **Multiple AI Models**: Supports GPT-3.5/4/4 Turbo/4o, DALL·E 3, Groq Mixtral-8x7b/LLaMA2-70b, Gemini 1.5 Pro/Flash and the official Claude2.1/3/3.5 API. Also supports one-api/new-api. Utilizes a self-developed API request backend [SDK](https://github.com/yym68686/ModelMerge), independent of the OpenAI SDK. - **Group Chat Topic Mode**: Supports enabling topic mode in group chats, isolating APIs, dialogue history, plugin configurations, and preferences between topics. - **Rich Plugin System**: Supports web search(DuckDuckGo and Google), URL summarization, arXiv paper summarization, and code interpreter. - **User-friendly Interface**: Allows flexible model switching within the chat window and supports streaming output for a typewriter-like effect. diff --git a/setup.sh b/setup.sh index fc53ad49..b2667c82 100755 --- a/setup.sh +++ b/setup.sh @@ -1,5 +1,5 @@ #!/bin/bash set -eu rm -rf /home/ChatGPT-Telegram-Bot -git clone --recurse-submodules --depth 1 -b main https://github.com/yym68686/ChatGPT-Telegram-Bot.git +git clone --recurse-submodules --depth 1 -b main --quiet https://github.com/yym68686/ChatGPT-Telegram-Bot.git python -u /home/ChatGPT-Telegram-Bot/bot.py \ No newline at end of file