File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
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" ) ;
You can’t perform that action at this time.
0 commit comments