@openpalm/lib 0.11.0-beta.13 → 0.11.0-beta.15

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": "@openpalm/lib",
3
- "version": "0.11.0-beta.13",
3
+ "version": "0.11.0-beta.15",
4
4
  "license": "MPL-2.0",
5
5
  "type": "module",
6
6
  "description": "Shared control-plane library for OpenPalm — lifecycle, staging, secrets, channels, connections, scheduler",
@@ -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
- return `${namespace}/voice:latest-${variant}`;
435
+ const baseTag = process.env.OP_IMAGE_TAG?.trim() || 'latest';
436
+ return `${namespace}/voice:${baseTag}-${variant}`;
436
437
  }
437
438
 
438
439
  /**