Skip to content

Commit dcd7157

Browse files
chore: readd correct interface types
1 parent 8c88e3e commit dcd7157

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

speech-to-text/v1-generated.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6826,13 +6826,13 @@ namespace SpeechToTextV1 {
68266826
* elements: the word followed by its start and end time in seconds, for example:
68276827
* `[["hello",0.0,1.2],["world",1.2,2.5]]`. Timestamps are returned only for the best alternative.
68286828
*/
6829-
timestamps?: string[];
6829+
timestamps?: [string, number, number][];
68306830
/** A confidence score for each word of the transcript as a list of lists. Each inner list consists of two
68316831
* elements: the word and its confidence score in the range of 0.0 to 1.0, for example:
68326832
* `[["hello",0.95],["world",0.86]]`. Confidence scores are returned only for the best alternative and only with
68336833
* results marked as final.
68346834
*/
6835-
word_confidence?: string[];
6835+
word_confidence?: [string, number][];
68366836
}
68376837

68386838
/**

0 commit comments

Comments
 (0)