We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d037af commit 5f94569Copy full SHA for 5f94569
src/main/java/com/google/genai/Tunings.java
@@ -292,14 +292,12 @@ ObjectNode createTuningJobParametersPrivateToVertex(
292
}
293
294
if (Common.getValueByPath(fromObject, new String[] {"trainingDataset"}) != null) {
295
- Common.setValueByPath(
296
- toObject,
297
- new String[] {"supervisedTuningSpec", "trainingDatasetUri"},
+ JsonNode unused =
298
tuningDatasetToVertex(
299
JsonSerializable.toJsonNode(
300
Common.getValueByPath(fromObject, new String[] {"trainingDataset"})),
301
toObject,
302
- rootObject));
+ rootObject);
303
304
305
if (Common.getValueByPath(fromObject, new String[] {"config"}) != null) {
0 commit comments