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 d385c92 commit 40ca31bCopy full SHA for 40ca31b
src/lib/integrations/bedrockAgentTracer.ts
@@ -11,7 +11,10 @@ try {
11
InvokeAgentCommandInput = bedrockModule.InvokeAgentCommandInput;
12
InvokeAgentCommandOutput = bedrockModule.InvokeAgentCommandOutput;
13
} catch (error) {
14
- // AWS SDK not available
+ console.warn(
15
+ 'AWS SDK for Bedrock Agent Runtime is not available. Install it with: npm install @aws-sdk/client-bedrock-agent-runtime',
16
+ );
17
+ console.debug('Bedrock Agent tracing will not be available. Error:', error);
18
}
19
20
import { addChatCompletionStepToTrace } from '../tracing/tracer';
0 commit comments