Check out the newest way to compare different models for a task/agent harness: AutoEvals

Command Reference

Projects

List, switch, and inspect your Inference.net projects.

Projects organize your training runs, evaluations, datasets, and inferences. Most CLI commands operate on the active project, which is stored in ~/.inf/config.json and settable per-invocation with the global --project <id> flag.

inf project list

Display every project you have access to in the active team. Switch teams first with inf team switch <id-or-slug> (see Teams) to see a different team's projects. The active project is flagged with a green dot ().

inf project list

Alias: inf project ls

Example

inf project list

inf project switch

Set a different project as the active project. The CLI validates that the project exists and that you have access before saving.

To switch to a project in a different team, activate that team first with inf team switch <id-or-slug> (see Teams), or pass the global --team <id> flag on the same command so the CLI can find the project. On success, the CLI also stores that project's team as your new active team, so you do not need a separate team switch afterward.

inf project switch [project-id]

Alias: inf project use

Arguments

ArgumentRequiredDescription
project-idNoThe ID of the project to activate

Examples

# Choose a project from an interactive list
inf project switch

# Switch to the staging project
inf project switch proj_789ghi012jkl

# Same, using the `use` alias
inf project use proj_789ghi012jkl

# Switch to a project in a different team, in one command
inf project switch proj_456def789ghi --team team_abc123

In a non-interactive shell or with --json, pass a project ID. The CLI cannot show an interactive selector in these modes.

Temporarily override the active project for a single command without changing your stored config using the global --project flag:

inf training list --project proj_789ghi012jkl

inf project current

Show details about the currently active project — project ID, name, team ID, and creation date. If no project is active, the command errors and points you at inf project switch <id>.

inf project current

On this page