File tree Expand file tree Collapse file tree 1 file changed +0
-5
lines changed
FirebaseAI/Sources/Types/Internal/Live Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -45,9 +45,6 @@ struct BidiGenerateContentSetup: Encodable {
45
45
46
46
let toolConfig : ToolConfig ?
47
47
48
- /// Configures the handling of realtime input.
49
- let realtimeInputConfig : RealtimeInputConfig ?
50
-
51
48
/// Input transcription. The transcription is independent to the model turn
52
49
/// which means it doesn't imply any ordering between transcription and model
53
50
/// turn.
@@ -63,15 +60,13 @@ struct BidiGenerateContentSetup: Encodable {
63
60
systemInstruction: ModelContent ? = nil ,
64
61
tools: [ Tool ] ? = nil ,
65
62
toolConfig: ToolConfig ? = nil ,
66
- realtimeInputConfig: RealtimeInputConfig ? = nil ,
67
63
inputAudioTranscription: BidiAudioTranscriptionConfig ? = nil ,
68
64
outputAudioTranscription: BidiAudioTranscriptionConfig ? = nil ) {
69
65
self . model = model
70
66
self . generationConfig = generationConfig
71
67
self . systemInstruction = systemInstruction
72
68
self . tools = tools
73
69
self . toolConfig = toolConfig
74
- self . realtimeInputConfig = realtimeInputConfig
75
70
self . inputAudioTranscription = inputAudioTranscription
76
71
self . outputAudioTranscription = outputAudioTranscription
77
72
}
You can’t perform that action at this time.
0 commit comments