diff --git a/packages/prime/src/prime_cli/commands/env.py b/packages/prime/src/prime_cli/commands/env.py index fa23045e..59c07953 100644 --- a/packages/prime/src/prime_cli/commands/env.py +++ b/packages/prime/src/prime_cli/commands/env.py @@ -172,7 +172,7 @@ def compute_content_hash(env_path: Path) -> str: @app.command("list") def list_cmd( limit: int = typer.Option( - DEFAULT_LIST_LIMIT, "--limit", "-l", help="Number of environments to show" + DEFAULT_LIST_LIMIT, "--num", "-n", help="Number of environments to show" ), offset: int = typer.Option(0, "--offset", help="Number of environments to skip"), owner: Optional[str] = typer.Option(None, "--owner", help="Filter by owner name"), diff --git a/packages/prime/src/prime_cli/commands/evals.py b/packages/prime/src/prime_cli/commands/evals.py index 030b8ddd..bc1b4439 100644 --- a/packages/prime/src/prime_cli/commands/evals.py +++ b/packages/prime/src/prime_cli/commands/evals.py @@ -181,7 +181,7 @@ def get_eval( def get_samples( eval_id: str = typer.Argument(..., help="The ID of the evaluation"), page: int = typer.Option(1, "--page", "-p", help="Page number"), - limit: int = typer.Option(100, "--limit", "-l", help="Samples per page"), + limit: int = typer.Option(100, "--num", "-n", help="Samples per page"), output: str = typer.Option("json", "--output", "-o", help="json|pretty"), ) -> None: _validate_output_format(output, ["json", "pretty"])