You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -699,6 +705,129 @@ export class IntegerSchema extends Schema {
699
705
constructor(schemaParams?:SchemaParams);
700
706
}
701
707
708
+
// Warning: (ae-internal-missing-underscore) The name "LiveClientContent" should be prefixed with an underscore because the declaration is marked as @internal
709
+
//
710
+
//@internal
711
+
exportinterfaceLiveClientContent {
712
+
// (undocumented)
713
+
clientContent: {
714
+
turns: [Content];
715
+
turnComplete:boolean;
716
+
};
717
+
}
718
+
719
+
// Warning: (ae-internal-missing-underscore) The name "LiveClientRealtimeInput" should be prefixed with an underscore because the declaration is marked as @internal
720
+
//
721
+
//@internal
722
+
exportinterfaceLiveClientRealtimeInput {
723
+
// (undocumented)
724
+
realtimeInput: {
725
+
mediaChunks:GenerativeContentBlob[];
726
+
};
727
+
}
728
+
729
+
// Warning: (ae-internal-missing-underscore) The name "LiveClientSetup" should be prefixed with an underscore because the declaration is marked as @internal
730
+
//
731
+
//@internal
732
+
exportinterfaceLiveClientSetup {
733
+
// (undocumented)
734
+
setup: {
735
+
model:string;
736
+
generationConfig?:LiveGenerationConfig;
737
+
};
738
+
}
739
+
740
+
// @public
741
+
exportinterfaceLiveGenerationConfig {
742
+
candidateCount?:number;
743
+
frequencyPenalty?:number;
744
+
maxOutputTokens?:number;
745
+
presencePenalty?:number;
746
+
// Warning: (ae-incompatible-release-tags) The symbol "responseModalities" is marked as @public, but its signature references "ResponseModality" which is marked as @beta
0 commit comments