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 @@ -293,7 +293,7 @@ public sealed partial class Transcript
public bool? SpeakerLabels { get; set; }

/// <summary>
/// Tell the speaker label model how many speakers it should attempt to identify, up to 10. See [Speaker diarization](https://www.assemblyai.com/docs/models/speaker-diarization) for more details.
/// Tell the speaker label model how many speakers it should attempt to identify. See [Speaker diarization](https://www.assemblyai.com/docs/models/speaker-diarization) for more details.
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("speakers_expected")]
public int? SpeakersExpected { get; set; }
Expand Down Expand Up @@ -560,7 +560,7 @@ public sealed partial class Transcript
/// Whether [Speaker diarization](https://www.assemblyai.com/docs/models/speaker-diarization) is enabled, can be true or false
/// </param>
/// <param name="speakersExpected">
/// Tell the speaker label model how many speakers it should attempt to identify, up to 10. See [Speaker diarization](https://www.assemblyai.com/docs/models/speaker-diarization) for more details.
/// Tell the speaker label model how many speakers it should attempt to identify. See [Speaker diarization](https://www.assemblyai.com/docs/models/speaker-diarization) for more details.
/// </param>
/// <param name="speechModel">
/// The speech model used for the transcription. When `null`, the `universal` model is used.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ public sealed partial class TranscriptOptionalParams
public global::AssemblyAI.TranscriptOptionalParamsSpeakerOptions? SpeakerOptions { get; set; }

/// <summary>
/// Tells the speaker label model how many speakers it should attempt to identify, up to 10. See [Speaker diarization](https://www.assemblyai.com/docs/models/speaker-diarization) for more details.
/// Tells the speaker label model how many speakers it should attempt to identify. See [Speaker diarization](https://www.assemblyai.com/docs/models/speaker-diarization) for more details.
/// </summary>
[global::System.Text.Json.Serialization.JsonPropertyName("speakers_expected")]
public int? SpeakersExpected { get; set; }
Expand Down Expand Up @@ -419,7 +419,7 @@ public sealed partial class TranscriptOptionalParams
/// Specify options for speaker diarization.
/// </param>
/// <param name="speakersExpected">
/// Tells the speaker label model how many speakers it should attempt to identify, up to 10. See [Speaker diarization](https://www.assemblyai.com/docs/models/speaker-diarization) for more details.
/// Tells the speaker label model how many speakers it should attempt to identify. See [Speaker diarization](https://www.assemblyai.com/docs/models/speaker-diarization) for more details.
/// </param>
/// <param name="speechModel">
/// The speech model to use for the transcription. When `null`, the `universal` model is used.<br/>
Expand Down
4 changes: 2 additions & 2 deletions src/libs/AssemblyAI/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1416,7 +1416,7 @@ components:

speakers_expected:
x-label: Speakers expected
description: Tells the speaker label model how many speakers it should attempt to identify, up to 10. See [Speaker diarization](https://www.assemblyai.com/docs/models/speaker-diarization) for more details.
description: Tells the speaker label model how many speakers it should attempt to identify. See [Speaker diarization](https://www.assemblyai.com/docs/models/speaker-diarization) for more details.
type: [integer, "null"]
default: null

Expand Down Expand Up @@ -2835,7 +2835,7 @@ components:

speakers_expected:
x-label: Speakers expected
description: Tell the speaker label model how many speakers it should attempt to identify, up to 10. See [Speaker diarization](https://www.assemblyai.com/docs/models/speaker-diarization) for more details.
description: Tell the speaker label model how many speakers it should attempt to identify. See [Speaker diarization](https://www.assemblyai.com/docs/models/speaker-diarization) for more details.
type: [integer, "null"]

content_safety:
Expand Down