Skip to content

Commit

Permalink
Modified: version > 0.2.2 (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
signebedi committed Mar 28, 2023
1 parent 6bbec39 commit 59bfe0e
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion gptty/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion gptty/config.py
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion gptty/context.py
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion gptty/gptty.py
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion gptty/tagging.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 59bfe0e

Please sign in to comment.