ACE-Step Custom commited on
Commit
fa7f63d
·
1 Parent(s): 78910e3

Fix TypeError: pass Path object to ensure_main_model, not string

Browse files
Files changed (1) hide show
  1. src/ace_step_engine.py +1 -1
src/ace_step_engine.py CHANGED
@@ -77,7 +77,7 @@ class ACEStepEngine:
77
  try:
78
  # Use the built-in model downloader
79
  success, message = ensure_main_model(
80
- checkpoints_dir=str(checkpoints_dir),
81
  prefer_source="huggingface" # Use HuggingFace for Spaces
82
  )
83
 
 
77
  try:
78
  # Use the built-in model downloader
79
  success, message = ensure_main_model(
80
+ checkpoints_dir=checkpoints_dir,
81
  prefer_source="huggingface" # Use HuggingFace for Spaces
82
  )
83