@inference/cli 0.0.9-beta.19 → 0.0.9-beta.20

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 +4 -4
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -46,7 +46,7 @@ inf project list
46
46
  inf project switch <project-id>
47
47
 
48
48
  # Instrument a codebase with observability (run from your project directory)
49
- inf install
49
+ inf instrument
50
50
 
51
51
  # View recent training runs
52
52
  inf training list
@@ -74,11 +74,11 @@ inf project switch <id> # Set the active project
74
74
  inf project current # Show the currently active project
75
75
  ```
76
76
 
77
- ### Install (Automated Observability Setup)
77
+ ### Instrument (Automated Observability Setup)
78
78
 
79
79
  ```bash
80
- inf install # Instrument your codebase with Catalyst observability
81
- inf install --dry-run # Preview changes without modifying files
80
+ inf instrument # Instrument your codebase with Catalyst observability
81
+ inf instrument --dry-run # Preview changes without modifying files
82
82
  ```
83
83
 
84
84
  Automatically instruments your codebase to route LLM API calls through the Inference.net observability proxy. The command:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inference/cli",
3
- "version": "0.0.9-beta.19",
3
+ "version": "0.0.9-beta.20",
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.9-beta.19",
30
- "@inference/cli-darwin-x64": "0.0.9-beta.19",
31
- "@inference/cli-linux-x64": "0.0.9-beta.19",
32
- "@inference/cli-linux-arm64": "0.0.9-beta.19"
29
+ "@inference/cli-darwin-arm64": "0.0.9-beta.20",
30
+ "@inference/cli-darwin-x64": "0.0.9-beta.20",
31
+ "@inference/cli-linux-x64": "0.0.9-beta.20",
32
+ "@inference/cli-linux-arm64": "0.0.9-beta.20"
33
33
  },
34
34
  "scripts": {
35
35
  "build": "bun run clean:bin && bun run build:cli",