From 6a288023c0d8e558d7e5bd49efae46e5a0f0a2dc Mon Sep 17 00:00:00 2001 From: Lifei Zhou Date: Wed, 28 Aug 2024 19:32:03 +1000 Subject: [PATCH] shorten help message --- src/goose/cli/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/goose/cli/main.py b/src/goose/cli/main.py index cb5acf973..d1aee3b0d 100644 --- a/src/goose/cli/main.py +++ b/src/goose/cli/main.py @@ -116,7 +116,7 @@ def get_session_files() -> Dict[str, Path]: @click.group( invoke_without_command=True, name="goose", - help="AI-powered tool to assist in solving a wide range of programming and operational tasks",) + help="AI-powered tool to assist in solving programming and operational tasks",) @click.pass_context def cli(_: click.Context, **kwargs: Dict) -> None: pass