Skip to main content
Projects organize your training runs, evaluations, datasets, and inferences. Most CLI commands operate within the context of an active project.

List Projects

Display all projects you have access to.
inf project list
Alias: inf project ls The output shows a table with the active project indicator, project ID, name, and creation date.
  Active  ID                  Name            Created
  ➤       proj_abc123def456   My Project      2025-01-15
          proj_789ghi012jkl   Staging         2025-02-01

Switch Projects

Set a different project as the active project.
inf project switch <project-id>
Alias: inf project use <project-id>

Arguments

ArgumentRequiredDescription
project-idYesThe ID of the project to activate
# Switch to the staging project
inf project switch proj_789ghi012jkl
The CLI validates that the project exists before saving it as active.

Current Project

Show details about the currently active project.
inf project current
Displays the project ID, name, team ID, and creation date.
You can temporarily override the active project for any command using the --project flag without changing your stored configuration:
inf training list --project proj_789ghi012jkl