Spaces:
Paused
Paused
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,2 +1,86 @@
|
|
| 1 |
-
#
|
| 2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# GPTfree Jailbreak WebUI :unlock:
|
| 2 |
+
|
| 3 |
+
This repository contains ChatGPT unlocked with WebUI that *DOES NOT REQUIRE ANY API KEY*.
|
| 4 |
+
|
| 5 |
+
## Incorporated Projects :busts_in_silhouette:
|
| 6 |
+
I highly recommend visiting and supporting both projects.
|
| 7 |
+
|
| 8 |
+
### WebUI
|
| 9 |
+
The application interface was incorporated from the [chatgpt-clone](https://github.com/xtekky/chatgpt-clone) repository.
|
| 10 |
+
|
| 11 |
+
### API freeGPT
|
| 12 |
+
The free GPT API was incorporated from the [freeGPT](https://github.com/Ruu3f/freeGPT) repository.
|
| 13 |
+
|
| 14 |
+
## Table of Contents
|
| 15 |
+
- [Getting Started](#getting-started-white_check_mark)
|
| 16 |
+
- [Cloning the Repository](#cloning-the-repository-inbox_tray)
|
| 17 |
+
- [Install Dependencies](#install-dependencies-wrench)
|
| 18 |
+
- [Running the Application](#running-the-application-rocket)
|
| 19 |
+
- [Docker](#docker-)
|
| 20 |
+
- [Prerequisites](#prerequisites)
|
| 21 |
+
- [Running the Docker](#running-the-docker)
|
| 22 |
+
|
| 23 |
+
|
| 24 |
+
## Getting Started :white_check_mark:
|
| 25 |
+
To get started with this project, you'll need to clone the repository and have [Python](https://www.python.org/downloads/) installed on your system.
|
| 26 |
+
|
| 27 |
+
### Cloning the Repository :inbox_tray:
|
| 28 |
+
Run the following command to clone the repository:
|
| 29 |
+
|
| 30 |
+
```
|
| 31 |
+
git clone https://github.com/ramonvc/gptfree-jailbreak-webui.git
|
| 32 |
+
```
|
| 33 |
+
|
| 34 |
+
### Install Dependencies :wrench:
|
| 35 |
+
Navigate to the project directory:
|
| 36 |
+
```
|
| 37 |
+
cd gptfree-jailbreak-webui
|
| 38 |
+
```
|
| 39 |
+
|
| 40 |
+
Install the dependencies:
|
| 41 |
+
```
|
| 42 |
+
pip install -r requirements.txt
|
| 43 |
+
```
|
| 44 |
+
## Running the Application :rocket:
|
| 45 |
+
To run the application, run the following command:
|
| 46 |
+
```
|
| 47 |
+
python run.py
|
| 48 |
+
```
|
| 49 |
+
|
| 50 |
+
Access the application in your browser using the URL:
|
| 51 |
+
```
|
| 52 |
+
http://127.0.0.1:1338
|
| 53 |
+
```
|
| 54 |
+
or
|
| 55 |
+
```
|
| 56 |
+
http://172.17.0.2:1338
|
| 57 |
+
```
|
| 58 |
+
|
| 59 |
+
## Docker 🐳
|
| 60 |
+
### Prerequisites
|
| 61 |
+
Before you start, make sure you have installed [Docker](https://www.docker.com/get-started) on your machine.
|
| 62 |
+
|
| 63 |
+
### Running the Docker
|
| 64 |
+
Build the Docker image:
|
| 65 |
+
```
|
| 66 |
+
docker-compose build
|
| 67 |
+
```
|
| 68 |
+
|
| 69 |
+
Run the application using Docker Compose:
|
| 70 |
+
```
|
| 71 |
+
docker-compose up
|
| 72 |
+
```
|
| 73 |
+
|
| 74 |
+
Access the application in your browser using the URL:
|
| 75 |
+
```
|
| 76 |
+
http://127.0.0.1:1338
|
| 77 |
+
```
|
| 78 |
+
or
|
| 79 |
+
```
|
| 80 |
+
http://172.17.0.2:1338
|
| 81 |
+
```
|
| 82 |
+
|
| 83 |
+
When you're done using the application, stop the Docker containers using the following command:
|
| 84 |
+
```
|
| 85 |
+
docker-compose down
|
| 86 |
+
```
|