Skip to content

Commit

Permalink
fix: fixed -v flag
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikBjare committed Jan 18, 2025
1 parent 5f04004 commit 765032f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gptme_rag/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@


@click.group()
@click.option("--verbose/-v", is_flag=True, help="Enable verbose output")
@click.option("-v", "--verbose", is_flag=True, help="Enable verbose output")
def cli(verbose: bool):
"""RAG implementation for gptme context management."""
handler = RichHandler()
Expand Down

0 comments on commit 765032f

Please sign in to comment.