Documentation Index
Fetch the complete documentation index at: https://docs.tensorpool.dev/llms.txt
Use this file to discover all available pages before exploring further.
View and manage your TensorPool account with the tp me command and its subcommands.
tp me
View your account information and usage.
This command displays:
- Account details
- Current usage statistics
- Billing information
- Organization membership (if applicable)
tp me sshkey
Manage the SSH keys associated with your account. Keys saved here are automatically available when creating clusters, so you don’t need to pass -i each time.
tp me sshkey add
Add an SSH public key to your account.
tp me sshkey add <key_path> [--name NAME]
| Argument | Description |
|---|
key_path | Path to your SSH public key file |
--name NAME | Optional name for the key (to help you identify it later) |
Examples
Add a key:
tp me sshkey add ~/.ssh/id_ed25519.pub
Add a key with a name:
tp me sshkey add ~/.ssh/id_ed25519.pub --name "work laptop"
tp me sshkey list
List the SSH keys on your account. Alias: tp me sshkey ls.
tp me sshkey list [--org]
| Option | Description |
|---|
--org, --organization | List all SSH keys in your organization |
Examples
List your keys:
List all keys in your organization:
tp me sshkey remove
Remove an SSH key from your account. Alias: tp me sshkey rm.
tp me sshkey remove <key_id>
| Argument | Description |
|---|
key_id | The ID of the SSH key to remove (find this with tp me sshkey list) |
Example
tp me sshkey remove k-abc123
tp me preferences
View your account preferences.
Next Steps