Merge pull request #753 from dustinwloring1988/fix/lm-studio-fetch-warning

fix: warn Constants Failed
This commit is contained in:
Anirban Kar 2024-12-16 02:12:13 +05:30 committed by GitHub
commit d75899d737
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -499,8 +499,6 @@ async function getLMStudioModels(_apiKeys?: Record<string, string>, settings?: I
}));
} catch (e: any) {
logStore.logError('Failed to get LMStudio models', e, { baseUrl: settings?.baseUrl });
logger.warn('Failed to get LMStudio models: ', e.message || '');
return [];
}
}