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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@groove-dev/cli",
3
- "version": "0.27.148",
3
+ "version": "0.27.149",
4
4
  "description": "GROOVE CLI — manage AI coding agents from your terminal",
5
5
  "license": "FSL-1.1-Apache-2.0",
6
6
  "type": "module",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@groove-dev/daemon",
3
- "version": "0.27.148",
3
+ "version": "0.27.149",
4
4
  "description": "GROOVE daemon — agent orchestration engine",
5
5
  "license": "FSL-1.1-Apache-2.0",
6
6
  "type": "module",
@@ -859,7 +859,9 @@ export class ProcessManager {
859
859
  }
860
860
 
861
861
  // Validate explicit model against provider's supported models
862
- if (config.model && config.model !== 'auto' && provider.constructor.models) {
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];