├── .eslintignore ├── .eslintrc ├── .gitallowed ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ ├── documentation_issue.md │ └── feature_request.md └── workflows │ ├── ci.yml │ └── docbuild.yml ├── .gitignore ├── .npmignore ├── .prettierrc ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── bin └── main.ts ├── cdk.json ├── docs ├── UserGuide.md ├── about │ └── about-agents.md ├── getting-started │ ├── installation.md │ ├── learn-cdk.md │ └── prerequisite.md ├── index.md ├── prompt-library │ └── prompt-library.md ├── support │ └── support.md ├── using-constructs │ ├── features.md │ ├── getting-started-with-constructs.md │ ├── helper-constructs.md │ ├── test-deploy.md │ └── usage.md └── using-templates │ ├── ag-advance-prompts-parser.md │ ├── ag-classification.md │ ├── ag-function-definition.md │ ├── ag-kb-guardrails.md │ ├── ag-roc.md │ └── getting-started-with-templates.md ├── jest.config.ts ├── lib ├── constructs │ ├── AgentActionGroup.ts │ ├── AgentDefinitionBuilder.ts │ ├── AgentKnowledgeBase.ts │ ├── BedrockAgentBlueprintsConstruct.ts │ └── BedrockGuardrailsBuilder.ts ├── index.ts └── utilities │ ├── BedrockKnowledgeBaseModels.ts │ ├── OpenSearchServerlessHelper.ts │ ├── constants.ts │ ├── lambdaFunctions │ ├── aoss-index-creation.ts │ ├── data-source-sync.ts │ └── permission-validation.ts │ └── utils.ts ├── mkdocs.yml ├── package.json ├── test ├── BedrockAgentBlueprintsConstruct.test.ts ├── constructs │ ├── AgentDefinitionBuilder.test.ts │ ├── AgentKnowledgeBase.test.ts │ ├── BedrockGuardrailsBuilder.test.ts │ └── utilities │ │ └── OpenSearchServerlessHelper.test.ts ├── setup.ts └── utils │ ├── constants.ts │ └── openAPISchema.json └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitallowed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/.gitallowed -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation_issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/.github/ISSUE_TEMPLATE/documentation_issue.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/docbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/.github/workflows/docbuild.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # CHANGELOG 2 | 3 | ## 1.0.0 - 2024-08-01 4 | 5 | * Initial release of `agents-for-amazaon-bedrock-blueprints`. -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/README.md -------------------------------------------------------------------------------- /bin/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/bin/main.ts -------------------------------------------------------------------------------- /cdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/cdk.json -------------------------------------------------------------------------------- /docs/UserGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/docs/UserGuide.md -------------------------------------------------------------------------------- /docs/about/about-agents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/docs/about/about-agents.md -------------------------------------------------------------------------------- /docs/getting-started/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/docs/getting-started/installation.md -------------------------------------------------------------------------------- /docs/getting-started/learn-cdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/docs/getting-started/learn-cdk.md -------------------------------------------------------------------------------- /docs/getting-started/prerequisite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/docs/getting-started/prerequisite.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/prompt-library/prompt-library.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/docs/prompt-library/prompt-library.md -------------------------------------------------------------------------------- /docs/support/support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/docs/support/support.md -------------------------------------------------------------------------------- /docs/using-constructs/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/docs/using-constructs/features.md -------------------------------------------------------------------------------- /docs/using-constructs/getting-started-with-constructs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/docs/using-constructs/getting-started-with-constructs.md -------------------------------------------------------------------------------- /docs/using-constructs/helper-constructs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/docs/using-constructs/helper-constructs.md -------------------------------------------------------------------------------- /docs/using-constructs/test-deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/docs/using-constructs/test-deploy.md -------------------------------------------------------------------------------- /docs/using-constructs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/docs/using-constructs/usage.md -------------------------------------------------------------------------------- /docs/using-templates/ag-advance-prompts-parser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/docs/using-templates/ag-advance-prompts-parser.md -------------------------------------------------------------------------------- /docs/using-templates/ag-classification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/docs/using-templates/ag-classification.md -------------------------------------------------------------------------------- /docs/using-templates/ag-function-definition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/docs/using-templates/ag-function-definition.md -------------------------------------------------------------------------------- /docs/using-templates/ag-kb-guardrails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/docs/using-templates/ag-kb-guardrails.md -------------------------------------------------------------------------------- /docs/using-templates/ag-roc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/docs/using-templates/ag-roc.md -------------------------------------------------------------------------------- /docs/using-templates/getting-started-with-templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/docs/using-templates/getting-started-with-templates.md -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/jest.config.ts -------------------------------------------------------------------------------- /lib/constructs/AgentActionGroup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/lib/constructs/AgentActionGroup.ts -------------------------------------------------------------------------------- /lib/constructs/AgentDefinitionBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/lib/constructs/AgentDefinitionBuilder.ts -------------------------------------------------------------------------------- /lib/constructs/AgentKnowledgeBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/lib/constructs/AgentKnowledgeBase.ts -------------------------------------------------------------------------------- /lib/constructs/BedrockAgentBlueprintsConstruct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/lib/constructs/BedrockAgentBlueprintsConstruct.ts -------------------------------------------------------------------------------- /lib/constructs/BedrockGuardrailsBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/lib/constructs/BedrockGuardrailsBuilder.ts -------------------------------------------------------------------------------- /lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/lib/index.ts -------------------------------------------------------------------------------- /lib/utilities/BedrockKnowledgeBaseModels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/lib/utilities/BedrockKnowledgeBaseModels.ts -------------------------------------------------------------------------------- /lib/utilities/OpenSearchServerlessHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/lib/utilities/OpenSearchServerlessHelper.ts -------------------------------------------------------------------------------- /lib/utilities/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/lib/utilities/constants.ts -------------------------------------------------------------------------------- /lib/utilities/lambdaFunctions/aoss-index-creation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/lib/utilities/lambdaFunctions/aoss-index-creation.ts -------------------------------------------------------------------------------- /lib/utilities/lambdaFunctions/data-source-sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/lib/utilities/lambdaFunctions/data-source-sync.ts -------------------------------------------------------------------------------- /lib/utilities/lambdaFunctions/permission-validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/lib/utilities/lambdaFunctions/permission-validation.ts -------------------------------------------------------------------------------- /lib/utilities/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/lib/utilities/utils.ts -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/package.json -------------------------------------------------------------------------------- /test/BedrockAgentBlueprintsConstruct.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/test/BedrockAgentBlueprintsConstruct.test.ts -------------------------------------------------------------------------------- /test/constructs/AgentDefinitionBuilder.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/test/constructs/AgentDefinitionBuilder.test.ts -------------------------------------------------------------------------------- /test/constructs/AgentKnowledgeBase.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/test/constructs/AgentKnowledgeBase.test.ts -------------------------------------------------------------------------------- /test/constructs/BedrockGuardrailsBuilder.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/test/constructs/BedrockGuardrailsBuilder.test.ts -------------------------------------------------------------------------------- /test/constructs/utilities/OpenSearchServerlessHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/test/constructs/utilities/OpenSearchServerlessHelper.test.ts -------------------------------------------------------------------------------- /test/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/test/setup.ts -------------------------------------------------------------------------------- /test/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/test/utils/constants.ts -------------------------------------------------------------------------------- /test/utils/openAPISchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/test/utils/openAPISchema.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/agents-for-amazon-bedrock-blueprints/HEAD/tsconfig.json --------------------------------------------------------------------------------