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
10071007# Or use your preferred model variant 
10081008whisperkit-cli transcribe --model "large-v3" --model-prefix "distil" --audio-path /path/to/audio.mp3 --verbose` , 
10091009] ; 
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+ ] ; 
10101017//#endregion 
Original file line number Diff line number Diff line change @@ -700,6 +700,14 @@ export const MODEL_LIBRARIES_UI_ELEMENTS = {
700700		snippets : snippets . whisperkit , 
701701		countDownloads : `path_filename:"model" AND path_extension:"mil" AND _exists_:"path_prefix"` , 
702702	} , 
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+ 	} , 
703711}  satisfies  Record < string ,  LibraryUiElement > ; 
704712
705713export  type  ModelLibraryKey  =  keyof  typeof  MODEL_LIBRARIES_UI_ELEMENTS ; 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments