realtime checkpoint delete¶
Delete a checkpoint.
Synopsis¶
Description¶
Deletes a streaming validation checkpoint. By default, prompts for confirmation before deleting.
Arguments¶
| Argument | Type | Required | Description |
|---|---|---|---|
CHECKPOINT_ID |
TEXT | Yes | Checkpoint ID to delete |
Options¶
| Option | Type | Default | Description |
|---|---|---|---|
--dir, -d |
PATH | ./checkpoints |
Checkpoint directory |
--force, -f |
FLAG | false |
Skip confirmation prompt |
Examples¶
Delete with confirmation¶
$ truthound realtime checkpoint delete abc12345
Delete checkpoint 'abc12345'? [y/N]: y
Checkpoint 'abc12345' deleted.
Delete without confirmation¶
Delete from custom directory¶
Warning¶
Irreversible Operation
Deleting a checkpoint is irreversible. Once deleted, you cannot resume validation from that checkpoint. Use the --force flag with caution.
Error Handling¶
If the checkpoint is not found:
If the checkpoint directory doesn't exist:
$ truthound realtime checkpoint delete abc12345 --dir ./missing
Error: Checkpoint directory not found: ./missing
Related Commands¶
realtime checkpoint list- List all checkpointsrealtime checkpoint show- Show checkpoint details