Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions samples/content-generation/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
*.js
!jest.config.js
*.d.ts
node_modules

# CDK asset staging directory
.cdk.staging
cdk.out
8 changes: 8 additions & 0 deletions samples/document_explorer/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
*.js
!jest.config.js
*.d.ts
node_modules

# CDK asset staging directory
.cdk.staging
cdk.out
8 changes: 8 additions & 0 deletions samples/image-description/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
*.js
!jest.config.js
*.d.ts
node_modules

# CDK asset staging directory
.cdk.staging
cdk.out
6 changes: 3 additions & 3 deletions samples/multimodal-rag/backend/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
aws-cdk-lib==2.188.0
aws-cdk-lib==2.189.0
aws_cdk.aws_lambda_python_alpha==2.188.0a0
constructs>=10.0.0,<11.0.0
cdk_nag==2.35.62
cdk_nag==2.35.79
aws_solutions_constructs.aws_eventbridge_lambda==2.81.0
cdklabs.generative-ai-cdk-constructs==0.1.300
cdklabs.generative-ai-cdk-constructs==0.1.306
13 changes: 1 addition & 12 deletions samples/multimodal-rag/frontend/src/components/jobs/QATab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,7 @@ interface QATabProps {
}

const models = [
{
id: "anthropic.claude-3-5-sonnet-20241022-v2:0",
name: "Claude 3 Sonnet (Oct 2024) - On Demand"
},
{
id: "amazon.nova-pro-v1:0",
name: "Amazon Nova Pro - On Demand"
},
{
id: "anthropic.claude-3-7-sonnet-20250219-v1:0",
name: "Claude 3.7 Sonnet (Feb 2025) - On Demand"
},

{
id: "us.anthropic.claude-3-5-sonnet-20241022-v2:0",
name: "Claude 3 Sonnet (Oct 2024) - CRIS US"
Expand Down
4 changes: 2 additions & 2 deletions samples/multimodal-rag/frontend/src/lib/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -449,8 +449,8 @@ export async function createProject(projectData: ProjectCreateRequest) {
...defaultRestInput.options,
body: {
operation: projectData.operation,
projectName: projectData.projectName,
projectStage: projectData.projectStage,
project_name: projectData.projectName,
project_stage: projectData.projectStage,
blueprint_arn: projectData.blueprint_arn,
modality: projectData.modality,
description: projectData.description,
Expand Down