Go to file
Struchkov Mark 5dab5e3fa5
All checks were successful
continuous-integration/drone/push Build is passing
fix inline mode
2023-03-26 22:36:50 +03:00
.github FUNDING.yml 2023-03-16 01:35:47 +03:00
.mvn/wrapper InitCommit 2023-03-15 02:15:51 +03:00
documentation/en demo 2023-03-16 02:20:22 +03:00
src/main fix inline mode 2023-03-26 22:36:50 +03:00
.drone.yml Behavior set, multi-account, inline mod, and other little things 2023-03-26 22:13:37 +03:00
.gitignore setting cicd 2023-03-16 00:03:17 +03:00
Dockerfile add dockerfiles 2023-03-15 02:23:14 +03:00
Dockerfile-develop add dockerfiles 2023-03-15 02:23:14 +03:00
mvnw InitCommit 2023-03-15 02:15:51 +03:00
mvnw.cmd InitCommit 2023-03-15 02:15:51 +03:00
pom.xml Behavior set, multi-account, inline mod, and other little things 2023-03-26 22:13:37 +03:00
README.md add readme 2023-03-16 01:34:18 +03:00

Personal ChatGPT Telegram Bot

The project uses your ChatGPT token to access the ChatGPT API and let you chat with ChatGPT directly in Telegram.
See documentation for details

Enough words, let's launch your personal ChatGPT Telegram bot. 🚀

Preparing

Docker Run

The following platforms are supported: linux/amd64,linux/arm64/v8

docker run -it --name chatgpt-telegram-bot \
    --env TELEGRAM_BOT_TOKEN= \
    --env TELEGRAM_BOT_USERNAME= \
    --env TELEGRAM_PERSON_ID= \
    --env CHAT_GPT_TOKEN= \
    upagge/chatgpt-telegram-bot:develop

TELEGRAM_BOT_USERNAME - Specify a name with the ending bot here, not a public name.

Telegram Proxy

If you have Telegram blocked, you can specify proxy settings to connect.

docker run -it --name chatgpt-telegram-bot \
    --env TELEGRAM_BOT_TOKEN= \
    --env TELEGRAM_BOT_USERNAME= \
    --env TELEGRAM_PERSON_ID= \
    --env CHAT_GPT_TOKEN= \
    --env TELEGRAM_PROXY_ENABLE=true \
    --env TELEGRAM_PROXY_HOST= \
    --env TELEGRAM_PROXY_PORT= \
    --env TELEGRAM_PROXY_TYPE=SOCKS5 \
    --env TELEGRAM_PROXY_USERNAME= \
    --env TELEGRAM_PROXY_PASSWORD= \
    upagge/chatgpt-telegram-bot:latest
  • Available options SOCKS5, SOCKS4, HTTP.
  • Optional. If there is no authorization, you can leave it blank.

DockerCompose

Don't forget to create a file with the variable .env.

version: '3.8'
services:
 chat-gpt:
   image: upagge/chatgpt-telegram-bot:latest
   container_name: chatgpt-bot
   restart: always
   environment:
     TELEGRAM_BOT_TOKEN: ${TELEGRAM_BOT_TOKEN}
     TELEGRAM_BOT_USERNAME: ${TELEGRAM_BOT_USERNAME}
     TELEGRAM_PERSON_ID: ${TELEGRAM_PERSON_ID}
     CHAT_GPT_TOKEN: ${CHAT_GPT_TOKEN}
TELEGRAM_BOT_TOKEN=
TELEGRAM_BOT_USERNAME=
TELEGRAM_PERSON_ID=
CHAT_GPT_TOKEN=