File tree Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -1007,4 +1007,11 @@ whisperkit-cli transcribe --audio-path /path/to/audio.mp3
1007
1007
# Or use your preferred model variant
1008
1008
whisperkit-cli transcribe --model "large-v3" --model-prefix "distil" --audio-path /path/to/audio.mp3 --verbose` ,
1009
1009
] ;
1010
+
1011
+ export const threedtopia_xl = ( model : ModelData ) : string [ ] => [
1012
+ `from threedtopia_xl.models import threedtopia_xl
1013
+
1014
+ model = threedtopia_xl.from_pretrained("${ model . id } ")
1015
+ model.generate(cond="path/to/image.png")` ,
1016
+ ] ;
1010
1017
//#endregion
Original file line number Diff line number Diff line change @@ -700,6 +700,14 @@ export const MODEL_LIBRARIES_UI_ELEMENTS = {
700
700
snippets : snippets . whisperkit ,
701
701
countDownloads : `path_filename:"model" AND path_extension:"mil" AND _exists_:"path_prefix"` ,
702
702
} ,
703
+ "3dtopia-xl" : {
704
+ prettyLabel : "3DTopia-XL" ,
705
+ repoName : "3DTopia-XL" ,
706
+ repoUrl : "https://github.com/3DTopia/3DTopia-XL" ,
707
+ filter : false ,
708
+ countDownloads : `path:"model_vae_fp16.pt"` ,
709
+ snippets : snippets . threedtopia_xl ,
710
+ } ,
703
711
} satisfies Record < string , LibraryUiElement > ;
704
712
705
713
export type ModelLibraryKey = keyof typeof MODEL_LIBRARIES_UI_ELEMENTS ;
You can’t perform that action at this time.
0 commit comments