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 4f0928a commit c7b9fd5Copy full SHA for c7b9fd5
src/libs/agent-runtime/bedrock/index.ts
@@ -79,11 +79,7 @@ export class LobeBedrockAI implements LobeRuntimeAI {
79
const bedrockResponse = await this.client.send(command);
80
81
// Convert the response into a friendly text-stream
82
- const stream = AWSBedrockStream(bedrockResponse, options?.callback, (chunk) => {
83
- if (chunk.type === 'content_block_delta') {
84
- return chunk.delta?.text;
85
- }
86
- });
+ const stream = AWSBedrockStream(bedrockResponse, options?.callback, (chunk) => chunk.delta?.text);
87
88
const [debug, output] = stream.tee();
89
0 commit comments