Skip to content

Commit 9b7ee3c

Browse files
author
Guiners
committed
adding samples, test, lints
1 parent 7d7a3f4 commit 9b7ee3c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

genai/test/textgen-chat-with-txt.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const projectId = process.env.CAIP_PROJECT_ID;
2121
const sample = require('../text-generation/textgen-chat-with-txt.js');
2222

2323
describe('textgen-chat-with-txt', () => {
24-
it('should generate text content from a text prompt and with system instructions', async function () {
24+
it('should generate chat content from a text prompt', async function () {
2525
this.timeout(100000);
2626
const output = await sample.generateContent(projectId);
2727
assert(output.length > 0);

genai/test/textgen-config-with-txt.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const projectId = process.env.CAIP_PROJECT_ID;
2121
const sample = require('../text-generation/textgen-config-with-txt.js');
2222

2323
describe('textgen-config-with-txt', () => {
24-
it('should generate text content from a text prompt and with system instructions', async function () {
24+
it('should generate text content from a text prompt with config', async function () {
2525
this.timeout(100000);
2626
const output = await sample.generateContent(projectId);
2727
assert(output.length > 0);

0 commit comments

Comments
 (0)