feat: docker(cpu), 1:n bert:vits2 support

This commit is contained in:
Googlefan
2024-09-11 03:19:08 +00:00
parent 70059fc040
commit 7d191ca37d
10 changed files with 129 additions and 34 deletions

View File

@@ -18,6 +18,8 @@ pub enum Error {
IoError(#[from] std::io::Error),
#[error("hound error: {0}")]
HoundError(#[from] hound::Error),
#[error("model not found error")]
ModelNotFoundError(String),
}
pub type Result<T> = std::result::Result<T, Error>;