Skip to content

Commit b6facb4

Browse files
committed
test: disable streaming for Bedrock model in e2e tests
1 parent 2f0b8a9 commit b6facb4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

e2e_tests/typescript/src/main.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,9 @@ async function main(): Promise<void> {
6767
const model = new BedrockModel({
6868
region: region as string,
6969
modelId: config.modelId,
70+
stream: false,
7071
});
71-
logger.info(`Using model: ${config.modelId} in region: ${region}`);
72+
logger.info(`Using model: ${config.modelId} in region: ${region} (streaming disabled)`);
7273

7374
logger.info("Creating agent...");
7475
const agent = new Agent({

0 commit comments

Comments
 (0)