Skip to content

Commit 3034899

Browse files
authored
Merge pull request #133 from AssemblyAI/EA17A79D514289B819B9AE7C9AB1132F
Sync from internal repo (2026/03/12)
2 parents 0ed3242 + b76e4b7 commit 3034899

3 files changed

Lines changed: 11 additions & 2 deletions

File tree

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,6 @@ for (const paragraph of paragraphs) {
233233
for (const sentence of sentences) {
234234
console.log(sentence.text);
235235
}
236-
237236
```
238237

239238
</details>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "assemblyai",
3-
"version": "4.26.1",
3+
"version": "4.27.0",
44
"description": "The AssemblyAI JavaScript SDK provides an easy-to-use interface for interacting with the AssemblyAI API, which supports async and real-time transcription, as well as the latest LeMUR models.",
55
"engines": {
66
"node": ">=18"

src/types/openapi.generated.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2889,6 +2889,11 @@ export type Transcript = {
28892889
* Change how deterministic the response is, with 0 being the most deterministic and 1 being the least deterministic.
28902890
*/
28912891

2892+
remove_audio_tags?: string | null;
2893+
/**
2894+
* When set to 'all', removes all bracketed audio/speaker tags (e.g. [MUSIC], [Speaker: A]) from the transcript. Only supported for Universal-3 Pro.
2895+
*/
2896+
28922897
text?: string | null;
28932898
/**
28942899
* True while a request is throttled and false when a request is no longer throttled
@@ -3433,6 +3438,11 @@ export type TranscriptOptionalParams = {
34333438
* Change how deterministic the response is, with 0 being the most deterministic and 1 being the least deterministic.
34343439
*/
34353440

3441+
remove_audio_tags?: string | null;
3442+
/**
3443+
* When set to 'all', removes all bracketed audio/speaker tags (e.g. [MUSIC], [Speaker: A]) from the transcript. Only supported for Universal-3 Pro.
3444+
*/
3445+
34363446
topics?: string[];
34373447
/**
34383448
* The header name to be sent with the transcript completed or failed webhook requests

0 commit comments

Comments
 (0)