Chat GPT wrapper in your TTY
Project description
gptty
Chat GPT wrapper in your TTY
Installation
On linux, run:
cd ~/Code # replace this with whatever directory you want to use
git clone https://github.com/signebedi/gptty.git
# now install the requirements
python3 -m venv venv
source venv/bin/activate
pip install -r gptty/requirements.txt
# now run it (make sure your venv is running)
cd ~/Code # replace this with whatever directory you want to use
python gptty
If you experience an error, try configuring the app.
Configuration
gptty
reads configuration settings from a file named gptty.ini located in the same directory as the main script. The file uses the INI file format, which consists of sections, each with its own key-value pairs.
Key | Type | Default Value | Description |
---|---|---|---|
api_key | String | "" | The API key for OpenAI's GPT service |
gpt_version | String | "3" | The version of GPT to use |
your_name | String | "question" | The name of the input prompt |
gpt_name | String | "response" | The name of the generated response |
output_file | String | "output.txt" | The name of the file where the output will be saved |
model | String | "text-davinci-003" | The name of the GPT model to use |
temperature | Float | 0.0 | The temperature to use for sampling |
max_tokens | Integer | 250 | The maximum number of tokens to generate for the response |
max_context_length | Integer | 5000 | The maximum length of the input context |
You can modify the settings in the configuration file to suit your needs. If a key is not present in the configuration file, the default value will be used. The [main] section is used to specify the program's settings.
[main]
api_key=my_api_key
The application provides a sample configuration file gptty.ini.example
that you can use as a starting point.
Usage
You can use the following metacommands from within the chat interface:
Metacommand | Description |
---|---|
:help | Display a list of available commands and their descriptions. |
:quit | Exit ChatGPT. |
:configs | Display the current configuration settings. |
:context[a:b] | Display the context history, optionally specifying a range a and b. Under development |
To use a command, simply type it into the command prompt and press Enter. For example, use the following command to display the current configuration settings in the terminal:
> :configs
api_key: SOME_CONFIG_HERE
gpt_version: 3
your_name: question
gpt_name: response
output_file: output.txt
model: text-davinci-003
temperature: 0.0
max_tokens: 250
max_context_length: 5000
You can type a question into the prompt anytime, and it will generate a reponse for you. If you'd like to share context across queries, see the context section below.
Context
Tagging text for context when writing a query on this app can help improve the accuracy of the generated response. Here are the steps to follow:
- Identify the context of your question or statement.
- Assign a tag to that context. The tag can be a word or short phrase that describes the context like
bananas
orshakespeare
. - Include the tag in your input message by prefixing it with
[tag]
. For example, if the context of your question is "cooking," you can tag it as[cooking]
. Make sure to use the same tag consistently for all related queries. - The application will save your tagged question and response in the output file specified in the code output file.
- When asking subsequent questions on the same topic, provide the tag in your input message in order to retrieve the relevant context for the generated response.
Here is an example of what this might look like, using questions tagged as [shakespeare]
. Notice how, in the second question, the name 'William Shakespeare' is not mentioned at all.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file gptty-0.1.3.tar.gz
.
File metadata
- Download URL: gptty-0.1.3.tar.gz
- Upload date:
- Size: 7.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | be6ba25506b86846cef69d457ab89735b3202d689eebdd0dc9b4323bf54f8c1a |
|
MD5 | d2f51285996c4df35ec90ea29e3a9d39 |
|
BLAKE2b-256 | fbc24fa931cf0f1da89fa10e75659670be1aac30b428072542ada55e930b2e19 |
File details
Details for the file gptty-0.1.3-py3-none-any.whl
.
File metadata
- Download URL: gptty-0.1.3-py3-none-any.whl
- Upload date:
- Size: 8.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ea6f8c45d4f3fa0c9af47c7b3ab28d82639f6445a618d86a5ba8749ec9880bb7 |
|
MD5 | 7731b68922dcb92595bff14aba6591ba |
|
BLAKE2b-256 | de82ee2b9a24080f8f7c9dbc1c119c8041d40836b5967704b69277477c2bbbb6 |