a Pynecone app that converts AI-generated text into human-readable text, allowing users to bypass AI detection.
Table of Contents
The purpose of this project is to convert AI-generated text into human-readable text, allowing users to bypass AI detection.
This project is built on the new Pynecone Python framework that allows making web-apps in pure Python.
- Python 3.7+
- Node.js 12.22.0+ (Don't worry, you'll never have to write any Javascript)
- OpenAI API Key
- Pynecone
- OpenAI 0.27.2
-
Get a free API Key
-
Install Node.js
-
Install Pynecone
pip install pynecone
-
Install OpenAI
pip install openai==0.27.2
-
Enter your API in
gpt-humanizer.py
openai.api_key = 'ENTER YOUR API KEY'
Installing Pynecone also installs the pc
command line tool. Test that the install was successful by creating a new project.
Replace my_app_name
with your project name (preferably gpt-humanizer
):
mkdir my_app_name
cd my_app_name
pc init
When you run this command for the first time, it will download and install bun automatically.
This command initializes a template app in your new directory. You can run this app in development mode:
pc run
You should see your app running at http://localhost:3000.
Now you can modify the source code in my_app_name/my_app_name.py
. This is where you copy my code from gpt-humanizer.py
and paste it in yours. Pynecone has fast refreshes so you can see your changes instantly when you save your code.
Once you have initialised your directory, you may proceed by copying the code from gpt-humanizer.py
and pasting it into my_app_name/my_app_name.py
. From there, run the code by typing pc run
into the terminal. Following this, a text box should appear, allowing you to input any text you desire. Once you have done so, wait a few seconds before clicking on the Humanize
button for better results. It is important to note that while the output text located above the Humanize
button is typically sufficient to bypass AI detection, there may be instances where it is not entirely accurate. As such, it is recommended that you click on the Humanize
button, scroll down, and copy the text that has been rewritten. Additionally, please be aware that the process may take longer than expected due to GPT-servers.