Skip to content

Commit 1a832e9

Browse files
1 parent 5d6623f commit 1a832e9

File tree

6 files changed

+33
-36
lines changed

6 files changed

+33
-36
lines changed

clients/google-api-services-firebaseml/v2beta/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-firebaseml</artifactId>
25-
<version>v2beta-rev20240704-2.0.0</version>
25+
<version>v2beta-rev20240719-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-firebaseml:v2beta-rev20240704-2.0.0'
38+
implementation 'com.google.apis:google-api-services-firebaseml:v2beta-rev20240719-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-firebaseml/v2beta/2.0.0/com/google/api/services/firebaseml/v2beta/model/GoogleCloudAiplatformV1beta1Candidate.java

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -81,13 +81,6 @@ public final class GoogleCloudAiplatformV1beta1Candidate extends com.google.api.
8181
@com.google.api.client.util.Key
8282
private java.util.List<GoogleCloudAiplatformV1beta1SafetyRating> safetyRatings;
8383

84-
/**
85-
* Output only. Confidence score of the candidate.
86-
* The value may be {@code null}.
87-
*/
88-
@com.google.api.client.util.Key
89-
private java.lang.Double score;
90-
9184
/**
9285
* Output only. Source attribution of the generated content.
9386
* @return value or {@code null} for none
@@ -213,23 +206,6 @@ public GoogleCloudAiplatformV1beta1Candidate setSafetyRatings(java.util.List<Goo
213206
return this;
214207
}
215208

216-
/**
217-
* Output only. Confidence score of the candidate.
218-
* @return value or {@code null} for none
219-
*/
220-
public java.lang.Double getScore() {
221-
return score;
222-
}
223-
224-
/**
225-
* Output only. Confidence score of the candidate.
226-
* @param score score or {@code null} for none
227-
*/
228-
public GoogleCloudAiplatformV1beta1Candidate setScore(java.lang.Double score) {
229-
this.score = score;
230-
return this;
231-
}
232-
233209
@Override
234210
public GoogleCloudAiplatformV1beta1Candidate set(String fieldName, Object value) {
235211
return (GoogleCloudAiplatformV1beta1Candidate) super.set(fieldName, value);

clients/google-api-services-firebaseml/v2beta/2.0.0/com/google/api/services/firebaseml/v2beta/model/GoogleCloudAiplatformV1beta1GenerationConfig.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,13 @@ public final class GoogleCloudAiplatformV1beta1GenerationConfig extends com.goog
7878
@com.google.api.client.util.Key
7979
private GoogleCloudAiplatformV1beta1Schema responseSchema;
8080

81+
/**
82+
* Optional. Seed.
83+
* The value may be {@code null}.
84+
*/
85+
@com.google.api.client.util.Key
86+
private java.lang.Integer seed;
87+
8188
/**
8289
* Optional. Stop sequences.
8390
* The value may be {@code null}.
@@ -222,6 +229,23 @@ public GoogleCloudAiplatformV1beta1GenerationConfig setResponseSchema(GoogleClou
222229
return this;
223230
}
224231

232+
/**
233+
* Optional. Seed.
234+
* @return value or {@code null} for none
235+
*/
236+
public java.lang.Integer getSeed() {
237+
return seed;
238+
}
239+
240+
/**
241+
* Optional. Seed.
242+
* @param seed seed or {@code null} for none
243+
*/
244+
public GoogleCloudAiplatformV1beta1GenerationConfig setSeed(java.lang.Integer seed) {
245+
this.seed = seed;
246+
return this;
247+
}
248+
225249
/**
226250
* Optional. Stop sequences.
227251
* @return value or {@code null} for none

clients/google-api-services-firebaseml/v2beta/2.0.0/com/google/api/services/firebaseml/v2beta/model/GoogleCloudAiplatformV1beta1Retrieval.java

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@
3030
public final class GoogleCloudAiplatformV1beta1Retrieval extends com.google.api.client.json.GenericJson {
3131

3232
/**
33-
* Optional. Disable using the result from this tool in detecting grounding attribution. This does
34-
* not affect how the result is given to the model for generation.
33+
* Optional. Deprecated. This option is no longer supported.
3534
* The value may be {@code null}.
3635
*/
3736
@com.google.api.client.util.Key
@@ -53,17 +52,15 @@ public final class GoogleCloudAiplatformV1beta1Retrieval extends com.google.api.
5352
private GoogleCloudAiplatformV1beta1VertexRagStore vertexRagStore;
5453

5554
/**
56-
* Optional. Disable using the result from this tool in detecting grounding attribution. This does
57-
* not affect how the result is given to the model for generation.
55+
* Optional. Deprecated. This option is no longer supported.
5856
* @return value or {@code null} for none
5957
*/
6058
public java.lang.Boolean getDisableAttribution() {
6159
return disableAttribution;
6260
}
6361

6462
/**
65-
* Optional. Disable using the result from this tool in detecting grounding attribution. This does
66-
* not affect how the result is given to the model for generation.
63+
* Optional. Deprecated. This option is no longer supported.
6764
* @param disableAttribution disableAttribution or {@code null} for none
6865
*/
6966
public GoogleCloudAiplatformV1beta1Retrieval setDisableAttribution(java.lang.Boolean disableAttribution) {

clients/google-api-services-firebaseml/v2beta/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-firebaseml</artifactId>
11-
<version>v2beta-rev20240704-2.0.0</version>
12-
<name>Firebase ML API v2beta-rev20240704-2.0.0</name>
11+
<version>v2beta-rev20240719-2.0.0</version>
12+
<name>Firebase ML API v2beta-rev20240719-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-firebaseml/v2beta/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-firebaseml</artifactId>
25-
<version>v2beta-rev20240704-2.0.0</version>
25+
<version>v2beta-rev20240719-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-firebaseml:v2beta-rev20240704-2.0.0'
38+
implementation 'com.google.apis:google-api-services-firebaseml:v2beta-rev20240719-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)