From 5f0de48c2b913e6edf53fb2fd90d226f265fe865 Mon Sep 17 00:00:00 2001 From: "adam.promo@gmail.com" <27074934+adamyodinsky@users.noreply.github.com> Date: Sun, 25 Aug 2024 16:56:41 +0700 Subject: [PATCH] fix --- pyproject.toml | 2 +- terminalgpt/main.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 80c8375..4ea2f4a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "terminalgpt" -version = "2.2.1" +version = "2.2.2" description = "AI chat assistant in your terminal powered by OpenAI ChatGPT models." authors = ["Adam Yodinsky <27074934+adamyodinsky@users.noreply.github.com>"] keywords = [ diff --git a/terminalgpt/main.py b/terminalgpt/main.py index d98965e..8ec686d 100644 --- a/terminalgpt/main.py +++ b/terminalgpt/main.py @@ -163,7 +163,7 @@ def install(): "\n Choose a printing style (plain/markdown):\n", completer=WordCompleter(printing_styles, ignore_case=True), style=PromptStyle.from_dict({"prompt": "bold lightblue"}), - default=printing_styles[0], + default=printing_styles[1], ) encryption_key = enc_manager.set_encryption_key()