diff --git a/crates/sbv2_voicevox/src/main.rs b/crates/sbv2_voicevox/src/main.rs index f1a36d2..3c4e757 100644 --- a/crates/sbv2_voicevox/src/main.rs +++ b/crates/sbv2_voicevox/src/main.rs @@ -16,6 +16,7 @@ async fn create_audio_query( Query(request): Query, ) -> AppResult<()> { let (phones, tones, mut word2ph, normalized_text, process) = preprocess_parse_text(&request.text, &JTalk::new()?)?; + println!("{:?}", phones); Ok(()) }