File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -110,6 +110,23 @@ export const LOCAL_APPS = {
110
110
displayOnModelPage : isGgufModel ,
111
111
deeplink : ( model ) => new URL ( `sanctum://open_from_hf?model=${ model . id } ` ) ,
112
112
} ,
113
+ jellybox : {
114
+ prettyLabel : "Jellybox" ,
115
+ docsUrl : "https://jellybox.com" ,
116
+ mainTask : "text-generation" ,
117
+ displayOnModelPage : ( model ) =>
118
+ isGgufModel ( model ) ||
119
+ model . library_name === "diffusers" && model . tags . includes ( "safetensors" ) && ( model . pipeline_tag === "text-to-image" || model . tags . includes ( "lora" ) ) ,
120
+ deeplink : ( model ) => {
121
+ if ( isGgufModel ( model ) ) {
122
+ return new URL ( `jellybox://llm/models/huggingface/LLM/${ model . id } ` ) ;
123
+ } else if ( model . tags . includes ( "lora" ) ) {
124
+ return new URL ( `jellybox://image/models/huggingface/ImageLora/${ model . id } ` ) ;
125
+ } else {
126
+ return new URL ( `jellybox://image/models/huggingface/Image/${ model . id } ` ) ;
127
+ }
128
+ } ,
129
+ } ,
113
130
drawthings : {
114
131
prettyLabel : "Draw Things" ,
115
132
docsUrl : "https://drawthings.ai" ,
You can’t perform that action at this time.
0 commit comments