Skip to content

Commit

Permalink
fix: shorten command descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikBjare committed Dec 23, 2024
1 parent dd26dc2 commit 0d642c2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion gptme/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
8 changes: 4 additions & 4 deletions gptme/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__)

Expand All @@ -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",
}
Expand Down

0 comments on commit 0d642c2

Please sign in to comment.