User Management

📘

Each interaction with AI GO! is associated with a user, which enables collaboration and traceability when doing technical evaluations of AI agents.

Usage

The user CLI exposes commands that allow admins to manage users.

  1. Create a user. This command prints the password of the newly created user to the terminal.
lf user add --email "[email protected]" --name "John Doe" --roles "admin,member"
  1. List all users.
lf user list
  1. Disable a user.
lf user disable --email "[email protected]"
  1. Enable a user.
lf user enable --email "[email protected]"
  1. Reset a user password.
lf user reset-password --email "[email protected]"