💍️Telegram_bot powered by chatGPT, demo:@sisChatBot
- 申请Telegram bot api token : https://t.me/BotFather
- 获取ChatGPT session token
-
- 注册登录OpenAI ChatGPT账号,然后打开控台-->应用程序-->Cookie-->复制名称为xxxxxx.session.token对应的value值,如下图
- Node.js环境
-
复制项目到本地,安装依赖
git clone https://github.com/hobk/chatgpt-telebot.git cd chatgpt-telebot npm install
-
复制
.env.example
并命名为.env
cp .env.example .env
-
把之前准备的 ChatGPT session token 和Telegram bot token 对应写入 .env 文件
# inside .env TOKEN='your_telegrame_bot_token' SESSION_TOKEN='your_chatGPT_session_token'
-
启动
node index.js # 或者使用 pm2 (安装:npm i pm2) pm2 start index.js