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
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@ const AIAgentConnectorImport = ({
fields.reduce((acc, field) => ({ ...acc, [field.name]: '' }), {})
);

const goToDocs = () => {
window.open(docsUrl);
};

const validateForm = () => {
for (const field of fields) {
Expand Down Expand Up @@ -79,6 +76,10 @@ const AIAgentConnectorImport = ({
return fields.every(field => formData[field.name]?.length > 0);
};

const goToDocs = () => {
window.open(docsUrl);
};

const updateField = (fieldName, value) => {
setFormData(prev => ({ ...prev, [fieldName]: value }));
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ function NewConnection() {
setTasksCompleted(2)
}


const openDocs = (docsUrl) => {
if(docsUrl && docsUrl.length > 0){
window.open(docsUrl)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -357,21 +357,12 @@ const customAIObj = {
const awsBedrockObj = {
icon: '/public/aws_bedrock.svg',
label: "AWS Bedrock",
text: "Import AWS Bedrock AI agents seamlessly into AKTO.",
docsUrl: 'https://docs.akto.io/ai-agent-security',
text: "Import your AWS Bedrock AI agents, seamlessly into AKTO.",
docsUrl: 'https://docs.akto.io/aws-bedrock-agents',
key: "AWS_BEDROCK",
component : <AiAgentScan
description="Import your AWS Bedrock AI agents, seamlessly in AKTO."
defaultRequestBody={{
"modelId": "anthropic.claude-v2",
"contentType": "application/json",
"accept": "application/json",
"body": {
"prompt": "\n\nHuman: Why is the sky blue?\n\nAssistant:",
"max_tokens_to_sample": 300
}
}}
docsLink='https://docs.akto.io/ai-agent-security'
component : <BannerComponent
content="Import your AWS Bedrock AI agents, seamlessly in AKTO."
docsUrl='https://docs.akto.io/aws-bedrock-agents'
/>
}

Expand Down Expand Up @@ -1528,7 +1519,8 @@ const quickStartFunc = {
]

const aiAgentConnectors = [
awsBedrockObj, azureAIFoundryObj, databricksObj, googleVertexAIObj, ibmWatsonxObj, customAgentObj, agenticShieldObj
awsBedrockObj, azureAIFoundryObj, databricksObj, googleVertexAIObj, ibmWatsonxObj, customAgentObj, agenticShieldObj,
n8nImportObj, langchainImportObj, copilotStudioImportObj
]

// MCP Scan
Expand Down Expand Up @@ -1617,7 +1609,8 @@ const quickStartFunc = {
if(isGenAISecurityCategory() || isAgenticSecurityCategory()){
connectorsList = connectorsList.concat([
geminiObj, openAIObj, claudeObj, deepseekObj, llamaObj, grokObj, customAIObj,
awsBedrockObj, azureAIFoundryObj, databricksObj, googleVertexAIObj, ibmWatsonxObj, customAgentObj, agenticShieldObj
awsBedrockObj, azureAIFoundryObj, databricksObj, googleVertexAIObj, ibmWatsonxObj, customAgentObj, agenticShieldObj,
n8nImportObj, langchainImportObj, copilotStudioImportObj
])
}

Expand Down
Loading