mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-17 14:04:27 +01:00
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:
6
cli.py
6
cli.py
@@ -260,7 +260,11 @@ def create(agent_name):
|
|||||||
|
|
||||||
@agent.command()
|
@agent.command()
|
||||||
@click.argument("agent_name")
|
@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):
|
def start(agent_name, no_setup):
|
||||||
"""Start agent command"""
|
"""Start agent command"""
|
||||||
import os
|
import os
|
||||||
|
|||||||
Reference in New Issue
Block a user