@@ -106,18 +106,18 @@ public struct LiveGenerationConfig: Sendable {
106
106
/// - inputAudioTranscription: Configures (and enables) input transcriptions when streaming to
107
107
/// the model.
108
108
///
109
- /// Input transcripts are the model's interprutation of audio data sent to it, and they are
110
- /// populated in model responses via ``LiveServerContent``. When this fields is set to `nil`,
109
+ /// Input transcripts are the model's interpretation of audio data sent to it, and they are
110
+ /// populated in model responses via ``LiveServerContent``. When this field is set to `nil`,
111
111
/// input transcripts are not populated in model responses.
112
112
/// - outputAudioTranscription: Configures (and enables) output transcriptions when streaming to
113
113
/// the model.
114
114
///
115
115
/// Output transcripts are text representations of the audio the model is sending to the
116
116
/// client, and they are populated in model responses via ``LiveServerContent``. When this
117
- /// fields is set to `nil`, output transcripts are not populated in model responses.
117
+ /// field is set to `nil`, output transcripts are not populated in model responses.
118
118
///
119
119
/// > Important: Transcripts are independent to the model turn. This means transcripts may
120
- /// > come earlier or later than when the model sends the corresponding audio responses.
120
+ /// > come earlier or later than when the model sends the corresponding audio responses.
121
121
public init ( temperature: Float ? = nil , topP: Float ? = nil , topK: Int ? = nil ,
122
122
candidateCount: Int ? = nil , maxOutputTokens: Int ? = nil ,
123
123
presencePenalty: Float ? = nil , frequencyPenalty: Float ? = nil ,
0 commit comments