Requirements
- Python 3 and
pip - A Remyx API key (get it here)
- For deploy: Docker, Docker Compose, and (for GPU) the NVIDIA Container Toolkit, as described in the repo
Installation
PATH:
Authentication
Remyx authenticates API calls with a bearer token. Export it before running commands that hit the API:https://engine.remyx.ai/api/v1.0. Do not commit keys; use your shell profile, .env (with a loader), or your CI secret store.
Command overview
| Area | CLI entry points |
|---|---|
| Models | list_models, summarize_model |
| Evaluations | evaluate_myxboard |
| Deploy | deploy_model |
| Datasets | dataset |
| Search | search (subcommands below) |
remyxai <command> --help for options. Full detail: CLI repo.
Models
List models
Summarize a model
Delete or download a model (Python)
The CLI may not expose every model operation; use the API modules when needed:MyxBoard evaluations
Compare models on tasks such asmyxmatch or benchmark (see EvaluationTask in the repo).
Deploy (local Docker)
Brings up or tears down a deployment using Docker Compose (after downloading the deployment package from Remyx).Datasets
List (CLI)
Delete or download (Python)
The HTTP API expects a dataset type and dataset name:dataset delete / dataset download to the same signatures, use those; otherwise use the Python calls above. Check the repo for the latest dataset CLI behavior.
Search (papers & Docker assets)
from remyxai.client.search import SearchClient.
Inference (local Triton)
After a model is served (for example onlocalhost:8000), run inference via remyxai.api.inference.run_inference or RemyxAPI.run_inference — see the repo for parameters and tensor names.
Troubleshooting
REMYXAI_API_KEYmissing or invalid — Export the key in the same shell session you use forremyxai.- Deploy fails — Confirm Docker/Compose and GPU runtime requirements from the repo.
- Import errors in Python — Prefer explicit imports (
remyxai.api.models,remyxai.api.tasks, …) iffrom remyxai.api import …is not available in your version.
Next steps
- Browse commands and examples in the Remyx CLI repository.
- Keep your API key scoped to the environment where you develop and deploy.