Skip to content

Commit d0aa6bc

Browse files
authored
Merge pull request #188 from aws-samples/bda_fix
2 parents 2083dcd + fc9870a commit d0aa6bc

File tree

6 files changed

+30
-17
lines changed

6 files changed

+30
-17
lines changed

samples/content-generation/.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
*.js
2+
!jest.config.js
3+
*.d.ts
4+
node_modules
5+
6+
# CDK asset staging directory
7+
.cdk.staging
8+
cdk.out

samples/document_explorer/.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
*.js
2+
!jest.config.js
3+
*.d.ts
4+
node_modules
5+
6+
# CDK asset staging directory
7+
.cdk.staging
8+
cdk.out

samples/image-description/.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
*.js
2+
!jest.config.js
3+
*.d.ts
4+
node_modules
5+
6+
# CDK asset staging directory
7+
.cdk.staging
8+
cdk.out
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
aws-cdk-lib==2.188.0
1+
aws-cdk-lib==2.189.0
22
aws_cdk.aws_lambda_python_alpha==2.188.0a0
33
constructs>=10.0.0,<11.0.0
4-
cdk_nag==2.35.62
4+
cdk_nag==2.35.79
55
aws_solutions_constructs.aws_eventbridge_lambda==2.81.0
6-
cdklabs.generative-ai-cdk-constructs==0.1.300
6+
cdklabs.generative-ai-cdk-constructs==0.1.306

samples/multimodal-rag/frontend/src/components/jobs/QATab.tsx

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,7 @@ interface QATabProps {
1010
}
1111

1212
const models = [
13-
{
14-
id: "anthropic.claude-3-5-sonnet-20241022-v2:0",
15-
name: "Claude 3 Sonnet (Oct 2024) - On Demand"
16-
},
17-
{
18-
id: "amazon.nova-pro-v1:0",
19-
name: "Amazon Nova Pro - On Demand"
20-
},
21-
{
22-
id: "anthropic.claude-3-7-sonnet-20250219-v1:0",
23-
name: "Claude 3.7 Sonnet (Feb 2025) - On Demand"
24-
},
13+
2514
{
2615
id: "us.anthropic.claude-3-5-sonnet-20241022-v2:0",
2716
name: "Claude 3 Sonnet (Oct 2024) - CRIS US"

samples/multimodal-rag/frontend/src/lib/api.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -449,8 +449,8 @@ export async function createProject(projectData: ProjectCreateRequest) {
449449
...defaultRestInput.options,
450450
body: {
451451
operation: projectData.operation,
452-
projectName: projectData.projectName,
453-
projectStage: projectData.projectStage,
452+
project_name: projectData.projectName,
453+
project_stage: projectData.projectStage,
454454
blueprint_arn: projectData.blueprint_arn,
455455
modality: projectData.modality,
456456
description: projectData.description,

0 commit comments

Comments
 (0)