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 @@ -103,6 +103,23 @@ export const LOCAL_APPS = {
103
103
displayOnModelPage : isGgufModel ,
104
104
deeplink : ( model ) => new URL ( `https://backyard.ai/hf/model/${ model . id } ` ) ,
105
105
} ,
106
+ jellybox : {
107
+ prettyLabel : "Jellybox" ,
108
+ docsUrl : "https://jellybox.com" ,
109
+ mainTask : "text-generation" ,
110
+ displayOnModelPage : ( model ) =>
111
+ isGgufModel ( model ) ||
112
+ model . library_name === "diffusers" && model . tags . includes ( "safetensors" ) && ( model . pipeline_tag === "text-to-image" || model . tags . includes ( "lora" ) ) ,
113
+ deeplink : ( model ) => {
114
+ if ( isGgufModel ( model ) ) {
115
+ return new URL ( `jellybox://llm/models/huggingface/LLM/${ model . id } ` ) ;
116
+ } else if ( model . tags . includes ( "lora" ) ) {
117
+ return new URL ( `jellybox://image/models/huggingface/ImageLora/${ model . id } ` ) ;
118
+ } else {
119
+ return new URL ( `jellybox://image/models/huggingface/Image/${ model . id } ` ) ;
120
+ }
121
+ } ,
122
+ } ,
106
123
drawthings : {
107
124
prettyLabel : "Draw Things" ,
108
125
docsUrl : "https://drawthings.ai" ,
You can’t perform that action at this time.
0 commit comments