Skip to content

Commit 9a4025b

Browse files
authored
fix(deps): fix dependabot issues (#505)
* chore(deps): update deps
1 parent 9474a20 commit 9a4025b

File tree

9 files changed

+108
-93
lines changed

9 files changed

+108
-93
lines changed

lambda/aws-qa-appsync-opensearch/question_answering/src/requirements.txt

+2-3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,5 @@ requests==2.32.0
99
requests-aws4auth==1.2.3
1010
opensearch-py==2.4.2
1111
numpy
12-
langchain==0.1.13
13-
langchain-community==0.0.29
14-
opensearch-py
12+
langchain==0.2.3
13+
langchain-community==0.2.4

lambda/aws-rag-appsync-stepfn-opensearch/embeddings_job/src/requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ boto3>=1.34.29
66
botocore>=1.34.29
77
requests==2.32.0
88
requests-aws4auth==1.2.3
9-
langchain==0.1.11
10-
langchain-community<0.1, >0.0.25
9+
langchain==0.2.3
10+
langchain-community==0.2.4
1111
opensearch-py==2.4.2
1212
sagemaker
1313
numpy

lambda/aws-rag-appsync-stepfn-opensearch/s3_file_transformer/src/requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ fastjsonschema==2.19.1
44
typing-extensions==4.7.0
55
boto3>=1.34.29
66
requests==2.32.0
7-
langchain==0.1.11
7+
langchain==0.2.3
88
pypdf==4.2.0
99
Pillow==10.3.0
10-
langchain-community<0.1, >0.0.25
10+
langchain-community==0.2.4

lambda/aws-summarization-appsync-stepfn/document_reader/requirements.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
redis
22
pypdf==4.2.0
3-
langchain==0.1.11
3+
langchain==0.2.3
4+
langchain-community==0.2.4
45
urllib3<2
56
aws-xray-sdk
67
aws-lambda-powertools

lambda/aws-summarization-appsync-stepfn/summary_generator/requirements.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ boto3>=1.34.29
33
botocore>=1.34.29
44
requests==2.32.0
55
requests-aws4auth==1.2.3
6-
langchain==0.1.11
6+
langchain==0.2.3
7+
langchain-community==0.2.4
78
nltk==3.8.1
89
urllib3<2
910
aws-lambda-powertools

lambda/opensearch-serverless-custom-resources/poetry.lock

+93-81
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

layers/langchain-common-deps/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ boto3>=1.34.29
22
botocore>=1.34.29
33
requests==2.32.0
44
requests-aws4auth==1.2.3
5-
langchain==0.1.11
5+
langchain==0.2.3
66
opensearch-py==2.4.2
77
openai==1.10.0
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
boto3==1.34.47
2-
requests==2.31.0
2+
requests==2.32.0
33
trafilatura==1.8.1

src/patterns/gen-ai/aws-web-crawler/README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,9 @@ export class WebCrawlerAgentStack extends cdk.Stack {
263263
new bedrock.AgentActionGroup(this, 'WebCrawlerActionGroup', {
264264
actionGroupName: 'web-crawler',
265265
description: 'Use this function to get content from a web page by HTTP or HTTPS URL',
266-
actionGroupExecutor: crawler.lambdaCrawler,
266+
actionGroupExecutor: {
267+
lambda: crawler.lambdaCrawler
268+
},
267269
actionGroupState: 'ENABLED',
268270
apiSchema: bedrock.ApiSchema.fromAsset(crawler.lambdaCrawlerApiSchemaPath),
269271
}),

0 commit comments

Comments
 (0)