Skip to content

Commit

Permalink
feat: add transcript and example video
Browse files Browse the repository at this point in the history
  • Loading branch information
jyoo0515 committed Feb 20, 2024
1 parent 8f2925f commit eb5fb1b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
11 changes: 6 additions & 5 deletions proto/feedback.proto
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@ package proto;

message PronunciationFeedbackDTO {
string sentence_id = 1;
repeated int32 incorrect_indexes = 2;
int32 pronunciation_score = 3;
int32 volume_score = 4;
int32 speed_score = 5;
string overall_feedback = 6;
string transcript = 2; // stt 가 인식한 문장
repeated int32 incorrect_indexes = 3;
int32 pronunciation_score = 4;
int32 volume_score = 5;
int32 speed_score = 6;
string overall_feedback = 7;
}

message GetPronunciationFeedbackRequest {
Expand Down
1 change: 1 addition & 0 deletions proto/sentence.proto
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ package proto;
message SentenceDTO {
string id = 1;
string text = 2;
string example_video_url = 3;
}

message GetSentenceRequest {
Expand Down

0 comments on commit eb5fb1b

Please sign in to comment.