Skip to content

Commit d63b7cb

Browse files
committed
fix: rely only on gguf tag
1 parent 2bb1bc1 commit d63b7cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/tasks/src/local-apps.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export type LocalApp = {
5959
);
6060

6161
function isGgufModel(model: ModelData): boolean {
62-
return model.config?.quantization_config?.quant_method === "gguf" || model.tags.includes("gguf");
62+
return model.tags.includes("gguf");
6363
}
6464

6565
function isAwqModel(model: ModelData): boolean {

0 commit comments

Comments
 (0)