Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,6 @@ for (const paragraph of paragraphs) {
for (const sentence of sentences) {
console.log(sentence.text);
}

```

</details>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "assemblyai",
"version": "4.26.1",
"version": "4.27.0",
"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.",
"engines": {
"node": ">=18"
Expand Down
10 changes: 10 additions & 0 deletions src/types/openapi.generated.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2889,6 +2889,11 @@ export type Transcript = {
* Change how deterministic the response is, with 0 being the most deterministic and 1 being the least deterministic.
*/

remove_audio_tags?: string | null;
/**
* When set to 'all', removes all bracketed audio/speaker tags (e.g. [MUSIC], [Speaker: A]) from the transcript. Only supported for Universal-3 Pro.
*/

text?: string | null;
/**
* True while a request is throttled and false when a request is no longer throttled
Expand Down Expand Up @@ -3433,6 +3438,11 @@ export type TranscriptOptionalParams = {
* Change how deterministic the response is, with 0 being the most deterministic and 1 being the least deterministic.
*/

remove_audio_tags?: string | null;
/**
* When set to 'all', removes all bracketed audio/speaker tags (e.g. [MUSIC], [Speaker: A]) from the transcript. Only supported for Universal-3 Pro.
*/

topics?: string[];
/**
* The header name to be sent with the transcript completed or failed webhook requests
Expand Down
Loading