Creating a new dataset

To create a dataset, use:
sutro datasets create <dataset_id>

Uploading files to dataset via CLI

To upload a file to a dataset, use:
sutro datasets upload <dataset_id> <file_path>
If a dataset_id is not provided, a new dataset will be created. The file_path parameter can be a single file path or a directory path. If a directory path is provided, all files in the directory will be uploaded to the dataset.

Downloading files from dataset via CLI

To download a file from a dataset, use:
sutro datasets download <dataset_id> <file_name> <output_path>
If no file_name is provided, all files in the dataset will be downloaded. If no output_path is provided, the file will be saved to the current working directory.

Listing files in a dataset by dataset_id

To list files in a dataset by dataset_id, use:
sutro datasets files <dataset_id>

Listing user datasets

To list all datasets associated with your API key, use:
sutro datasets list

Other commands

To open the Sutro documentation in your browser, use:
sutro docs
To view commands, simply run:
sutro 
or
sutro --help