groove-dev 0.27.148 → 0.27.150
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 +7 -3
- 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 +7 -3
- 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
|
@@ -778,7 +778,9 @@ export class ProcessManager {
|
|
|
778
778
|
return true;
|
|
779
779
|
};
|
|
780
780
|
|
|
781
|
-
|
|
781
|
+
// Skip auth fallback for local provider when model references a lab runtime or GGUF
|
|
782
|
+
const hasLabModel = config.model && (config.model.startsWith('runtime:') || config.model.startsWith('gguf:'));
|
|
783
|
+
if (!isProviderAuthed(providerName) && !(providerName === 'local' && hasLabModel)) {
|
|
782
784
|
const priority = ['claude-code', 'gemini', 'codex', 'local', 'ollama'];
|
|
783
785
|
const fallback = priority.find(p => p !== providerName && isProviderAuthed(p));
|
|
784
786
|
if (fallback) {
|
|
@@ -790,7 +792,7 @@ export class ProcessManager {
|
|
|
790
792
|
if (!provider) {
|
|
791
793
|
throw new Error(`Unknown provider: ${providerName}`);
|
|
792
794
|
}
|
|
793
|
-
if (!provider.constructor.isInstalled()) {
|
|
795
|
+
if (!provider.constructor.isInstalled() && !(providerName === 'local' && hasLabModel)) {
|
|
794
796
|
const installed = getInstalledProviders();
|
|
795
797
|
if (installed.length > 0) {
|
|
796
798
|
throw new Error(
|
|
@@ -859,7 +861,9 @@ export class ProcessManager {
|
|
|
859
861
|
}
|
|
860
862
|
|
|
861
863
|
// Validate explicit model against provider's supported models
|
|
862
|
-
|
|
864
|
+
// Skip validation for runtime: and gguf: models — they're resolved by getLoopConfig()
|
|
865
|
+
const skipModelValidation = config.model && (config.model.startsWith('runtime:') || config.model.startsWith('gguf:'));
|
|
866
|
+
if (config.model && config.model !== 'auto' && provider.constructor.models && !skipModelValidation) {
|
|
863
867
|
const valid = provider.constructor.models.some(m => m.id === config.model);
|
|
864
868
|
if (!valid) {
|
|
865
869
|
const fallback = provider.constructor.models[0];
|