diff --git a/ChatTTS/core.py b/ChatTTS/core.py index 61893e2..4ab9016 100644 --- a/ChatTTS/core.py +++ b/ChatTTS/core.py @@ -141,7 +141,10 @@ class Chat: compile=compile, coef=coef, use_flash_attn=use_flash_attn, - **asdict(self.config.path), + **{ + k: os.path.join(download_path, v) + for k, v in asdict(self.config.path).items() + }, ) def unload(self):