diff --git a/.gitignore b/.gitignore index 9453ed7..0ab77c8 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ wheels/ .env *.pem demo.cast +*_cache/ diff --git a/src/pr_manager/cli/utils.py b/src/pr_manager/cli/utils.py index 47cbc09..92f1353 100644 --- a/src/pr_manager/cli/utils.py +++ b/src/pr_manager/cli/utils.py @@ -119,7 +119,7 @@ async def run_agent(console: Console): def print_welcome_message(console: Console): console.print( Markdown( - f"## Welcome to pr-manager!\n\nHi, I am pr-manafer, your assistant, based on the latest flagship model by Google, for **reviewing GitHub PRs**.\n\nJust give me the link to a PR, and I will take a look at it!\n\n> _Tip: If you with to exit, do so by using the `/exit`, `/quit` or `/bye` command_\n\n---\n\n" + f"## Welcome to pr-manager!\n\nHi, I am pr-manager, your assistant, based on the latest flagship model by Google, for **reviewing GitHub PRs**.\n\nJust give me the link to a PR, and I will take a look at it!\n\n> _Tip: If you with to exit, do so by using the `/exit`, `/quit` or `/bye` command_\n\n---\n\n" ) ) print()