Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/simatwa/webchatgpt

Python SDK/API for ChatGPT Web-Version
https://github.com/simatwa/webchatgpt

chatgpt chatgpt-api chatgpt-api-sdk chatgpt-sdk webchatgpt

Last synced: 2 days ago
JSON representation

Python SDK/API for ChatGPT Web-Version

Awesome Lists containing this project

README

        

WebChatGPT


Python Test
License
PyPi
Black
Passing
coverage
Progress
Downloads

Latest release
release date

wakatime




Reverse Engineering of ChatGPT in Python.

Unlike the [official Openai library](https://github.com/openai/openai-python), this library makes REST-API calls to [ChatGPT](https://chat.openai.com) via the **browser** endpoints. *No API-KEY required*

```python
from WebChatGPT import ChatGPT
bot = ChatGPT(
""
)
response = bot.chat('')

print(response)
#Ouput : What can I do for you today?
```

## Prerequisites

- [x] Python>=3.10 Installed
- [x] Chrome or Firefox browser
- [x] [export-cookie-for-puppeteer](https://github.com/ktty1220/export-cookie-for-puppeteer) extension installed.

## Installation & usage

### Installation

Either of the following ways will get you ready :

1. From pypi:

```
pip install --upgrade webchatgpt
```

2. From source

```
pip install git+https://github.com/Simatwa/WebChatGPT.git
```

## Usage

The script utilizes [HTTP Cookies](https://en.wikipedia.org/wiki/HTTP_cookie) and [OAuth](https://en.wikipedia.org/wiki/OAuth) to justify the REST-API requests at [Openai](https://openai.com).

In order to do that, we will use the [export-cookie-for-puppeteer](https://github.com/ktty1220/export-cookie-for-puppeteer) extension to extract the cookies which will later on used to retrieve the OAuth.

### Procedure

1. Login to https://chat.openai.com
2. Upon successfull login, use **Export cookie JSON File Puppeteer** to export cookies. If you haven't installed the extension, here are the quick installation links for you.
- [Google Chrome](https://chrome.google.com/webstore/detail/nmckokihipjgplolmcmjakknndddifde)
- [Firefox](https://addons.mozilla.org/ja/firefox/addon/%E3%82%AF%E3%83%83%E3%82%AD%E3%83%BCjson%E3%83%95%E3%82%A1%E3%82%A4%E3%83%AB%E5%87%BA%E5%8A%9B-for-puppeteer/)

By doing that you are good to go.

- Converse Interactively:

```
$ webchatgpt interactive -C ""
```

- Have a quick response

```
$ webchatgpt generate -C ""
```

- Since `generate` is the default option so something like this will this workout. `$ webchatgpt -C ""`

Alternatives to `-C ` :

On the current directory of your **terminal**,create a [`.env`](https://github.com/Simatwa/WebChatGPT/blob/main/env) file and save path to the cookie-file in the format :

```
openai_cookie_file=
```

Or simply make path to the cookie file an environment variable identified by `openai_cookie_file`. By that you'll just have to use less commands to get your work done e.g `webchatgpt "Nmap command for scanning SMB vulnerabilty on 192.168.0.1" -q | grep '$' > scan_smb.sh`

For more info; append `--help` to the command

`$ webchatgpt --help`

```
Usage: webchatgpt [OPTIONS] COMMAND [ARGS]...

Reverse Engineered ChatGPT Web-version

Options:
--help Show this message and exit.

Commands:
generate Generate a quick response with ChatGPT
interactive Chat with ChatGPT interactively
```

` $ webchatgpt generate --help`

```
Usage: webchatgpt generate [OPTIONS]

Generate a quick response with ChatGPT

Options:
-C, --cookie-path PATH Path to .json file containing cookies for
`chat.openai.com`
-M, --model TEXT ChatGPT's model to be used
-I, --index INTEGER Conversation index to resume from
-P, --prompt TEXT Start conversation with this messsage
--help Show this message and exit.
```

` $ webchatgpt interactive --help`

```
Usage: webchatgpt interactive [OPTIONS]

Chat with ChatGPT interactively

Options:
-C, --cookie-path PATH Path to .json file containing cookies for
`chat.openai.com`
-M, --model TEXT ChatGPT's model to be used
-I, --index INTEGER Conversation index to resume from
-P, --prompt TEXT Start conversation with this messsage
-B, --busy-bar-index INTEGER RANGE
Busy bar index [0:/, 1:■█■■■] [0<=x<=1]
--help Show this message and exit.
```

Running `h` while in interactive prompt:

```
╒════╤════════════════════════╤═══════════════════════════════════════╕
│ │ Command │ Action │
╞════╪════════════════════════╪═══════════════════════════════════════╡
│ 0 │ h │ Show this help info │
├────┼────────────────────────┼───────────────────────────────────────┤
│ 1 │ history │ Show conversation history │
├────┼────────────────────────┼───────────────────────────────────────┤
│ 2 │ share │ Share conversation by link │
├────┼────────────────────────┼───────────────────────────────────────┤
│ 3 │ stop_share │ Revoke shared conversation link │
├────┼────────────────────────┼───────────────────────────────────────┤
│ 4 │ rename │ Rename conversation title │
├────┼────────────────────────┼───────────────────────────────────────┤
│ 5 │ archive │ Archive or unarchive a conversation │
├────┼────────────────────────┼───────────────────────────────────────┤
│ 6 │ shared_conversations │ Show shared conversations │
├────┼────────────────────────┼───────────────────────────────────────┤
│ 7 │ previous_conversations │ Show previous conversations │
├────┼────────────────────────┼───────────────────────────────────────┤
│ 8 │ delete_conversation │ Delete a particular conversation │
├────┼────────────────────────┼───────────────────────────────────────┤
│ 9 │ prompts │ Generate random prompts │
├────┼────────────────────────┼───────────────────────────────────────┤
│ 10 │ account_info │ ChatGPT account info/setings │
├────┼────────────────────────┼───────────────────────────────────────┤
│ 11 │ ask │ Show raw response from ChatGPT │
├────┼────────────────────────┼───────────────────────────────────────┤
│ 12 │ auth │ Show current user auth info │
├────┼────────────────────────┼───────────────────────────────────────┤
│ 13 │ migrate │ Shift to another conversation │
├────┼────────────────────────┼───────────────────────────────────────┤
│ 14 │ set_theme │ Set theme for displaying codes │
├────┼────────────────────────┼───────────────────────────────────────┤
│ 15 │ copy_this │ Copy last response │
├────┼────────────────────────┼───────────────────────────────────────┤
│ 16 │ with_copied │ Attach last copied text to the prompt │
├────┼────────────────────────┼───────────────────────────────────────┤
│ 17 │ clear │ Clear console │
├────┼────────────────────────┼───────────────────────────────────────┤
│ 18 │ ./ │ Run system command │
├────┼────────────────────────┼───────────────────────────────────────┤
│ 19 │ │ Interact with ChatGPT │
├────┼────────────────────────┼───────────────────────────────────────┤
│ 20 │ exit │ Quit Program │
╘════╧════════════════════════╧═══════════════════════════════════════╛
```

If `$ webchatgpt` doesn't look cool on you, there's this workaround `python -m WebChatGPT`

Starting from [v0.2.4](https://github.com/Simatwa/WebChatGPT/releases) onwards, shortcut to `$ webchatgpt` is `$ wbc`.

## [Developer Documentation](https://github.com/Simatwa/WebChatGPT/blob/main/docs/DEVELOPER.md)

## ToDo

- [x] Stream Response
- [ ] Create new conversation
- [ ] Implement Your idea
- [ ] Fix my bad code.

## Contributions

Anyone is free to [fork](https://github.com/Simatwa/WebChatGPT/fork), submit [pull request](https://github.com/Simatwa/WebChatGPT/pulls/new) as well as submitting [issues](https://github.com/Simatwa/WebChatGPT/issues/new).

Consider taking a look at the [flow of events info](https://github.com/Simatwa/WebChatGPT/blob/main/docs/operations_flow.md) for the case of a [pull request](https://github.com/Simatwa/WebChatGPT/pulls).

## Acknowledgements

1. [x] [Http-Tracker](https://github.com/venukbh/http-tracker).
2. [x] [export-cookie-for-puppeteer](https://github.com/ktty1220/export-cookie-for-puppeteer)

## Special Thanks

- [x] You

If you don't want to follow all those steps; there this script that works out of the box. No API key needed at all, not even the cookies. Just installation and you're good to go. Check out [tgpt2](https://github.com/Simatwa/tgpt2/).

To those wishing to use the Official Openai API endpoints + GoogleBard at console environment; purpose to check out [GPT-CLI](https://github.com/Simatwa/GPT-CLI)

## Disclaimer

This project is a reverse-engineered implementation of the ChatGPT web version and is intended for educational and research purposes only. It is not affiliated with or endorsed by OpenAI. The code in this repository is based on reverse engineering efforts and may not perfectly replicate the functionalities or behavior of the original ChatGPT web version. Usage of this code is at your own risk, and the maintainers of this repository are not responsible for any misuse or unintended use of the generated content. Please refer to OpenAI's policies and terms of service regarding the use of their services and models. By using this repository, you agree to comply with all relevant laws and OpenAI's terms of service.