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 0d6d3fd commit c35fc47Copy full SHA for c35fc47
plugins/aws/tests/test_aws.py
@@ -38,7 +38,8 @@ async def llm(self) -> BedrockLLM:
38
region_name="us-east-1"
39
)
40
if not os.environ.get("AWS_BEARER_TOKEN_BEDROCK"):
41
- raise Exception("Please set AWS_BEARER_TOKEN_BEDROCK")
+ token = os.environ.get("AWS_BEARER_TOKEN_BEDROCK")
42
+ raise Exception(f"Please set AWS_BEARER_TOKEN_BEDROCK {len(token)}, {type(token)}")
43
44
llm._conversation = InMemoryConversation("be friendly", [])
45
return llm
0 commit comments