Simple Python Server for Telegram Bot that allows you to bypass content filtering in ChatGPT. This calls the OpenAI autocompletion API for DaVinci-003.
- Clone repository
git clone https://github.com/miko550/TelegramBot-ChatGPT-filter-bypass.git
cd TelegramBot-ChatGPT-filter-bypass
- create and active python virtual environment
virtualenv venv
source venv/bin/activate
- Install requirement
pip install -r requirements.txt
- Replace
YOUR_BOT_TOKEN
andYOUR_API_KEY
in telebot.py - Run Server
python3 telebot.py
- Clone repository
git clone https://github.com/miko550/TelegramBot-ChatGPT-filter-bypass.git
cd TelegramBot-ChatGPT-filter-bypass
- Replace
YOUR_BOT_TOKEN
andYOUR_API_KEY
in telebot.py - Create a Docker network
docker network create bridge-net
- Built Docker Image
docker build --network bridge-net -t miko/chatgpt-telebot .
- if error try
docker build --network host -t miko/chatgpt-telebot .
- Run Docker Container
docker run -d --network bridge-net --name chatgpt-telebot miko/chatgpt-telebot