Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.topk.io/llms.txt

Use this file to discover all available pages before exploring further.

A dataset is a named container for your documents. You must create a dataset before uploading files into it.

Create a dataset

When creating a dataset, you must specify a region — this determines where your data is physically stored. Once set, a dataset’s region cannot be changed. See available regions.
topk dataset create my-dataset --region aws-us-east-1-elastica

List datasets

topk dataset list

Get a dataset

topk dataset get my-docs

Update a dataset

Update dataset description:
topk dataset update my-docs --description "Annual financial filings"

Delete a dataset

Deleting a dataset is irreversible.All documents stored in the dataset will be permanently removed.
topk dataset delete --dataset my-docs
The CLI will prompt for confirmation. Use -y to skip:
topk dataset delete --dataset my-docs -y