Metadata-Version: 2.4
Name: scorable-cli
Version: 0.1.4
Summary: CLI for the Scorable API
Author-email: Scorable <support@scorable.ai>
License: Apache-2.0
Project-URL: Homepage, https://scorable.ai/
Project-URL: Repository, https://github.com/root-signals/rs-sdk
Requires-Python: >=3.11
Description-Content-Type: text/markdown
Requires-Dist: click
Requires-Dist: requests
Requires-Dist: pydantic
Requires-Dist: rich
Requires-Dist: pyyaml
Provides-Extra: dev
Requires-Dist: pytest>=8.4.1; extra == "dev"
Requires-Dist: pytest-mock>=3.14.1; extra == "dev"

<h1 align="center">
  <img width="600" alt="Scorable logo" src="https://scorable.ai/images/root-signals-color.svg" loading="lazy">
</h1>

  <!-- This is commented so it is easier to sync with the docs/index.rst -->

<p align="center" class="large-text">
  <i><strong>Measurement & Control for LLM Automations</strong></i>
</p>

<p align="center">
  <a href="https://scorable.ai/register">
    <img src="https://img.shields.io/badge/Get_Started-2E6AFB?style=for-the-badge&logo=rocket&logoColor=white&scale=2" />
  </a>

  <a href="https://huggingface.co/root-signals">
    <img src="https://img.shields.io/badge/HuggingFace-FF9D00?style=for-the-badge&logo=huggingface&logoColor=white&scale=2" />
  </a>

  <a href="https://discord.gg/QbDAAmW9yz">
    <img src="https://img.shields.io/badge/Discord-5865F2?style=for-the-badge&logo=discord&logoColor=white&scale=2" />
  </a>

  <a href="https://sdk.rootsignals.ai/en/latest/">
    <img src="https://img.shields.io/badge/Documentation-E53935?style=for-the-badge&logo=readthedocs&logoColor=white&scale=2" />
  </a>

  <a href="https://scorable.ai/demo-user">
    <img src="https://img.shields.io/badge/Temporary_API_Key-15a20b?style=for-the-badge&logo=keycdn&logoColor=white&scale=2" />
  </a>
</p>

The `scorable` CLI is a powerful command-line tool for interacting with the Scorable API. It provides a convenient way to manage and execute your Judges directly from the terminal.

## Installation

You can install the `scorable` CLI using the following command, which downloads and installs the script to `/usr/local/bin`:

```bash
curl -sSL https://scorable.ai/cli/install.sh | sh
```

Alternatively, you can install and run the CLI using `uvx`:

```bash
uvx scorable-cli judge list
```

## Authentication

Before using the CLI, you must set your Scorable API key as an environment variable:

```bash
# Sign up for a free account at https://scorable.ai/register
export SCORABLE_API_KEY="your-api-key"
```

### Temporary API keys

If no API key is set, the CLI can create a temporary key interactively and save it to `~/.scorable/settings.json` as `temporary_api_key`. Permanent keys should be set via the `SCORABLE_API_KEY` environment variable, which takes precedence.

## Usage

The CLI is organized into a main command, `scorable`, with subcommands for different functionalities. The primary resource you'll interact with is the `judge`.

### Judge Management

All Judge-related commands are available under the `scorable judge` subcommand.

#### `list`

List all available Judges, with options for filtering and pagination.

```bash
scorable judge list
```

**Options:**

*   `--page-size`: Number of results to return per page.
*   `--cursor`: The pagination cursor value.
*   `--search`: A search term to filter by.
*   `--name`: Filter by exact judge name.
*   `--ordering`: Which field to use for ordering the results.
*   `--is-preset / --not-is-preset`: Filter by preset status.
*   `--is-public / --not-is-public`: Filter by public status.
*   `--show-global / --not-show-global`: Filter by global status.

#### `get`

Retrieve a specific Judge by its ID.

```bash
scorable judge get <judge_id>
```

#### `create`

Create a new Judge.

```bash
scorable judge create --name "My New Judge" --intent "To evaluate the quality of LLM responses."
```

**Options:**

*   `--name`: The name for the new judge (required).
*   `--intent`: The intent for the new judge (required).
*   `--stage`: The stage for the new judge.
*   `--evaluator-references`: JSON string for evaluator references. E.g., `'[{"id": "eval-id"}]'`

#### `update`

Update an existing Judge.

```bash
scorable judge update <judge_id> --name "My Updated Judge Name"
```

**Options:**

*   `--name`: The new name for the judge.
*   `--stage`: The new stage for the judge.
*   `--evaluator-references`: JSON string to update evaluator references. Use `"[]"` to clear.

#### `delete`

Delete a Judge by its ID. You will be prompted for confirmation.

```bash
scorable judge delete <judge_id>
```

#### `duplicate`

Duplicate an existing Judge.

```bash
scorable judge duplicate <judge_id>
```

### Judge Execution

#### `execute`

Execute a Judge with specific inputs.

```bash
scorable judge execute <judge_id> --request "What is the capital of France?" --response "Paris"
```

**Options:**

*   `--request`: Request text.
*   `--response`: Response text to evaluate.
*   `--contexts`: JSON list of context strings. E.g., `'["ctx1"]'`
*   `--functions`: JSON array for the "functions" field.
*   `--expected-output`: Expected output text.
*   `--tag`: Add one or more tags.

**Using stdin input:**

You can pipe input directly to the `--response` parameter:

```bash
echo "Paris" | scorable judge execute <judge_id> --request "What is the capital of France?"
```

```bash
cat response.txt | scorable judge execute <judge_id>
```

#### `execute-by-name`

Execute a Judge by its name.

```bash
scorable judge execute-by-name "My New Judge" --request "What is the capital of France?" --response "Paris"
```

Input can also be piped in similar way as with `execute`.

### Prompt testing

Initialize a prompt testing experiment config and run it.

```bash
scorable prompt-test init
scorable prompt-test run
```

## Development

This project uses `uv` for dependency management. To set up the development environment, run:

```bash
. .venv/bin/activate
uv pip sync pyproject.toml
```
