Fix CI tests for Mem0 (#1498)

This commit is contained in:
Dev Khant
2024-07-19 01:58:19 +05:30
committed by GitHub
parent a546a9f56a
commit e9136c1aa0
4 changed files with 78 additions and 8 deletions

View File

@@ -23,7 +23,7 @@ class AWSBedrockLlm(BaseLlm):
except ModuleNotFoundError:
raise ModuleNotFoundError(
"The required dependencies for AWSBedrock are not installed."
"Please install with `pip install boto3==1.34.20`"
"Please install with `pip install boto3==1.34.20`."
) from None
self.boto_client = boto3.client("bedrock-runtime", "us-west-2" or os.environ.get("AWS_REGION"))