Remyx CLI

The Remyx CLI makes it easy to incorporate the Remyx tools wherever you develop. You can find all the commands available in the official repo. Here we'll cover how to install it and get started.

Installation

To install the Remyx AI CLI, run:

pip install remyxai

Authentication

Remyx AI API requires authentication token, which can be obtained on this page: https://engine.remyx.ai/account

Provide api key to the CLI through an environment variable REMYXAI_API_KEY.

export REMYXAI_API_KEY=<your-key-here>

Usage

The CLI supports most of the workflows available in the Remyx Studio UI. Here's an example on how to list all of your previously trained models.

# List all of your trained models
remyxai model list

You can find all the command options in the CLI repo.

Was this page helpful?