From 64d6307cc07eb1e4c9b4a84f856b3329b5fdc74f Mon Sep 17 00:00:00 2001 From: David Gardner Date: Mon, 24 Jun 2024 12:17:40 -0700 Subject: [PATCH] Remove setting of prog_name, this implies that an executable named 'morpheus_llm' exists --- examples/llm/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/llm/main.py b/examples/llm/main.py index 6304407d12..fbf25d0fa3 100644 --- a/examples/llm/main.py +++ b/examples/llm/main.py @@ -26,7 +26,7 @@ def run_cli(): from llm.cli import cli - cli(obj={}, auto_envvar_prefix='MORPHEUS_LLM', show_default=True, prog_name="morpheus_llm") + cli(obj={}, auto_envvar_prefix='MORPHEUS_LLM', show_default=True) if __name__ == '__main__':