cassian-cli 0.3.9 → 0.3.10

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.
@@ -18,7 +18,7 @@ export async function status() {
18
18
  }
19
19
  else {
20
20
  for (const inst of instances) {
21
- const gpus = `${inst.gpu_count}x ${inst.gpu_devices ? `(GPU ${inst.gpu_devices})` : "GPU"}`;
21
+ const gpus = `${inst.gpu_count}x ${(inst.gpu_type || "GPU").toUpperCase()}`;
22
22
  const vols = inst.volumes.map((v) => `${v.name} → ${v.mount}`).join(", ") || "—";
23
23
  const age = timeSince(inst.created_at);
24
24
  console.log(` ${bold(inst.name)} ${green("● running")} ${dim(age)}`);
package/dist/types.d.ts CHANGED
@@ -65,6 +65,7 @@ export interface InstanceResponse {
65
65
  status: string;
66
66
  gpu_count: number;
67
67
  gpu_devices: string;
68
+ gpu_type?: string;
68
69
  image: string;
69
70
  ssh: SshInfo | null;
70
71
  sync: SyncInfo | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cassian-cli",
3
- "version": "0.3.9",
3
+ "version": "0.3.10",
4
4
  "description": "The Cassian GPU cloud CLI — provision GPUs, sync files, and run workloads from your terminal.",
5
5
  "type": "module",
6
6
  "bin": {