Skip to content

Simple Python Server for Telegram Bot that allows you to bypass content filtering in ChatGPT. This calls the OpenAI autocompletion API for DaVinci-003.

License

Notifications You must be signed in to change notification settings

miko550/TelegramBot-ChatGPT-filter-bypass

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TelegramBot-ChatGPT-filter-bypass

Simple Python Server for Telegram Bot that allows you to bypass content filtering in ChatGPT. This calls the OpenAI autocompletion API for DaVinci-003.

Setup in Python Enviroment

  1. Clone repository
git clone https://github.com/miko550/TelegramBot-ChatGPT-filter-bypass.git
cd TelegramBot-ChatGPT-filter-bypass
  1. create and active python virtual environment
virtualenv venv
source venv/bin/activate
  1. Install requirement
pip install -r requirements.txt
  1. Replace YOUR_BOT_TOKEN and YOUR_API_KEY in telebot.py
  2. Run Server
python3 telebot.py

Setup in Docker

  1. Clone repository
git clone https://github.com/miko550/TelegramBot-ChatGPT-filter-bypass.git
cd TelegramBot-ChatGPT-filter-bypass
  1. Replace YOUR_BOT_TOKEN and YOUR_API_KEY in telebot.py
  2. Create a Docker network
docker network create bridge-net
  1. Built Docker Image
docker build --network bridge-net -t miko/chatgpt-telebot .
  • if error try
docker build --network host -t miko/chatgpt-telebot .
  1. Run Docker Container
docker run -d --network bridge-net --name chatgpt-telebot  miko/chatgpt-telebot

Reference

About

Simple Python Server for Telegram Bot that allows you to bypass content filtering in ChatGPT. This calls the OpenAI autocompletion API for DaVinci-003.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published