groove-dev 0.27.149 → 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 +4 -2
- package/node_modules/@groove-dev/gui/package.json +1 -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 +4 -2
- package/packages/gui/package.json +1 -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(
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "groove-dev",
|
|
3
|
-
"version": "0.27.
|
|
3
|
+
"version": "0.27.150",
|
|
4
4
|
"description": "Open-source agent orchestration layer — the AI company OS. Local model agent engine (GGUF/Ollama/llama-server), HuggingFace model browser, MCP integrations (Slack, Gmail, Stripe, 15+), agent scheduling (cron), business roles (CMO, CFO, EA). GUI dashboard, multi-agent coordination, zero cold-start, infinite sessions. Works with Claude Code, Codex, Gemini CLI, Ollama, any local model.",
|
|
5
5
|
"license": "FSL-1.1-Apache-2.0",
|
|
6
6
|
"author": "Groove Dev <hello@groovedev.ai> (https://groovedev.ai)",
|
|
@@ -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(
|