├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── agent ├── assets │ ├── AnyCompany-FAQs.csv │ └── Mortgage-Loan-Application.pdf ├── bot │ └── lex.zip └── lambda │ ├── agent-handler │ ├── agent_deployment_package.zip │ ├── chat.py │ ├── fsi_agent.py │ ├── lambda_function.py │ └── tools.py │ ├── data-loader │ ├── MOCK_DATA.json │ ├── index.py │ └── loader_deployment_package.zip │ └── lambda-layers │ ├── bedrock-langchain-pdfrw.zip │ ├── cfnresponse-layer.zip │ └── requirements.txt ├── cfn └── GenAI-FSI-Agent.yml ├── design ├── Kommunicate-chat-widget.png ├── Kommunicate-greeting.png ├── Kommunicate-lex.png ├── Kommunicate-plugin.svg ├── Kommunicate.png ├── agent.png ├── amplify-deployment.png ├── amplify-website.png ├── cfn-outputs-snippet-url.png ├── contextual.png ├── conversation-thread.svg ├── customer-data.png ├── general.png ├── lex-web-ui-iframe-snippet.png ├── lex-web-ui-snippet-frontend.png ├── mortgage-app.png ├── opinionated.png ├── pre-defined.png └── solution-overview.png ├── documentation ├── clean-up.md ├── deployment-guide.md └── testing-and-validation.md ├── frontend ├── about.html ├── contact.html ├── image │ ├── o.png │ └── oc.png └── index.html └── shell ├── create-stack.sh └── delete-stack.sh /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/README.md -------------------------------------------------------------------------------- /agent/assets/AnyCompany-FAQs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/agent/assets/AnyCompany-FAQs.csv -------------------------------------------------------------------------------- /agent/assets/Mortgage-Loan-Application.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/agent/assets/Mortgage-Loan-Application.pdf -------------------------------------------------------------------------------- /agent/bot/lex.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/agent/bot/lex.zip -------------------------------------------------------------------------------- /agent/lambda/agent-handler/agent_deployment_package.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/agent/lambda/agent-handler/agent_deployment_package.zip -------------------------------------------------------------------------------- /agent/lambda/agent-handler/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/agent/lambda/agent-handler/chat.py -------------------------------------------------------------------------------- /agent/lambda/agent-handler/fsi_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/agent/lambda/agent-handler/fsi_agent.py -------------------------------------------------------------------------------- /agent/lambda/agent-handler/lambda_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/agent/lambda/agent-handler/lambda_function.py -------------------------------------------------------------------------------- /agent/lambda/agent-handler/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/agent/lambda/agent-handler/tools.py -------------------------------------------------------------------------------- /agent/lambda/data-loader/MOCK_DATA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/agent/lambda/data-loader/MOCK_DATA.json -------------------------------------------------------------------------------- /agent/lambda/data-loader/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/agent/lambda/data-loader/index.py -------------------------------------------------------------------------------- /agent/lambda/data-loader/loader_deployment_package.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/agent/lambda/data-loader/loader_deployment_package.zip -------------------------------------------------------------------------------- /agent/lambda/lambda-layers/bedrock-langchain-pdfrw.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/agent/lambda/lambda-layers/bedrock-langchain-pdfrw.zip -------------------------------------------------------------------------------- /agent/lambda/lambda-layers/cfnresponse-layer.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/agent/lambda/lambda-layers/cfnresponse-layer.zip -------------------------------------------------------------------------------- /agent/lambda/lambda-layers/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/agent/lambda/lambda-layers/requirements.txt -------------------------------------------------------------------------------- /cfn/GenAI-FSI-Agent.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/cfn/GenAI-FSI-Agent.yml -------------------------------------------------------------------------------- /design/Kommunicate-chat-widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/design/Kommunicate-chat-widget.png -------------------------------------------------------------------------------- /design/Kommunicate-greeting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/design/Kommunicate-greeting.png -------------------------------------------------------------------------------- /design/Kommunicate-lex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/design/Kommunicate-lex.png -------------------------------------------------------------------------------- /design/Kommunicate-plugin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/design/Kommunicate-plugin.svg -------------------------------------------------------------------------------- /design/Kommunicate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/design/Kommunicate.png -------------------------------------------------------------------------------- /design/agent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/design/agent.png -------------------------------------------------------------------------------- /design/amplify-deployment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/design/amplify-deployment.png -------------------------------------------------------------------------------- /design/amplify-website.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/design/amplify-website.png -------------------------------------------------------------------------------- /design/cfn-outputs-snippet-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/design/cfn-outputs-snippet-url.png -------------------------------------------------------------------------------- /design/contextual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/design/contextual.png -------------------------------------------------------------------------------- /design/conversation-thread.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/design/conversation-thread.svg -------------------------------------------------------------------------------- /design/customer-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/design/customer-data.png -------------------------------------------------------------------------------- /design/general.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/design/general.png -------------------------------------------------------------------------------- /design/lex-web-ui-iframe-snippet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/design/lex-web-ui-iframe-snippet.png -------------------------------------------------------------------------------- /design/lex-web-ui-snippet-frontend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/design/lex-web-ui-snippet-frontend.png -------------------------------------------------------------------------------- /design/mortgage-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/design/mortgage-app.png -------------------------------------------------------------------------------- /design/opinionated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/design/opinionated.png -------------------------------------------------------------------------------- /design/pre-defined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/design/pre-defined.png -------------------------------------------------------------------------------- /design/solution-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/design/solution-overview.png -------------------------------------------------------------------------------- /documentation/clean-up.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/documentation/clean-up.md -------------------------------------------------------------------------------- /documentation/deployment-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/documentation/deployment-guide.md -------------------------------------------------------------------------------- /documentation/testing-and-validation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/documentation/testing-and-validation.md -------------------------------------------------------------------------------- /frontend/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/frontend/about.html -------------------------------------------------------------------------------- /frontend/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/frontend/contact.html -------------------------------------------------------------------------------- /frontend/image/o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/frontend/image/o.png -------------------------------------------------------------------------------- /frontend/image/oc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/frontend/image/oc.png -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/frontend/index.html -------------------------------------------------------------------------------- /shell/create-stack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/shell/create-stack.sh -------------------------------------------------------------------------------- /shell/delete-stack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/generative-ai-amazon-bedrock-langchain-agent-example/HEAD/shell/delete-stack.sh --------------------------------------------------------------------------------