From 738d2eacbae0aceffa037a353439ac757dc2d2f3 Mon Sep 17 00:00:00 2001 From: Jason Yoo Date: Tue, 20 Feb 2024 18:48:50 +0900 Subject: [PATCH] feat: update internal proto --- proto/internal.proto | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/proto/internal.proto b/proto/internal.proto index 8c53285..84ad018 100644 --- a/proto/internal.proto +++ b/proto/internal.proto @@ -10,13 +10,12 @@ message PronunciationFeedbackRequest { message PronunciationFeedbackResponse { string transcript = 1; - repeated int32 wrong_idx_major = 2; - repeated int32 wrong_idx_minor = 3; - double pronunciation_score = 4; - double decibel = 5; - double speech_rate = 6; - string positive_feedback = 7; - string negative_feedback = 8; + repeated int32 incorrect_indexes = 2; + double pronunciation_score = 3; + double decibel = 4; + double speech_rate = 5; + string positive_feedback = 6; + string negative_feedback = 7; } service PronunciationFeedbackService {