在对话式体验中探索生成式 AI:Amazon Lex、Langchain 和 Amazon SageMaker Jumpstart 简介

Amazon Lex
生成式人工智能
Amazon SageMaker Jumpstart
0
0
在当今快节奏的世界里,客户希望企业提供快速高效的服务。但是,当咨询量超过了处理这些咨询所需的人力资源时,提供优质客户服务就会面临巨大挑战。然而,借助由大型语言模型(LLM)支持的生成式 AI 的进步,企业可以应对这一挑战,同时提供个性化和高效的客户服务。 生成式 AI 聊天机器人因其模仿人类智力的能力而声名鹊起。不过,与面向任务的机器人不同,这些机器人使用 LLM 进行文本分析和内容生成。LLM 基于 Transformer 架构,这是 2017 年 6 月推出的一种深度学习神经网络,可以在海量未标记的文本语料库上进行训练。这种方法创造了一种更像人类的对话体验,并且可以容纳多个主题。 截至本文撰写之时,各种规模的公司都想使用这项技术,但在如何开始使用方面需要帮助。如果您想开始使用生成式 AI 以及在对话式人工智能中使用 LLM,那么这篇文章就是为您准备的。我们提供了一个示例项目,用于快速部署使用预训练的开源 LLM 的 [Amazon Lex](https://aws.amazon.com/cn/lex/?trk=cndc-detail) 机器人。该代码还包括实现自定义内存管理器的起点。这种机制可以让 LLM 回想之前的互动,以保持对话的语境和节奏。最后,有必要强调对提示和 LLM 随机性和确定性参数进行微调实验以获得一致结果的重要性。 ### **解决方案概览** 该解决方案将 [Amazon Lex](https://aws.amazon.com/cn/lex/?trk=cndc-detail) 机器人与 [Amazon SageMaker JumpStart](https://aws.amazon.com/cn/sagemaker/jumpstart/?trk=cndc-detail) 的流行开源 LLM 集成在一起,可通过 [Amazon SageMaker](https://aws.amazon.com/cn/sagemaker/?trk=cndc-detail) 端点进行访问。我们还使用 LangChain,这是一种流行的框架,可简化基于 LLM 的应用程序。最后,我们使用 QnABot 为聊天机器人提供用户界面。 ![image.png](https://dev-media.amazoncloud.cn/a2a4dda8472c494bbda6b0c7a3fd76d5_image.png "image.png") 首先,我们对上图中的每个组件进行描述: * **Amazon JumpStart** 为各种问题类型提供预训练的开源模型。这使您能够快速开始[机器学习](https://aws.amazon.com/cn/machine-learning/?trk=cndc-detail)(ML)。此组件包括 FLAN-T5-XL 模型,这是一种部署在深度学习容器中的 LLM。此组件在包括文本生成在内的各种自然语言处理(NLP)任务中表现出色。 * **[Amazon SageMaker](https://aws.amazon.com/cn/sagemaker/?trk=cndc-detail)** 实时推理端点支持快速、可扩展地部署[机器学习](https://aws.amazon.com/cn/machine-learning/?trk=cndc-detail)模型以预测事件。由于能够与 Lambda 函数集成,此端点支持构建自定义应用程序。 * **Amazon Lambda** 函数使用来自 [Amazon Lex](https://aws.amazon.com/cn/lex/?trk=cndc-detail) 机器人或 QnABot的请求来准备有效负载,以便使用 LangChain 调用 SageMaker 端点。LangChain 是一种框架,开发人员可以使用此框架创建由 LLM 支持的应用程序。 * **[Amazon Lex](https://aws.amazon.com/cn/lex/?trk=cndc-detail) V2** 机器人内置了 `AMAZON.FallbackIntent` 意图类型。当用户的输入与机器人中的任何意图都不匹配时,就会触发此意图类型。 * **QnABot** 是一种开源亚马逊云科技解决方案,旨在为 [Amazon Lex](https://aws.amazon.com/cn/lex/?trk=cndc-detail) 机器人提供用户界面。我们为 CustomNoMatches项配置了 Lambda hook 函数,当 QnABot 找不到答案时,此解决方案就会触发 Lambda 函数。我们假定您已经部署了此解决方案,并在以下各节中包含了配置步骤。 下面的序列图对此解决方案进行了详细描述。 ![image.png](https://dev-media.amazoncloud.cn/bdf168b412eb416dbd3b3463894046d9_image.png "image.png") ### **解决方案执行的主要任务** 在本节中,我们将介绍在解决方案中执行的主要任务。此解决方案的整个项目源代码可在此 [GitHub 存储库](https://github.com/aws-samples/conversational-ai-llms-with-amazon-lex-and-sagemaker?trk=cndc-detail)中查阅: #### **处理聊天机器人回退** Lambda 函数通过 [Amazon Lex](https://aws.amazon.com/cn/lex/?trk=cndc-detail) V2 中的 `AMAZON.FallbackIntent` 和 QnABot 中的 `CustomNoMatches` 项处理“don’t know”答案。触发后,此函数会查看会话请求和回退意图。如果有匹配项,此函数会将请求移交给 Lex V2 调度程序;否则,QnABot 调度程序将使用该请求。请参阅以下代码: ```js def dispatch_lexv2(request): """Summary Args: request (dict): Lambda event containing a user's input chat message and context (historical conversation) Uses the LexV2 sessions API to manage past inputs https://docs.aws.amazon.com/lexv2/latest/dg/using-sessions.html Returns: dict: Description """ lexv2_dispatcher = LexV2SMLangchainDispatcher(request) return lexv2_dispatcher.dispatch_intent() def dispatch_QnABot(request): """Summary Args: request (dict): Lambda event containing a user's input chat message and context (historical conversation) Returns: dict: Dict formatted as documented to be a lambda hook for a "don't know" answer for the QnABot on AWS Solution see https://docs.aws.amazon.com/solutions/latest/QnABot-on-aws/specifying-lambda-hook-functions.html """ request['res']['message'] = "Hi! This is your Custom Python Hook speaking!" qna_intent_dispatcher = QnASMLangchainDispatcher(request) return qna_intent_dispatcher.dispatch_intent() def lambda_handler(event, context): print(event) if 'sessionState' in event: if 'intent' in event['sessionState']: if 'name' in event['sessionState']['intent']: if event['sessionState']['intent']['name'] == 'FallbackIntent': return dispatch_lexv2(event) else: return dispatch_QnABot(event) ``` #### **为 LLM 提供内存** 为了在多轮对话中保留 LLM 内存,Lambda 函数包含一个 LangChain 自定义内存类机制,该机制使用 [Amazon Lex](https://aws.amazon.com/cn/lex/?trk=cndc-detail) V2 Sessions API 来跟踪正在进行的多轮对话消息的会话属性,并通过之前的交互为对话模型提供上下文。请参阅以下代码: ```js class LexConversationalMemory(BaseMemory, BaseModel): """Langchain Custom Memory class that uses Lex Conversation history Attributes: history (dict): Dict storing conversation history that acts as the Langchain memory lex_conv_context (str): LexV2 sessions API that serves as input for convo history Memory is loaded from here memory_key (str): key to for chat history Langchain memory variable - "history" """ history = {} memory_key = "chat_history" #pass into prompt with key lex_conv_context = "" def clear(self): """Clear chat history """ self.history = {} @property def memory_variables(self) -> List[str]: """Load memory variables Returns: List[str]: List of keys containing Langchain memory """ return [self.memory_key] def load_memory_variables(self, inputs: Dict[str, Any]) -> Dict[str, str]: """Load memory from lex into current Langchain session memory Args: inputs (Dict[str, Any]): User input for current Langchain session Returns: Dict[str, str]: Langchain memory object """ input_text = inputs[list(inputs.keys())[0]] ccontext = json.loads(self.lex_conv_context) memory = { self.memory_key: ccontext[self.memory_key] + input_text + "\\nAI: ", } return memory ``` 下面是我们为在 LangChain ConversationChain 中引入自定义内存类而创建的示例代码: ```js # Create a conversation chain using the prompt, # llm hosted in Sagemaker, and custom memory class self.chain = ConversationChain( llm=sm_flant5_llm, prompt=prompt, memory=LexConversationalMemory(lex_conv_context=lex_conv_history), verbose=True ) ``` #### **提示定义** LLM 的提示是为生成的响应定下基调的问题或陈述。提示作为一种情境形式,有助于引导模型生成相关的响应。请参阅以下代码: ```js # define prompt prompt_template = """The following is a friendly conversation between a human and an AI.The AI is talkative and provides lots of specific details from its context.If the AI does not know the answer to a question, it truthfully says it does not know.You are provided with information about entities the Human mentions, if relevant. Chat History: {chat_history} Conversation: Human: {input} AI:""" ``` #### **使用 Amazon Lex V2 会话来支持 LLM 内存** 当用户与机器人互动时,[Amazon Lex](https://aws.amazon.com/cn/lex/?trk=cndc-detail) V2 会启动会话。除非手动停止或超时,否则会话会随着时间的推移而持续存在。会话存储元数据和应用程序特定的数据,即会话属性。当 Lambda 函数添加或更改会话属性时,[Amazon Lex](https://aws.amazon.com/cn/lex/?trk=cndc-detail) 会更新客户端应用程序。QnABot 包含一个在 [Amazon Lex](https://aws.amazon.com/cn/lex/?trk=cndc-detail) V2 基础上设置和获取会话属性的接口。 在我们的代码中,我们使用这种机制在 LangChain 中构建了一个自定义内存类,以跟踪对话历史记录并使 LLM 能够调用短期和长期的互动。请参阅以下代码: ```js class LexV2SMLangchainDispatcher(): def __init__(self, intent_request): # See lex bot input format to lambda https://docs.aws.amazon.com/lex/latest/dg/lambda-input-response-format.html self.intent_request = intent_request self.localeId = self.intent_request['bot']['localeId'] self.input_transcript = self.intent_request['inputTranscript'] # user input self.session_attributes = utils.get_session_attributes( self.intent_request) self.fulfillment_state = "Fulfilled" self.text = "" # response from endpoint self.message = {'contentType': 'PlainText','content': self.text} class QnABotSMLangchainDispatcher(): def __init__(self, intent_request): # QnABot Session attributes self.intent_request = intent_request self.input_transcript = self.intent_request['req']['question'] self.intent_name = self.intent_request['req']['intentname'] self.session_attributes = self.intent_request['req']['session'] ``` ### **先决条件** 要开始部署,您需要满足以下先决条件: * 通过可以启动 Amazon CloudFormation 堆栈的用户访问亚马逊云科技管理控制台 * 熟悉 Lambda 和 [Amazon Lex](https://aws.amazon.com/cn/lex/?trk=cndc-detail) 控制台的导航功能 ### **部署解决方案** 要部署解决方案,请继续执行以下步骤: 1. 选择启动堆栈,在 us-east-1 区域启动解决方案: https://us-east-1.console.aws.amazon.com/cloudformation/home?region=us-east-1#/stacks/quickcreate?templateURL=https\://s3.us-east-1.amazonaws.com/aws-blogs-artifacts-public/artifacts/ML-12016/v1/stacks/SMJumpstartFlanT5-llm-main.yaml\&stackName=SagemakerFlanLLMStack?trk=cndc-detail 2. 对于**堆栈名称**,输入唯一的堆栈名称。 3. 对于 **HFModel**,我们使用 JumpStart 上提供的 `Hugging Face Flan-T5-XL` 模型。 4. 对于 **HFTask**,输入 `text2text` 。 5. 保持 **S3BucketName** 不变。 这些信息用于查找部署解决方案所需的 [Amazon Simple Storage Service](https://aws.amazon.com/cn/s3/?trk=cndc-detail)([Amazon S3](https://aws.amazon.com/cn/s3/?trk=cndc-detail))资产,并且可能会随着这篇文章的更新发布而发生变化。 ![image.png](https://dev-media.amazoncloud.cn/6ce9e7449fa544f68335ab931220da37_image.png "image.png") 6. 确认能力。 7. 单击 **Create stack(创建堆栈)**。 应该有四个成功创建的堆栈。 ![image.png](https://dev-media.amazoncloud.cn/e30f82ec724144439777c425a5f6ee1a_image.png "image.png") ### **配置 Amazon Lex V2 机器人** 对于 [Amazon Lex](https://aws.amazon.com/cn/lex/?trk=cndc-detail) V2 机器人,无需配置任何内容。我们的 CloudFormation 模板已经完成了繁重的工作。 ### **配置 QnABot** 我们假设您的环境中已经部署了现有的 QnABot。但如果您需要帮助,请按照这些[说明](https://docs.aws.amazon.com/solutions/latest/qnabot-on-aws/aws-cloudformation-template.html?trk=cndc-detail)进行部署。 1. 在 Amazon CloudFormation 控制台上,导航到您部署的主堆栈。 2. 在**输出**选项卡上,记下 `LambdaHookFunctionArn` ,因为稍后需要将此项插入 QnABot 中。 ![image.png](https://dev-media.amazoncloud.cn/f024f15bd7f04a519c2dfabfba126e0f_image.png "image.png") 3. 以管理员身份登录 **QnABot Designer 用户界面(UI)。** 4. 在**问题用户界面**中,添加一个新问题。 ![image.png](https://dev-media.amazoncloud.cn/e299bc908a8a4d40b63e80beff58e6fd_image.png "image.png") 5. 输入以下值: * **ID** –  `CustomNoMatches`  * **问题** –  `no_hits`  * **答案** –“don’t know”的任何默认答案 6. 选择**高级**,然后转到 **Lambda Hook** 部分。 7. 输入您之前记下的 Lambda 函数的 Amazon 资源名称(ARN)。 ![image.png](https://dev-media.amazoncloud.cn/4c8699fbd0314715a12f3823be50f8f8_image.png "image.png") 8. 向下滚动到该部分的底部,然后选择**创建**。 您会看到一个显示成功消息的窗口。 ![image.png](https://dev-media.amazoncloud.cn/a4d5559605be40618fa077b1a6063f46_image.png "image.png") 您的问题现已显示在**问题**页面上。 ![image.png](https://dev-media.amazoncloud.cn/0f09bf7f88bb4aed92815a3606150406_image.png "image.png") #### **测试解决方案** 让我们继续测试解决方案。首先,值得一提的是,我们部署的是 JumpStart 提供的 FLAN-T5-XL 模型,没有进行任何微调。这可能会有一些不可预测性,导致响应略有不同。 #### **使用 Amazon Lex V2 机器人进行测试** 本节有助于您测试 [Amazon Lex](https://aws.amazon.com/cn/lex/?trk=cndc-detail) V2 机器人与 Lambda 函数的集成,该函数调用部署在 SageMaker 端点中的 LLM。 1. 在 [Amazon Lex](https://aws.amazon.com/cn/lex/?trk=cndc-detail) 控制台上,导航到名为 `Sagemaker-Jumpstart-Flan-LLM-Fallback-Bot` 的机器人。 此机器人已配置为在没有其他意图匹配时调用 Lambda 函数,该函数调用托管 LLM 的 SageMaker 端点作为回退意图。 2. 在导航窗格中选择**意图**。 ![image.png](https://dev-media.amazoncloud.cn/4452b3c2129643dcb76074470e6924d5_image.png "image.png") 右上方显示“英语(美国)尚未生成更改”消息。 3. 选择构建。 4. 等待**构建**完成。 最后,您会看到一条成功消息,如以下屏幕截图所示。 ![image.png](https://dev-media.amazoncloud.cn/11c926b3613c408d888df3aaf2b08e68_image.png "image.png") 选择**测试**。此时会出现一个聊天窗口,您可以在其中与模型进行交互。 ![image.png](https://dev-media.amazoncloud.cn/a417d3ed69f84021999379d7b230b43e_image.png "image.png") 我们建议探索 [Amazon Lex](https://aws.amazon.com/cn/lex/?trk=cndc-detail) 机器人与 [Amazon Connect](https://aws.amazon.com/cn/connect/?trk=cndc-detail) 之间的内置集成。此外,还有消息平台(Facebook、Slack、Twilio SMS)或使用 [Amazon Chime](https://aws.amazon.com/cn/chime/?trk=cndc-detail) SDK 和 Genesys Cloud 的第三方联络中心等。 ### **使用 QnABot 实例进行测试** 本节测试亚马逊云科技上的 QnABot 与 Lambda 函数的集成,该函数调用部署在 SageMaker 端点中的 LLM。 1. 打开左上角的工具菜单。 ![image.png](https://dev-media.amazoncloud.cn/4e53aebc9fc345f296c9caaccbda048b_image.png "image.png") 2. 选择 **QnABot 客户端**。 ![image.png](https://dev-media.amazoncloud.cn/3991cd26036441b6ac9510cb62684ea7_image.png "image.png") 3. 选择以**管理员身份登录**。 ![image.png](https://dev-media.amazoncloud.cn/9c73f9894e074d72a8c9ff262828cea5_image.png "image.png") 4. 在用户界面中输入任何问题。 5. 评估响应。 ![image.png](https://dev-media.amazoncloud.cn/7f4019ee71cf43428b7282fb8c9bfcc7_image.png "image.png") ### **清理** 为避免将来产生费用,请按照以下步骤删除我们的解决方案创建的资源: 1. 在 Amazon CloudFormation 控制台上,选择名为 `SagemakerFlanLLMStack` 的堆栈(或您为堆栈设置的自定义名称)。 2. 选择 **Delete**(删除)。 3. 如果您为测试目的部署了 QnABot 实例,请选择 QnABot 堆栈。 4. 选择 **Delete**(删除)。 ### **总结** 在这篇文章中,我们探讨了在面向任务的机器人中添加开放域功能的问题,该机器人会将用户请求路由到开源的大型语言模型。 我们鼓励您: - **将对话历史记录保存到外部持久机制中**。例如,您可以将对话历史记录保存到 [Amazon DynamoDB](https://aws.amazon.com/cn/dynamodb/?trk=cndc-detail) 或 S3 存储桶,然后在 Lambda hook 函数中检索记录。这样,您就无需依赖 [Amazon Lex](https://aws.amazon.com/cn/lex/?trk=cndc-detail) 提供的内部非持久会话属性管理。 - **尝试摘要** – 在多轮对话中,生成摘要很有帮助,您可以在提示中使用摘要来添加上下文并限制对话历史记录的使用。这有助于削减机器人会话大小并保持较低的 Lambda 函数内存消耗。 - **尝试不同的提示** – 修改原始的提示描述,以符合您的实验目的。 - **调整语言模型以获得最佳结果** – 您可以根据自己的应用程序,通过微调随机性( `temperature` )和确定性( `top_p` )等高级 LLM 参数来实现这一目标。我们使用带样本值的预训练模型演示了一个集成示例,但您也可以根据自己的使用案例调整样本值。 在下一篇文章中,我们计划协助您了解如何使用自己的数据微调预训练的 LLM 支持的聊天机器人。 ### **资源和参考资料** - [本文配套源代码](https://github.com/aws-samples/conversational-ai-llms-with-amazon-lex-and-sagemaker?trk=cndc-detail) - [Amazon Lex V2 开发指南](https://docs.aws.amazon.com/lexv2/latest/dg/what-is.html?trk=cndc-detail) - [亚马逊云科技解决方案库:亚马逊云科技上的 QnABot](https://aws.amazon.com/solutions/implementations/qnabot-on-aws/?trk=cndc-detail) - [使用 FLAN T5 模型生成 Text2Text](https://github.com/aws/amazon-sagemaker-examples/blob/main/introduction_to_amazon_algorithms/jumpstart-foundation-models/text2text-generation-flan-t5.ipynb?trk=cndc-detail) - [LangChain – 使用 LLM 构建应用程序](https://github.com/hwchase17/langchain?trk=cndc-detail) - [使用 Jumpstart 根基模型的 Amazon SageMaker 示例](https://github.com/aws/amazon-sagemaker-examples/tree/58a3ffa17601bc5d4e8dd3a6edf89ede54b535d3/introduction_to_amazon_algorithms/jumpstart-foundation-models?trk=cndc-detail) - [Amazon BedRock – 使用根基模型构建和扩展生成式人工智能应用程序的最简单方法](https://aws.amazon.com/bedrock/?trk=cndc-detail) - [使用 Amazon Kendra、LangChain 和大型语言模型根据企业数据快速构建高精度的生成式人工智能应用程序](https://aws.amazon.com/blogs/machine-learning/quickly-build-high-accuracy-generative-ai-applications-on-enterprise-data-using-amazon-kendra-langchain-and-large-language-models/?trk=cndc-detail) Original URL: https://aws.amazon.com/blogs/machine-learning/exploring-generative-ai-in-conversational-experiences-an-introduction-with-amazon-lex-langchain-and-sagemaker-jumpstart/?trk=cndc-detail ![开发者尾巴.gif](https://dev-media.amazoncloud.cn/f25d7252802141c0b583911ceb87e3d3_%E5%BC%80%E5%8F%91%E8%80%85%E5%B0%BE%E5%B7%B4.gif "开发者尾巴.gif")
目录
亚马逊云科技解决方案 基于行业客户应用场景及技术领域的解决方案
联系亚马逊云科技专家
亚马逊云科技解决方案
基于行业客户应用场景及技术领域的解决方案
联系专家
0
目录
关闭