groove-dev 0.27.148 → 0.27.149
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/node_modules/@groove-dev/cli/package.json +1 -1
- package/node_modules/@groove-dev/daemon/package.json +1 -1
- package/node_modules/@groove-dev/daemon/src/process.js +3 -1
- package/node_modules/@groove-dev/gui/dist/assets/{index-BKbsE_hn.js → index-CReKPWhY.js} +24 -24
- package/node_modules/@groove-dev/gui/dist/index.html +1 -1
- package/node_modules/@groove-dev/gui/package.json +1 -1
- package/node_modules/@groove-dev/gui/src/components/lab/runtime-config.jsx +12 -4
- package/node_modules/@groove-dev/gui/src/components/layout/status-bar.jsx +30 -21
- package/node_modules/@groove-dev/gui/src/stores/slices/providers-slice.js +6 -1
- package/package.json +1 -1
- package/packages/cli/package.json +1 -1
- package/packages/daemon/package.json +1 -1
- package/packages/daemon/src/process.js +3 -1
- package/packages/gui/dist/assets/{index-BKbsE_hn.js → index-CReKPWhY.js} +24 -24
- package/packages/gui/dist/index.html +1 -1
- package/packages/gui/package.json +1 -1
- package/packages/gui/src/components/lab/runtime-config.jsx +12 -4
- package/packages/gui/src/components/layout/status-bar.jsx +30 -21
- package/packages/gui/src/stores/slices/providers-slice.js +6 -1
|
@@ -859,7 +859,9 @@ export class ProcessManager {
|
|
|
859
859
|
}
|
|
860
860
|
|
|
861
861
|
// Validate explicit model against provider's supported models
|
|
862
|
-
|
|
862
|
+
// Skip validation for runtime: and gguf: models — they're resolved by getLoopConfig()
|
|
863
|
+
const skipModelValidation = config.model && (config.model.startsWith('runtime:') || config.model.startsWith('gguf:'));
|
|
864
|
+
if (config.model && config.model !== 'auto' && provider.constructor.models && !skipModelValidation) {
|
|
863
865
|
const valid = provider.constructor.models.some(m => m.id === config.model);
|
|
864
866
|
if (!valid) {
|
|
865
867
|
const fallback = provider.constructor.models[0];
|