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
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ public partial interface ITranscriptClient
{
/// <summary>
/// Get redacted audio<br/>
/// &lt;Note&gt;To retrieve the redacted audio on the EU server, replace `api.assemblyai.com` with `api.eu.assemblyai.com` in the `GET` request above.&lt;/Note&gt;<br/>
/// Retrieve the redacted audio object containing the status and URL to the redacted audio.
/// </summary>
/// <param name="transcriptId"></param>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ public sealed partial class Transcript
public required global::System.Guid Id { get; set; }

/// <summary>
/// Improve accuracy with up to 1000 domain-specific words or phrases (maximum 6 words per phrase).
/// Improve accuracy with up to 200 (for Universal) or 1000 (for Slam-1) domain-specific words or phrases (maximum 6 words per phrase).
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("keyterms_prompt")]
public global::System.Collections.Generic.IList<string>? KeytermsPrompt { get; set; }
Expand Down Expand Up @@ -495,7 +495,7 @@ public sealed partial class Transcript
/// The unique identifier of your transcript
/// </param>
/// <param name="keytermsPrompt">
/// Improve accuracy with up to 1000 domain-specific words or phrases (maximum 6 words per phrase).
/// Improve accuracy with up to 200 (for Universal) or 1000 (for Slam-1) domain-specific words or phrases (maximum 6 words per phrase).
/// </param>
/// <param name="languageCode">
/// The language of your audio file.<br/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ partial void ProcessGetRedactedAudioResponseContent(

/// <summary>
/// Get redacted audio<br/>
/// &lt;Note&gt;To retrieve the redacted audio on the EU server, replace `api.assemblyai.com` with `api.eu.assemblyai.com` in the `GET` request above.&lt;/Note&gt;<br/>
/// Retrieve the redacted audio object containing the status and URL to the redacted audio.
/// </summary>
/// <param name="transcriptId"></param>
Expand Down
3 changes: 2 additions & 1 deletion src/libs/AssemblyAI/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -554,6 +554,7 @@ paths:
- transcript
summary: Get redacted audio
description: |
<Note>To retrieve the redacted audio on the EU server, replace `api.assemblyai.com` with `api.eu.assemblyai.com` in the `GET` request above.</Note>
Retrieve the redacted audio object containing the status and URL to the redacted audio.
operationId: getRedactedAudio
x-fern-sdk-group-name: transcripts
Expand Down Expand Up @@ -2882,7 +2883,7 @@ components:
keyterms_prompt:
x-label: Keyterms prompt
description: |
Improve accuracy with up to 1000 domain-specific words or phrases (maximum 6 words per phrase).
Improve accuracy with up to 200 (for Universal) or 1000 (for Slam-1) domain-specific words or phrases (maximum 6 words per phrase).
type: array
items:
x-label: Keyterm
Expand Down
Loading