Skip to content

Commit a4bfa52

Browse files
ivanmkcIvan Cheung
authored and
Ahrar Monsur
committed
fix: Wrote inputs as string to facilitate parsing (#480)
Co-authored-by: Ivan Cheung <[email protected]>
1 parent 5f4e682 commit a4bfa52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

automl/tables/predict.v1beta1.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ async function main(
1717
projectId = 'YOUR_GCP_PROJECT_ID',
1818
computeRegion = 'REGION',
1919
modelId = 'YOUR_MODEL_ID',
20-
inputs = [{numberValue: 1}, {stringValue: 'value'}]
20+
inputs = '[{"numberValue": 1}, {"stringValue": "value"}]'
2121
) {
2222
// [START automl_tables_predict]
2323

0 commit comments

Comments
 (0)