Warning
This project is no longer maintained. if you want to continue chatting with GPT4 in the Terminal , you can use this
A command-line interface chatbot. It allows you to have interactive conversations with different bots, including GPT4 FOR FREE
Check the web version here (WIP).
Thanks to @Lomusire for providing premium tokens ❤️.
We are in a race with poe.com devs baning our tokens, you can help by generating tokens.
Updated poe.com token list here.
- Choose between different bots.
- Input messages for the chatbot via command-line arguments or interactively.
- Export the conversation to a .txt file for future reference.
- Insert your clipboard for multiple-line messages.
- Delete your messages to respect your privacy.
- Updated tokens each day
- Python 3.7 or higher installed on your system.
-
Clone or download the CLI app repository to your local machine.
-
Open a command-line interface (e.g., Command Prompt, Terminal) and navigate to the directory where you have saved the GPT CLI files.
-
Install the required dependencies by running the following command:
pip install -r requirements.txt
- Run the CLI app:
cd aichat
python chatcli.py
pip install aichat-cli --upgrade
📦#####How to add pip package to PATH#####📦
- Open the command prompt.
- Type
pip show aichat-cli
and press Enter. This will show you the location of the package. - Copy the path of the package.
- Open the Start menu and search for “Environment Variables”.
- Click on “Edit the system environment variables”.
- Click on “Environment Variables” button.
- Under “System Variables”, scroll down and find “Path” and click on “Edit”.
- Click on “New” and paste the path of the package that you copied earlier.
- Click on “OK” to save changes.
🔐#####How To generate tokens manually#####🔐
Log into Poe on any web browser, then open your browser's developer tools (also known as "inspect") and look for the value of the p-b
cookie in the following menus:
Chromium: Devtools > Application > Cookies > poe.com
Firefox: Devtools > Storage > Cookies
Safari: Devtools > Storage > Cookies
then save the token by creating poe_token.txt
in /aichat/tokens
Log into Bard on any web browser, then open your browser's developer tools (also known as "inspect") and look for the value of the __Secure-1PSID
cookie in the following menus:
(tip : copy the cookie name to the filter box)
Chromium: Devtools > Application > Cookies > bard.google.com
Firefox: Devtools > Storage > Cookies
Safari: Devtools > Storage > Cookies
then save the token by creating bard_token.txt
in /aichat/tokens
⚠️ Warning: Be careful using Bard tokens; they are Google account tokens.
Not required.
This CLI app supports the following command-line arguments:
-
-b
or--bot
: Choose the bot for the conversation. Valid options are provided by the application. Example:python chatcli.py -b chatgpt
-
-m
or--message
: Input a message for the chatbot. Example:python chatcli.py -b sage -m "Hello, how are you?"
-
For more info, use
-h
or--help
to see the help message.
If you don't provide any command-line arguments, the app will prompt you to choose a bot and enter a message interactively.
Once the conversation starts, you can continue the interaction by typing your messages or selecting options from the menu. The menu options include changing the bot or exporting the conversation to a .txt file.
-
If the app cannot find the
token.txt
file or the file is empty, it will automatically generate a new token using thetoken_gen.py
in/aichat/token_gen
script provided. -
The CLI app also supports the use of premium tokens , so you can be able to use GPT4.
-
The conversation history is stored within the app and is not persistent between sessions.
Feel free to customize and enhance the GPT CLI app according to your needs. Happy chatting!