Skip to content

Commit

Permalink
Remove setting of prog_name, this implies that an executable named …
Browse files Browse the repository at this point in the history
…`morpheus_llm` exists (#1759)

The prog_name was appearing in help strings, ex:
```
python examples/llm/main.py vdb_upload --help
```

## By Submitting this PR I confirm:
- I am familiar with the [Contributing Guidelines](https://github.com/nv-morpheus/Morpheus/blob/main/docs/source/developer_guide/contributing.md).
- When the PR is ready for review, new or existing tests cover these changes.
- When the PR is ready for review, the documentation is up to date with these changes.

Authors:
  - David Gardner (https://github.com/dagardner-nv)

Approvers:
  - Michael Demoret (https://github.com/mdemoret-nv)

URL: #1759
  • Loading branch information
dagardner-nv authored Jun 24, 2024
1 parent b214137 commit 5bc4836
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/llm/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__':
Expand Down

0 comments on commit 5bc4836

Please sign in to comment.