groove-dev 0.26.3 → 0.26.4

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.
@@ -184,7 +184,7 @@ export class OllamaProvider extends Provider {
184
184
 
185
185
  static getInstalledModels() {
186
186
  try {
187
- const output = execSync('ollama list', { encoding: 'utf8', timeout: 10000 });
187
+ const output = execSync('ollama list', { encoding: 'utf8', timeout: 10000, stdio: ['pipe', 'pipe', 'pipe'] });
188
188
  const lines = output.split('\n').slice(1).filter(Boolean);
189
189
  return lines.map((line) => {
190
190
  const parts = line.split(/\s+/);