switch to --no-colorize

This commit is contained in:
Paul Gauthier 2023-05-08 07:50:44 -07:00
parent e6137a78cf
commit 5ec57a221b

View file

@ -387,10 +387,11 @@ def main():
help="Only use gpt-3.5-turbo, not gpt-4",
)
parser.add_argument(
"-c",
"--colorize",
action="store_true",
help="Enable colorized output of GPT responses",
"--no-color",
action="store_false",
dest="colorize",
default=True,
help="Disable colorized output of GPT responses",
)
args = parser.parse_args()