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
- update api.txt
- bump version
- Add missing kdoc
A note about api.txt and version. While this change is technically
removing two methods, those are constructors of classes returned by
the server, which shouldn't be instantiated by clients.
In an upcoming breaking release we should moved them to be hidden
using the `internal` visibility.
method public static com.google.firebase.vertexai.type.Content content(String? role = "user", kotlin.jvm.functions.Function1<? super com.google.firebase.vertexai.type.Content.Builder,kotlin.Unit> init);
166
166
}
167
167
168
+
public final class ContentModality {
169
+
method public int getOrdinal();
170
+
property public final int ordinal;
171
+
field public static final com.google.firebase.vertexai.type.ContentModality AUDIO;
172
+
field public static final com.google.firebase.vertexai.type.ContentModality.Companion Companion;
173
+
field public static final com.google.firebase.vertexai.type.ContentModality DOCUMENT;
174
+
field public static final com.google.firebase.vertexai.type.ContentModality IMAGE;
175
+
field public static final com.google.firebase.vertexai.type.ContentModality TEXT;
176
+
field public static final com.google.firebase.vertexai.type.ContentModality UNSPECIFIED;
177
+
field public static final com.google.firebase.vertexai.type.ContentModality VIDEO;
178
+
}
179
+
180
+
public static final class ContentModality.Companion {
181
+
}
182
+
168
183
public final class CountTokensResponse {
169
-
ctor public CountTokensResponse(int totalTokens, Integer? totalBillableCharacters = null);
0 commit comments