From 9e4e0981704430d598c91af668746a671bb9cf3a Mon Sep 17 00:00:00 2001 From: tuna2134 Date: Fri, 13 Sep 2024 11:36:24 +0000 Subject: [PATCH] fix private to public --- sbv2_core/src/tts.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sbv2_core/src/tts.rs b/sbv2_core/src/tts.rs index facd451..314795a 100644 --- a/sbv2_core/src/tts.rs +++ b/sbv2_core/src/tts.rs @@ -301,10 +301,10 @@ impl TTSModelHolder { } pub struct SynthesizeOptions { - sdp_ratio: f32, - length_scale: f32, - style_weight: f32, - split_sentences: bool, + pub sdp_ratio: f32, + pub length_scale: f32, + pub style_weight: f32, + pub split_sentences: bool, } impl Default for SynthesizeOptions {