From acb968663f6ba10e4a621e53ab6d2255163a6519 Mon Sep 17 00:00:00 2001 From: geekan Date: Tue, 19 Dec 2023 19:00:20 +0800 Subject: [PATCH] refine cli --- metagpt/startup.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/metagpt/startup.py b/metagpt/startup.py index a25b71cd0..9c17edc1c 100644 --- a/metagpt/startup.py +++ b/metagpt/startup.py @@ -6,7 +6,7 @@ import typer from metagpt.config import CONFIG -app = typer.Typer() +app = typer.Typer(add_completion=False) @app.command() @@ -23,7 +23,9 @@ def startup( default="", help="Specify the directory path of the old version project to fulfill the " "incremental requirements.", ), - reqa_file: str = typer.Option(default="", help="Specify the source file name for rewriting the quality test code."), + reqa_file: str = typer.Option( + default="", help="Specify the source file name for rewriting the quality assurance " "code." + ), max_auto_summarize_code: int = typer.Option( default=-1, help="The maximum number of times the 'SummarizeCode' action is automatically invoked, with -1 indicating "