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 6552dda commit c6cbd3bCopy full SHA for c6cbd3b
genai/test/textgen-with-txt.test.js
@@ -23,8 +23,6 @@ const sample = require('../text-generation/textgen-with-txt.js');
23
describe('textgen-with-txt', async () => {
24
it('should generate text content from a text prompt', async () => {
25
const output = await sample.generateContent(projectId);
26
- assert(
27
- output.length > 0 && output.includes('AI') && output.includes('models')
28
- );
+ assert(output.length > 0 && output.includes('AI'));
29
});
30
0 commit comments