@inference/cli 0.0.30 → 0.0.31-beta.537

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +8 -0
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -57,6 +57,14 @@ inf dashboard
57
57
 
58
58
  ## Commands
59
59
 
60
+ > **REST-backed subcommands.** Several resource groups below (e.g. `project`,
61
+ > `api-key`, `dataset`, `deployment`, `eval`, `models`, `signal`, `team`) carry
62
+ > additional subcommands generated from the platform's REST API, alongside the
63
+ > hand-written ones documented here. Run `inf <group> --help` to see the full,
64
+ > current list for a group — a hand-written command always takes precedence over
65
+ > a generated one of the same name. The same operations are available as a REST
66
+ > API (`/api/rest`, with Swagger docs at `/api/rest/docs`) and as MCP tools.
67
+
60
68
  ### Authentication
61
69
 
62
70
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inference/cli",
3
- "version": "0.0.30",
3
+ "version": "0.0.31-beta.537",
4
4
  "description": "Inference.net CLI - manage training runs, evals, datasets, and inferences from your terminal",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -26,10 +26,10 @@
26
26
  "ai"
27
27
  ],
28
28
  "optionalDependencies": {
29
- "@inference/cli-darwin-arm64": "0.0.30",
30
- "@inference/cli-darwin-x64": "0.0.30",
31
- "@inference/cli-linux-x64": "0.0.30",
32
- "@inference/cli-linux-arm64": "0.0.30"
29
+ "@inference/cli-darwin-arm64": "0.0.31-beta.537",
30
+ "@inference/cli-darwin-x64": "0.0.31-beta.537",
31
+ "@inference/cli-linux-x64": "0.0.31-beta.537",
32
+ "@inference/cli-linux-arm64": "0.0.31-beta.537"
33
33
  },
34
34
  "scripts": {
35
35
  "build": "bun run clean:bin && bun run build:cli",