File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -43,20 +43,20 @@ export type LocalApp = {
4343 */
4444 displayOnModelPage : ( model : ModelData ) => boolean ;
4545} & (
46- | {
46+ | {
4747 /**
4848 * If the app supports deeplink, URL to open.
4949 */
5050 deeplink : ( model : ModelData , filepath ?: string ) => URL ;
51- }
52- | {
51+ }
52+ | {
5353 /**
5454 * And if not (mostly llama.cpp), snippet to copy/paste in your terminal
5555 * Support the placeholder {{GGUF_FILE}} that will be replaced by the gguf file path or the list of available files.
5656 */
5757 snippet : ( model : ModelData , filepath ?: string ) => string | string [ ] | LocalAppSnippet | LocalAppSnippet [ ] ;
58- }
59- ) ;
58+ }
59+ ) ;
6060
6161function isGgufModel ( model : ModelData ) : boolean {
6262 return model . tags . includes ( "gguf" ) ;
@@ -215,7 +215,7 @@ export const LOCAL_APPS = {
215215 isGptqModel ( model ) ||
216216 isAqlmModel ( model ) ||
217217 isMarlinModel ( model ) ||
218- isGgufModel ( model ) ||
218+ isLlamaCppGgufModel ( model ) ||
219219 isTransformersModel ( model ) ,
220220 snippet : snippetVllm ,
221221 } ,
You can’t perform that action at this time.
0 commit comments