Refactor provider health status and update build configurations

- Updated the `ProviderSettings` component to log the current active provider.
- Changed the provider health status to use specific names for MLX and PyTorch backends.
- Removed unnecessary exclusions from the build scripts for both PyTorch CPU and CUDA providers.
- Ensured consistency in the `.spec` files for PyTorch providers by aligning exclusion lists.
This commit is contained in:
Jamie Pine
2026-02-01 02:29:40 -08:00
parent 580179eba3
commit 595747c3d0
7 changed files with 11 additions and 9 deletions
@@ -172,7 +172,8 @@ export function ProviderSettings() {
const installedProviders = providersData?.installed || [];
// Determine current active provider
const currentProvider = activeProvider?.provider || 'auto';
const currentProvider = activeProvider?.provider;
console.log('currentProvider', currentProvider);
const selectedProvider = currentProvider as ProviderType;
return (