@ornncompute/cli 0.2.4 → 0.2.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ornncompute/cli",
3
- "version": "0.2.4",
3
+ "version": "0.2.5",
4
4
  "description": "Command-line interface for Ornn compute access workflows.",
5
5
  "type": "module",
6
6
  "bin": {
package/src/cli.mjs CHANGED
@@ -68,6 +68,9 @@ function resolveBuyNowUsdPerGpuHour(record) {
68
68
  if (normalized.includes("h100")) {
69
69
  return 2.29;
70
70
  }
71
+ if (normalized.includes("mi355") || normalized.includes("mi325") || normalized.includes("mi300")) {
72
+ return 2.5;
73
+ }
71
74
  if (normalized.includes("a100")) {
72
75
  return 1.89;
73
76
  }
@@ -179,7 +179,7 @@ export const nodeExecCapability = defineCapability({
179
179
  id: "node.exec",
180
180
  domain: "fleet",
181
181
  roles: ["admin"],
182
- description: "Admin-only. Run one unrestricted command on an enrolled node over orchestrator SSH with the stored admin key. Always pass timeout_seconds. Not an interactive shell. CLI asks y/N. Slack waits for a human confirm. MCP requires confirm: true.",
182
+ description: "Admin-only. Run one unrestricted command on an enrolled node over orchestrator SSH with the stored admin key. Always pass timeout_seconds. Not an interactive shell. On NVIDIA hosts use nvidia-smi; on AMD Instinct use amd-smi. CLI asks y/N. Slack waits for a human confirm. MCP requires confirm: true.",
183
183
  mutation: "preview-confirm",
184
184
  http: { method: "POST", path: "/internal/remote" },
185
185
  slack: {