Skip to content

Commit 745b8eb

Browse files
author
dinsajwa
committed
fix(multimodalrag): updated create project parameters and removed on demand fm
1 parent 2083dcd commit 745b8eb

File tree

2 files changed

+3
-14
lines changed

2 files changed

+3
-14
lines changed

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)