From 0d642c2244bcf5ffe64fea58f4cd3f885b89970d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erik=20Bj=C3=A4reholt?= Date: Mon, 23 Dec 2024 10:27:46 +0100 Subject: [PATCH] fix: shorten command descriptions --- gptme/cli.py | 2 +- gptme/commands.py | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/gptme/cli.py b/gptme/cli.py index 02a3e98c..8714255d 100644 --- a/gptme/cli.py +++ b/gptme/cli.py @@ -97,7 +97,7 @@ "interactive", default=True, flag_value=False, - help="Force non-interactive mode. Implies --no-confirm.", + help="Non-interactive mode. Implies --no-confirm.", ) @click.option( "--system", diff --git a/gptme/commands.py b/gptme/commands.py index ce157d41..e3ba2afb 100644 --- a/gptme/commands.py +++ b/gptme/commands.py @@ -17,9 +17,9 @@ ) from .tools import ToolUse, execute_msg, loaded_tools from .tools.base import ConfirmFunc, get_tool_format +from .util.cost import log_costs from .util.export import export_chat_to_html from .util.useredit import edit_text_with_editor -from .util.cost import log_costs logger = logging.getLogger(__name__) @@ -45,12 +45,12 @@ "tools": "Show available tools", "edit": "Edit the conversation in your editor", "rename": "Rename the conversation", - "fork": "Create a copy of the conversation with a new name", + "fork": "Copy the conversation using a new name", "summarize": "Summarize the conversation", - "replay": "Re-execute codeblocks in the conversation, wont store output in log", + "replay": "Rerun tools in the conversation, won't store output", "impersonate": "Impersonate the assistant", "tokens": "Show the number of tokens used", - "export": "Export conversation as standalone HTML", + "export": "Export conversation as HTML", "help": "Show this help message", "exit": "Exit the program", }