File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ class PrerecordedOptions(TranscriptionOptions, total=False):
8989 utterances : bool
9090 utt_split : float
9191 detect_entities : bool
92- summarize : bool
92+ summarize : str
9393 paragraphs : bool
9494 detect_language : bool
9595 detect_topics : bool
@@ -216,11 +216,13 @@ class Metadata(TypedDict):
216216 duration : float
217217 channels : int
218218 models : List [str ]
219+ model_info : Dict [str , Any ]
219220
220221
221222TranscriptionResults = TypedDict ('TranscriptionResults' , {
222223 'channels' : List [Channel ],
223- 'utterances' : Optional [List [Utterance ]]
224+ 'utterances' : Optional [List [Utterance ]],
225+ 'summary' : Optional [Dict [str , Any ]]
224226})
225227
226228
@@ -365,7 +367,7 @@ class UsageOptions(TypedDict, total=False):
365367 alternatives : bool
366368 numerals : bool
367369 detect_entities : bool
368- summarize : bool
370+ summarize : str
369371 paragraphs : bool
370372 detect_language : bool
371373 detect_topics : bool
You can’t perform that action at this time.
0 commit comments