Skip to content

Commit

Permalink
feat: update internal proto
Browse files Browse the repository at this point in the history
  • Loading branch information
jyoo0515 committed Feb 20, 2024
1 parent 33f132a commit 738d2ea
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions proto/internal.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 738d2ea

Please sign in to comment.