From 013f5970d2c2e8f8fd314d8b9812e1475bddaed1 Mon Sep 17 00:00:00 2001 From: ykdy3951 Date: Sun, 11 Feb 2024 22:32:29 +0900 Subject: [PATCH] Add github repo link to cllm help message --- cllm/main.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cllm/main.py b/cllm/main.py index 6ae0c49..1a9fcf4 100644 --- a/cllm/main.py +++ b/cllm/main.py @@ -12,7 +12,9 @@ import pyperclip # version of the CLI -app = typer.Typer(help="Empower your CLI experience with a command search tool driven by LLM magic!", +app = typer.Typer(help="Empower your CLI experience with a command search tool driven by LLM magic!\n\ncllm github repo: https://github.com/dev-backpack/cllm \n\n \ + If you have any questions or suggestions, feel free to open an issue on the github repo.", + epilog="", context_settings={"help_option_names": ["-h", "--help"]} )