fix: Fix description of CLI --no-setup flag

- Update the description of the `--no-setup` flag in the CLI `start` command to accurately reflect its functionality.
This commit is contained in:
Reinier van der Leer
2023-11-24 15:49:03 +01:00
parent 9f20c027bf
commit c25b47e3a5

6
cli.py
View File

@@ -260,7 +260,11 @@ def create(agent_name):
@agent.command()
@click.argument("agent_name")
@click.option("--no-setup", is_flag=True, help="Rebuilds your poetry env")
@click.option(
"--no-setup",
is_flag=True,
help="Disables running the setup script before starting the agent",
)
def start(agent_name, no_setup):
"""Start agent command"""
import os