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", help="Only use gpt-3.5-turbo, not gpt-4",
) )
parser.add_argument( parser.add_argument(
"-c", "--no-color",
"--colorize", action="store_false",
action="store_true", dest="colorize",
help="Enable colorized output of GPT responses", default=True,
help="Disable colorized output of GPT responses",
) )
args = parser.parse_args() args = parser.parse_args()