Skip to content

Commit

Permalink
Adds Missing Dictation Param
Browse files Browse the repository at this point in the history
  • Loading branch information
dvonthenen committed Jul 31, 2024
1 parent c4bb711 commit f4cb60c
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Deepgram/Models/Listen/v1/WebSocket/LiveSchema.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,15 @@ public class LiveSchema
[JsonPropertyName("diarize_version")]
public string? DiarizeVersion { get; set; }

/// <summary>
/// Diarize recognizes speaker changes and assigns a speaker to each word in the transcript.
/// <see href="https://developers.deepgram.com/docs/dictation">
/// default is false
/// </summary>
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
[JsonPropertyName("dictation")]
public bool? Dictation { get; set; }

/// <summary>
/// Encoding allows you to specify the expected encoding of your submitted audio.
/// <see href="https://developers.deepgram.com/docs/encoding">
Expand Down

0 comments on commit f4cb60c

Please sign in to comment.