BladeSzaSza commited on
Commit
b82b288
Β·
1 Parent(s): f5b9919

feat(debug): Add directory listing for downloaded model

Browse files
Files changed (1) hide show
  1. models/model_3d_generator.py +4 -0
models/model_3d_generator.py CHANGED
@@ -85,6 +85,10 @@ class Hunyuan3DGenerator:
85
  )
86
  logger.info(f"βœ… Model repository downloaded to: {self.model_path}")
87
 
 
 
 
 
88
  # --- Installation and Compilation ---
89
  logger.info("πŸ”§ Running Hunyuan3D setup scripts with detailed logging...")
90
  import subprocess
 
85
  )
86
  logger.info(f"βœ… Model repository downloaded to: {self.model_path}")
87
 
88
+ # List the contents of the downloaded directory for debugging
89
+ logger.info(f"πŸ” Listing contents of {self.model_path}...")
90
+ run_setup_command(['ls', '-R'], cwd=self.model_path)
91
+
92
  # --- Installation and Compilation ---
93
  logger.info("πŸ”§ Running Hunyuan3D setup scripts with detailed logging...")
94
  import subprocess