@norskvideo/ctl-commands 0.1.11 → 0.1.13
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/commands.d.ts +1 -6
- package/commands.js +0 -3
- package/package.json +1 -1
package/commands.d.ts
CHANGED
|
@@ -83,7 +83,7 @@ export interface SideloadFetchOpts {
|
|
|
83
83
|
/** Media image ref; needs nothing pulled, so a builder can seed for another host. */
|
|
84
84
|
image?: string;
|
|
85
85
|
/** Exactly which bundles to fetch, overriding the selector's default. */
|
|
86
|
-
bundle?: ("gpu-video" | "gpu-inference")[];
|
|
86
|
+
bundle?: ("gpu-video" | "gpu-inference" | "models" | "models-reasoning" | "llm-venv")[];
|
|
87
87
|
/** Fetch locally into this directory instead of through the daemon. */
|
|
88
88
|
cacheDir?: string;
|
|
89
89
|
}
|
|
@@ -230,11 +230,6 @@ export declare const commands: {
|
|
|
230
230
|
readonly opts: ProductPullOpts;
|
|
231
231
|
}>;
|
|
232
232
|
};
|
|
233
|
-
readonly shm: {
|
|
234
|
-
readonly list: LeafCmd<() => {
|
|
235
|
-
readonly kind: "shm.list";
|
|
236
|
-
}>;
|
|
237
|
-
};
|
|
238
233
|
readonly sideload: {
|
|
239
234
|
readonly status: LeafCmd<() => {
|
|
240
235
|
readonly kind: "sideload.status";
|
package/commands.js
CHANGED
|
@@ -71,9 +71,6 @@ export const commands = {
|
|
|
71
71
|
reload: leaf("product.reload", (name) => ({ kind: "product.reload", name }), "name"),
|
|
72
72
|
pull: leaf("product.pull", (name, opts = {}) => ({ kind: "product.pull", name, opts }), "name"),
|
|
73
73
|
},
|
|
74
|
-
shm: {
|
|
75
|
-
list: leaf("shm.list", () => ({ kind: "shm.list" })),
|
|
76
|
-
},
|
|
77
74
|
sideload: {
|
|
78
75
|
status: leaf("sideload.status", () => ({ kind: "sideload.status" })),
|
|
79
76
|
fetch: leaf("sideload.fetch", (opts = {}) => ({ kind: "sideload.fetch", opts })),
|