@inference/cli 0.0.23-beta.526 → 0.0.24-beta.527
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 +3 -3
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -43,7 +43,7 @@ inf auth login
|
|
|
43
43
|
inf project list
|
|
44
44
|
|
|
45
45
|
# Select a project
|
|
46
|
-
inf project switch
|
|
46
|
+
inf project switch
|
|
47
47
|
|
|
48
48
|
# Instrument a codebase with observability (run from your project directory)
|
|
49
49
|
inf instrument
|
|
@@ -71,7 +71,7 @@ inf auth set-key <key> # Set an API key for CI/headless use
|
|
|
71
71
|
|
|
72
72
|
```bash
|
|
73
73
|
inf project list # List all projects
|
|
74
|
-
inf project switch
|
|
74
|
+
inf project switch [id] # Set the active project, or choose one interactively
|
|
75
75
|
inf project current # Show the currently active project
|
|
76
76
|
```
|
|
77
77
|
|
|
@@ -82,7 +82,7 @@ A **team** is 1:1 with an organization on Inference.net. Commands that talk to t
|
|
|
82
82
|
```bash
|
|
83
83
|
inf team list # List teams you belong to (marks the active one)
|
|
84
84
|
inf team current # Show the currently active team
|
|
85
|
-
inf team switch
|
|
85
|
+
inf team switch [id-or-slug] # Set the active team, or choose one interactively
|
|
86
86
|
inf team create <name> # Create a team (and default project); both become active
|
|
87
87
|
inf team invite <email> # Invite a member to the active team
|
|
88
88
|
inf team invite <email> --role admin # Invite as admin (default role: member)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inference/cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.24-beta.527",
|
|
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.24-beta.527",
|
|
30
|
+
"@inference/cli-darwin-x64": "0.0.24-beta.527",
|
|
31
|
+
"@inference/cli-linux-x64": "0.0.24-beta.527",
|
|
32
|
+
"@inference/cli-linux-arm64": "0.0.24-beta.527"
|
|
33
33
|
},
|
|
34
34
|
"scripts": {
|
|
35
35
|
"build": "bun run clean:bin && bun run build:cli",
|