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.
- package/node_modules/@groove-dev/daemon/src/providers/ollama.js +1 -1
- package/node_modules/@groove-dev/gui/dist/assets/{index-BgKM8VOT.js → index-CXBK_GNM.js} +24 -24
- package/node_modules/@groove-dev/gui/dist/index.html +1 -1
- package/node_modules/@groove-dev/gui/src/views/settings.jsx +26 -30
- package/package.json +1 -1
- package/packages/daemon/src/providers/ollama.js +1 -1
- package/packages/gui/dist/assets/{index-BgKM8VOT.js → index-CXBK_GNM.js} +24 -24
- package/packages/gui/dist/index.html +1 -1
- package/packages/gui/src/views/settings.jsx +26 -30
|
@@ -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+/);
|