@openpalm/lib 0.11.0-beta.13 → 0.11.0-beta.14
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
|
@@ -432,7 +432,8 @@ function voiceImageRef(variant: 'cpu' | 'cu121' | 'rocm6'): string {
|
|
|
432
432
|
const namespace = process.env.OP_IMAGE_NAMESPACE?.trim() || 'openpalm';
|
|
433
433
|
const explicit = process.env.OP_VOICE_IMAGE_TAG?.trim();
|
|
434
434
|
if (explicit) return `${namespace}/voice:${explicit}`;
|
|
435
|
-
|
|
435
|
+
const baseTag = process.env.OP_IMAGE_TAG?.trim() || 'latest';
|
|
436
|
+
return `${namespace}/voice:${baseTag}-${variant}`;
|
|
436
437
|
}
|
|
437
438
|
|
|
438
439
|
/**
|