@inference/cli 0.0.9-beta.19 → 0.0.10-beta.21
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.
- package/README.md +4 -4
- 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
|
|
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
|
-
###
|
|
77
|
+
### Instrument (Automated Observability Setup)
|
|
78
78
|
|
|
79
79
|
```bash
|
|
80
|
-
inf
|
|
81
|
-
inf
|
|
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.
|
|
3
|
+
"version": "0.0.10-beta.21",
|
|
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
|
-
"@inference/cli-darwin-x64": "0.0.
|
|
31
|
-
"@inference/cli-linux-x64": "0.0.
|
|
32
|
-
"@inference/cli-linux-arm64": "0.0.
|
|
29
|
+
"@inference/cli-darwin-arm64": "0.0.10-beta.21",
|
|
30
|
+
"@inference/cli-darwin-x64": "0.0.10-beta.21",
|
|
31
|
+
"@inference/cli-linux-x64": "0.0.10-beta.21",
|
|
32
|
+
"@inference/cli-linux-arm64": "0.0.10-beta.21"
|
|
33
33
|
},
|
|
34
34
|
"scripts": {
|
|
35
35
|
"build": "bun run clean:bin && bun run build:cli",
|