Skip to content

Commit

Permalink
fix(deps): fix dependabot issues (#505)
Browse files Browse the repository at this point in the history
* chore(deps): update deps
  • Loading branch information
krokoko authored Jun 14, 2024
1 parent 9474a20 commit 9a4025b
Show file tree
Hide file tree
Showing 9 changed files with 108 additions and 93 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,5 @@ requests==2.32.0
requests-aws4auth==1.2.3
opensearch-py==2.4.2
numpy
langchain==0.1.13
langchain-community==0.0.29
opensearch-py
langchain==0.2.3
langchain-community==0.2.4
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ boto3>=1.34.29
botocore>=1.34.29
requests==2.32.0
requests-aws4auth==1.2.3
langchain==0.1.11
langchain-community<0.1, >0.0.25
langchain==0.2.3
langchain-community==0.2.4
opensearch-py==2.4.2
sagemaker
numpy
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ fastjsonschema==2.19.1
typing-extensions==4.7.0
boto3>=1.34.29
requests==2.32.0
langchain==0.1.11
langchain==0.2.3
pypdf==4.2.0
Pillow==10.3.0
langchain-community<0.1, >0.0.25
langchain-community==0.2.4
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
redis
pypdf==4.2.0
langchain==0.1.11
langchain==0.2.3
langchain-community==0.2.4
urllib3<2
aws-xray-sdk
aws-lambda-powertools
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ boto3>=1.34.29
botocore>=1.34.29
requests==2.32.0
requests-aws4auth==1.2.3
langchain==0.1.11
langchain==0.2.3
langchain-community==0.2.4
nltk==3.8.1
urllib3<2
aws-lambda-powertools
Expand Down
174 changes: 93 additions & 81 deletions lambda/opensearch-serverless-custom-resources/poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion layers/langchain-common-deps/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ boto3>=1.34.29
botocore>=1.34.29
requests==2.32.0
requests-aws4auth==1.2.3
langchain==0.1.11
langchain==0.2.3
opensearch-py==2.4.2
openai==1.10.0
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
boto3==1.34.47
requests==2.31.0
requests==2.32.0
trafilatura==1.8.1
4 changes: 3 additions & 1 deletion src/patterns/gen-ai/aws-web-crawler/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,9 @@ export class WebCrawlerAgentStack extends cdk.Stack {
new bedrock.AgentActionGroup(this, 'WebCrawlerActionGroup', {
actionGroupName: 'web-crawler',
description: 'Use this function to get content from a web page by HTTP or HTTPS URL',
actionGroupExecutor: crawler.lambdaCrawler,
actionGroupExecutor: {
lambda: crawler.lambdaCrawler
},
actionGroupState: 'ENABLED',
apiSchema: bedrock.ApiSchema.fromAsset(crawler.lambdaCrawlerApiSchemaPath),
}),
Expand Down

0 comments on commit 9a4025b

Please sign in to comment.