Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/prime/src/prime_cli/commands/env.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand Down
2 changes: 1 addition & 1 deletion packages/prime/src/prime_cli/commands/evals.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"])
Expand Down