Skip to content

Commit 936d05b

Browse files
Joanna Grycziennae
authored andcommitted
fix typo
1 parent 4a7faca commit 936d05b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ai-platform/snippets/create-batch-embedding.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ async function main(projectId, inputUri, outputUri, jobName) {
3636
// Optional: URI where the output will be stored.
3737
// Could be a BigQuery table or a Google Cloud Storage file.
3838
// E.g. "gs://[BUCKET]/[OUTPUT].jsonl" OR "bq://[PROJECT].[DATASET].[TABLE]"
39-
// outputUri = 'gs://your_backet/embedding_batch_output';
39+
// outputUri = 'gs://your_bucket/embedding_batch_output';
4040

4141
// The name of the job
4242
// jobName = `Batch embedding job: ${new Date().getMilliseconds()}`;

ai-platform/snippets/test/create-batch-embedding.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ describe('Batch embedding', async () => {
4343

4444
before(async () => {
4545
const bucketName = `test-bucket-${uuid()}`;
46-
// Create a Google Cloud Storage bucket for UsageReports
46+
// Create a Google Cloud Storage bucket for embedding output
4747
[bucket] = await storage.createBucket(bucketName);
4848
outputUri = `gs://${bucketName}/embedding_batch_output`;
4949
});
@@ -67,7 +67,7 @@ describe('Batch embedding', async () => {
6767

6868
return jobServiceClient.deleteBatchPredictionJob(deleteRequest);
6969
});
70-
// Delete the Google Cloud Storage bucket created for usage reports.
70+
// Delete the Google Cloud Storage bucket created for embedding output.
7171
await bucket.delete();
7272
});
7373

0 commit comments

Comments
 (0)