Skip to content

Commit d0dca26

Browse files
committed
update api text
1 parent 4b4ec66 commit d0dca26

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

firebase-vertexai/api.txt

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -128,12 +128,11 @@ package com.google.firebase.vertexai.java {
128128
method public abstract com.google.common.util.concurrent.ListenableFuture<kotlin.Unit> close();
129129
method public static final com.google.firebase.vertexai.java.LiveSessionFutures from(com.google.firebase.vertexai.type.LiveSession session);
130130
method public abstract org.reactivestreams.Publisher<com.google.firebase.vertexai.type.LiveContentResponse> receive(java.util.List<com.google.firebase.vertexai.type.ContentModality> outputModalities);
131-
method public abstract org.reactivestreams.Publisher<java.util.List<com.google.firebase.vertexai.type.FunctionCallPart>> receiveAudioConversationFunctionCalls();
132131
method public abstract com.google.common.util.concurrent.ListenableFuture<kotlin.Unit> send(com.google.firebase.vertexai.type.Content content);
133132
method public abstract com.google.common.util.concurrent.ListenableFuture<kotlin.Unit> send(String text);
134133
method public abstract com.google.common.util.concurrent.ListenableFuture<kotlin.Unit> sendFunctionResponse(java.util.List<com.google.firebase.vertexai.type.FunctionResponsePart> functionList);
135134
method public abstract com.google.common.util.concurrent.ListenableFuture<kotlin.Unit> sendMediaStream(java.util.List<com.google.firebase.vertexai.type.MediaData> mediaChunks);
136-
method public abstract com.google.common.util.concurrent.ListenableFuture<kotlin.Unit> startAudioConversation();
135+
method public abstract com.google.common.util.concurrent.ListenableFuture<kotlin.Unit> startAudioConversation(kotlin.jvm.functions.Function1<? super java.util.List<com.google.firebase.vertexai.type.FunctionCallPart>,? extends java.util.List<com.google.firebase.vertexai.type.FunctionResponsePart>>? functionCallsHandler);
137136
method public abstract com.google.common.util.concurrent.ListenableFuture<kotlin.Unit> stopAudioConversation();
138137
method public abstract void stopReceiving();
139138
field public static final com.google.firebase.vertexai.java.LiveSessionFutures.Companion Companion;
@@ -601,7 +600,7 @@ package com.google.firebase.vertexai.type {
601600
method public com.google.firebase.vertexai.type.LiveGenerationConfig.Builder setFrequencyPenalty(Float? frequencyPenalty);
602601
method public com.google.firebase.vertexai.type.LiveGenerationConfig.Builder setMaxOutputTokens(Integer? maxOutputTokens);
603602
method public com.google.firebase.vertexai.type.LiveGenerationConfig.Builder setPresencePenalty(Float? presencePenalty);
604-
method public com.google.firebase.vertexai.type.LiveGenerationConfig.Builder setResponseModalities(java.util.List<com.google.firebase.vertexai.type.ContentModality>? responseModalities);
603+
method public com.google.firebase.vertexai.type.LiveGenerationConfig.Builder setResponseModalities(com.google.firebase.vertexai.type.ContentModality? responseModalities);
605604
method public com.google.firebase.vertexai.type.LiveGenerationConfig.Builder setSpeechConfig(com.google.firebase.vertexai.type.SpeechConfig? speechConfig);
606605
method public com.google.firebase.vertexai.type.LiveGenerationConfig.Builder setTemperature(Float? temperature);
607606
method public com.google.firebase.vertexai.type.LiveGenerationConfig.Builder setTopK(Integer? topK);
@@ -610,7 +609,7 @@ package com.google.firebase.vertexai.type {
610609
field public Float? frequencyPenalty;
611610
field public Integer? maxOutputTokens;
612611
field public Float? presencePenalty;
613-
field public java.util.List<com.google.firebase.vertexai.type.ContentModality>? responseModalities;
612+
field public com.google.firebase.vertexai.type.ContentModality? responseModality;
614613
field public com.google.firebase.vertexai.type.SpeechConfig? speechConfig;
615614
field public Float? temperature;
616615
field public Integer? topK;
@@ -628,12 +627,11 @@ package com.google.firebase.vertexai.type {
628627
public final class LiveSession {
629628
method public suspend Object? close(kotlin.coroutines.Continuation<? super kotlin.Unit>);
630629
method public kotlinx.coroutines.flow.Flow<com.google.firebase.vertexai.type.LiveContentResponse> receive(java.util.List<com.google.firebase.vertexai.type.ContentModality> outputModalities);
631-
method public kotlinx.coroutines.flow.Flow<java.util.List<com.google.firebase.vertexai.type.FunctionCallPart>> receiveAudioConversationFunctionCalls();
632630
method public suspend Object? send(com.google.firebase.vertexai.type.Content content, kotlin.coroutines.Continuation<? super kotlin.Unit>);
633631
method public suspend Object? send(String text, kotlin.coroutines.Continuation<? super kotlin.Unit>);
634632
method public suspend Object? sendFunctionResponse(java.util.List<com.google.firebase.vertexai.type.FunctionResponsePart> functionList, kotlin.coroutines.Continuation<? super kotlin.Unit>);
635633
method public suspend Object? sendMediaStream(java.util.List<com.google.firebase.vertexai.type.MediaData> mediaChunks, kotlin.coroutines.Continuation<? super kotlin.Unit>);
636-
method public suspend Object? startAudioConversation(kotlin.coroutines.Continuation<? super kotlin.Unit>);
634+
method public suspend Object? startAudioConversation(kotlin.jvm.functions.Function1<? super java.util.List<com.google.firebase.vertexai.type.FunctionCallPart>,? extends java.util.List<com.google.firebase.vertexai.type.FunctionResponsePart>>? functionCallsHandler = null, kotlin.coroutines.Continuation<? super kotlin.Unit>);
637635
method public void stopAudioConversation();
638636
method public void stopReceiving();
639637
}

0 commit comments

Comments
 (0)