chatgpt whatsapp
v2.1.2
该项目是一个 WhatsApp 机器人,它使用 OpenAI 的 ChatGPT (GPT-4) 来响应用户输入。
git clone https://github.com/noelzappy/chatgpt-whatsapp.git
cd chatgpt-whatsapp
yarn install
.env
文件并更新 OpenAI API 密钥和组织 ID cp .env.example .env
nano .env # opens the `.env` file for you to update the details
yarn start
机器人现在将回复您收到的所有消息。
要在群聊中使用机器人,只需在消息中提及机器人的名称或下面列出的任何前缀即可。
"gpt",
"GPT",
"gpt3",
"GPT3",
"gpt-3",
"GPT-3",
"bot",
"Bot",
"BOT",
要更改前缀,请更新位于src/configs/constants.ts
内的数组
What is the meaning of life?
bot What is the meaning of life?
该机器人仅响应您收到的消息,而不是发送的消息。它还可以处理群组消息。该机器人将回复您收到的所有私人消息,并且仅回复包含群聊中任何前缀的消息。要更改正在使用的 OpenAI 模型,请更新config/constants.ts
文件中的OPENAI_MODEL
变量。