Skip to content

Commit 735bcd2

Browse files
fix(stt): handedit- fix timestamps time to properly reflect response model
fix #1084
1 parent 03e1d69 commit 735bcd2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

speech-to-text/v1-generated.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5348,7 +5348,7 @@ namespace SpeechToTextV1 {
53485348
* elements: the word followed by its start and end time in seconds, for example:
53495349
* `[["hello",0.0,1.2],["world",1.2,2.5]]`. Timestamps are returned only for the best alternative.
53505350
*/
5351-
timestamps?: string[];
5351+
timestamps?: [string, number, number][];
53525352
/** A confidence score for each word of the transcript as a list of lists. Each inner list consists of two
53535353
* elements: the word and its confidence score in the range of 0.0 to 1.0, for example:
53545354
* `[["hello",0.95],["world",0.866]]`. Confidence scores are returned only for the best alternative and only with

0 commit comments

Comments
 (0)