@inference/cli 0.0.6 → 0.0.7

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 +1 -1
  2. package/package.json +8 -6
package/README.md CHANGED
@@ -104,7 +104,7 @@ inf training poll <id> # Poll status until complete
104
104
  ```bash
105
105
  inf eval list # List eval run groups
106
106
  inf eval get <id> # Get eval run group details
107
- inf eval definitions # List eval definitions
107
+ inf eval rubrics # List rubrics
108
108
  inf eval datasets # List eval datasets
109
109
  ```
110
110
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inference/cli",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
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.6",
30
- "@inference/cli-darwin-x64": "0.0.6",
31
- "@inference/cli-linux-x64": "0.0.6",
32
- "@inference/cli-linux-arm64": "0.0.6"
29
+ "@inference/cli-darwin-arm64": "0.0.7",
30
+ "@inference/cli-darwin-x64": "0.0.7",
31
+ "@inference/cli-linux-x64": "0.0.7",
32
+ "@inference/cli-linux-arm64": "0.0.7"
33
33
  },
34
34
  "scripts": {
35
35
  "build": "bun run clean:bin && bun run build:cli",
@@ -47,7 +47,9 @@
47
47
  "format:fix": "prettier --write .",
48
48
  "lint": "eslint",
49
49
  "lint:fix": "eslint --fix",
50
- "tsc": "tsc"
50
+ "tsc": "tsc",
51
+ "test": "bun run test:unit",
52
+ "test:unit": "bun test ./tests/unit"
51
53
  },
52
54
  "devDependencies": {
53
55
  "@inference-net/cf-compatible-models": "workspace:*",