Model being used
@@ -170,34 +195,46 @@ export function SelectProviderAndModel() {
}
const allModels = configuredProviders?.[providerId]?.models ?? [];
- const models = allModels.filter((model) => {
- if (model.id === "cloud") {
- return true;
- }
- if (model.id.startsWith("Quantized")) {
- return model.isDownloaded;
- }
- return true;
- });
+
+ const modelsToShow =
+ providerId === "hyprnote"
+ ? allModels
+ : allModels.filter((model) => {
+ if (model.id === "cloud") {
+ return true;
+ }
+ return model.isDownloaded;
+ });
return (