AudioLasso Docs

CLI

AudioLasso CLI status and local development commands.

The AudioLasso CLI exists in this repository, but the npm package is not published yet.

Status

Coming soon: public npm install and npx audiolasso.

Until the package is published, these commands will fail:

npx audiolasso login
npm install audiolasso

Local development

From the AudioLasso repo, you can run the local CLI build:

pnpm audiolasso --help
pnpm audiolasso login

Production API usage today

Use an API key directly:

export AUDIOLASSO_API_KEY="al_..."

Then call the HTTP API:

curl https://audiolasso.dev/v1/models \
  -H "Authorization: Bearer $AUDIOLASSO_API_KEY"

Publish checklist

Before publishing the CLI:

  • Confirm package name ownership on npm.
  • Build and pack packages/audiolasso.
  • Smoke test npm pack from a clean project.
  • Publish audiolasso.
  • Replace this page with public install commands.

On this page