diff --git a/README.md b/README.md index 62d66db..5ad9519 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ Now, you can verify it is working by running `gptty --help`. If you experience a | 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 | 150 | The maximum length of the input context | -| context_keywords_only | Bool | True | Should we tokenize keywords to reduce API usage? | +| context_keywords_only | Bool | True | Tokenize keywords to reduce API usage | 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. diff --git a/gptty/__main__.py b/gptty/__main__.py index 88b1fb3..f97f773 100644 --- a/gptty/__main__.py +++ b/gptty/__main__.py @@ -7,7 +7,7 @@ __name__ = "gptty" __author__ = "Sig Janoska-Bedi" __credits__ = ["Sig Janoska-Bedi"] -__version__ = "0.2.1" +__version__ = "0.2.2" __license__ = "MIT" __maintainer__ = "Sig Janoska-Bedi" __email__ = "signe@atreeus.com" diff --git a/gptty/config.py b/gptty/config.py index ad2d30f..18df1a0 100644 --- a/gptty/config.py +++ b/gptty/config.py @@ -1,7 +1,7 @@ __name__ = "gptty.config" __author__ = "Sig Janoska-Bedi" __credits__ = ["Sig Janoska-Bedi"] -__version__ = "0.2.1" +__version__ = "0.2.2" __license__ = "MIT" __maintainer__ = "Sig Janoska-Bedi" __email__ = "signe@atreeus.com" diff --git a/gptty/context.py b/gptty/context.py index b6a4b6c..f8cb585 100644 --- a/gptty/context.py +++ b/gptty/context.py @@ -1,7 +1,7 @@ __name__ = "gptty.context" __author__ = "Sig Janoska-Bedi" __credits__ = ["Sig Janoska-Bedi"] -__version__ = "0.2.1" +__version__ = "0.2.2" __license__ = "MIT" __maintainer__ = "Sig Janoska-Bedi" __email__ = "signe@atreeus.com" diff --git a/gptty/gptty.py b/gptty/gptty.py index 0b07250..6b04ac3 100644 --- a/gptty/gptty.py +++ b/gptty/gptty.py @@ -1,7 +1,7 @@ __name__ = "gptty.gptty" __author__ = "Sig Janoska-Bedi" __credits__ = ["Sig Janoska-Bedi"] -__version__ = "0.2.1" +__version__ = "0.2.2" __license__ = "MIT" __maintainer__ = "Sig Janoska-Bedi" __email__ = "signe@atreeus.com" diff --git a/gptty/tagging.py b/gptty/tagging.py index c3311e6..3843116 100644 --- a/gptty/tagging.py +++ b/gptty/tagging.py @@ -2,7 +2,7 @@ __name__ = "gptty.tagging" __author__ = "Sig Janoska-Bedi" __credits__ = ["Sig Janoska-Bedi"] -__version__ = "0.2.1" +__version__ = "0.2.2" __license__ = "MIT" __maintainer__ = "Sig Janoska-Bedi" __email__ = "signe@atreeus.com" diff --git a/setup.py b/setup.py index 36dd15a..57ad495 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name='gptty', - version="0.2.1", + version="0.2.2", description='Chat GPT wrapper in your TTY ', author='Sig Janoska-Bedi', author_email='signe@atreeus.com',