🚀 原文地址:https://rasa.com/docs/rasa/forms

最常见的对话模式之一是从用户那里收集几条信息从而完成某个事项,例如预定餐厅、调用 API、搜索数据库等,称之为槽填充

1. 用法

要在 Rasa 中使用表单,我们需要确保将 RulePolicy 添加到策略配置中。例如:

  1. policies:
  2. - name: RulePolicy

1.1 定义表单

通过在域文件中 forms 部分添加表单,表单名称也是在故事或规则中用于处理表单执行的操作。我们需要为必需的 required_slots 建指定插槽名称。以下示例表单 restaurant_form 将填充 cuisinenum_people 插槽。

  1. entities:
  2. - cuisine
  3. - number
  4. slots:
  5. cuisine:
  6. type: text
  7. mappings:
  8. - type: from_entity
  9. entity: cuisine
  10. num_people:
  11. type: any
  12. mappings:
  13. - type: from_entity
  14. entity: number
  15. forms:
  16. restaurant_form:
  17. required_slots:
  18. - cuisine
  19. - num_people

我们可以在 ignore_intents 键下为整个表单定义要忽略的意图列表,在 ignore_intents 下列出的意图将被添加到每个插槽映射的 not_intent 键中。

例如,如果我们不希望在意图为 chitchat 时,表单的任何插槽被填充,那么需要定义以下内容(在表单名称下的 ignore_intents 键):

  1. entities:
  2. - cuisine
  3. - number
  4. slots:
  5. cuisine:
  6. type: text
  7. mappings:
  8. - type: from_entity
  9. entity: cuisine
  10. num_people:
  11. type: any
  12. mappings:
  13. - type: from_entity
  14. entity: number
  15. forms:
  16. restaurant_form:
  17. ignored_intents:
  18. - chitchat
  19. required_slots:
  20. - cuisine
  21. - num_people

首次调用表单操作后,表单将被激活,并提示用户输入一个所需的插槽值。它通过查找名为 utter_ask_<form_name>_<slot_name>utter_ask_<slot_name> 的响应来执行此操作(如果未找到前者)。确保在域文件中为每个必需的插槽定义这些响应。

1.2 激活表单

要激活表单,我们需要添加一个故事或规则,它描述了机器人何时运行表单。在特定意图触发表单的情况下,我们可以使用以下规则:

  1. rules:
  2. - rule: Activate form
  3. steps:
  4. - intent: request_restaurant
  5. - action: restaurant_form
  6. - active_loop: restaurant_form

:::info 🐼 注意
————————————
active_loop: restaurant_form 步骤表示应该在 restaurant_form 运行后激活表单。 :::

1.3 停用表单

填充完所有必需的插槽后,表单将自动停用。我们可以使用规则或故事来描述机器人在表单结束时的行为,如果没有添加合适的故事或规则,则机器人将在表单完成后自动监听下一条用户消息。以下示例在表单 your_form 填满所有必需的插槽后,立即运行 utter_submitutter_slots_values

  1. rules:
  2. - rule: Submit form
  3. condition:
  4. # Condition that form is active.
  5. - active_loop: restaurant_form
  6. steps:
  7. # Form is deactivated
  8. - action: restaurant_form
  9. - active_loop: null
  10. - slot_was_set:
  11. - requested_slot: null
  12. # The actions we want to run when the form is submitted.
  13. - action: utter_submit
  14. - action: utter_slots_values

用户可能希望尽早脱离表单,针对这种情况,我们需要在故事或规则中编写意料之外表单路径,后续我们将进行介绍。

1.4 槽映射

:::danger ⌛ Rasa 3.0 中变化
——————————
在 Rasa 3.0 中,槽映射在域文件中的 slots 部分定义,此改动允许相同的槽映射在多个表单中重复使用,从而消除任何不必要的重复。注意,映射条件和唯一实体映射约束的作用。 :::

2. 为意料之外的表单路径编写故事/规则

用户不会总是回复我们要求提供的信息。通常,用户会提出问题、闲聊、改变注意,或者以其他方式偏离常规的对话路径。

当表单处于或活动状态时,如果用户的输入未填充请求的插槽,则表单的执行将被拒绝,即表单将自定引发 ActionExecutionRejection。以下是表单引发 ActionExecutionRejection 的特定场景:

  • 请求了一个插槽,但用户没有用最后一条消息填充插槽,并且没有定义用于验证插槽或提取槽值的自定义操作。
  • 请求了一个插槽,但用于验证插槽或提取槽值的自定义操作未返回任何 SlotSet 事件。

如果要拒绝表单的执行,我们可以返回 ActionExecutionRejected 事件作为自定义验证或槽映射的一部分。要处理可能导致表单执行被拒绝的情况,我们可以编写包含预期中断的规则或故事。例如,如果我们希望用户与机器人闲聊,就可以添加一个规则来处理这个问题:

  1. # @file: rules.yml
  2. rules:
  3. - rule: Example of an unhappy path
  4. condition:
  5. # Condition that form is active.
  6. - active_loop: restaurant_form
  7. steps:
  8. # This unhappy path handles the case of an intent `chitchat`.
  9. - intent: chitchat
  10. - action: utter_chitchat
  11. # Return to form after handling the `chitchat` intent
  12. - action: restaurant_form
  13. - active_loop: restaurant_form

在某些情况下,用户可能会在表单操作的中间改变注意,并决定不继续他们的初始请求。这种情况下,机器人应该停止插槽的请求。我们可以使用默认操作 action_deactive_loop 优雅地处理此类情况,这将停用表单并重置请求的插槽,此类对话的示例故事如下所示:

  1. # @file: stories.yml
  2. stories:
  3. - story: User interrupts the form and doesn't want to continue
  4. steps:
  5. - intent: request_restaurant
  6. - action: restaurant_form
  7. - active_loop: restaurant_form
  8. - intent: stop
  9. - action: utter_ask_continue
  10. - intent: stop
  11. - action: action_deactivate_loop
  12. - active_loop: null

强烈建议使用交互式学习来构建这些规则或故事,如果手动编写这些规则/故事,我们可能会错过重要的事情。

3. 高阶用法

使用自定义操作可完全自定义表单。

3.1 验证表单输入

从用户输入中提取槽值后,我们可以验证提取的槽值。默认情况下,Rasa 仅在请求插槽后验证是否填充了任何插槽。我们可以实施自定义操作 validate_<form_name> 来验证任何提取的插槽,确保将此操作添加到域文件的 actions 部分:

  1. actions:
  2. - validate_restaurant_form

当表单执行时,在每个用户验证最后填充的插槽后,Rasa 将运行自定义操作。该自定义操作可以扩展 FormValidationAction 类,以简化验证提取插槽的过程。在这种情况下,我们需要为每个提取的插槽编写名为 validate_<slot_name> 的函数。

下买呢的示例展示了如何通过自定义操作来验证 cuisine 插槽是否有效:

  1. from typing import Text, List, Any, Dict
  2. from rasa_sdk import Tracker, FormValidationAction
  3. from rasa_sdk.executor import CollectingDispatcher
  4. from rasa_sdk.types import DomainDict
  5. class ValidateRestaurantForm(FormValidationAction):
  6. def name(self) -> Text:
  7. return "validate_restaurant_form"
  8. @staticmethod
  9. def cuisine_db() -> List[Text]:
  10. """Database of supported cuisines"""
  11. return ["caribbean", "chinese", "french"]
  12. def validate_cuisine(
  13. self,
  14. slot_value: Any,
  15. dispatcher: CollectingDispatcher,
  16. tracker: Tracker,
  17. domain: DomainDict,
  18. ) -> Dict[Text, Any]:
  19. """Validate cuisine value."""
  20. if slot_value.lower() in self.cuisine_db():
  21. # validation succeeded, set the value of the "cuisine" slot to value
  22. return {"cuisine": slot_value}
  23. else:
  24. # validation failed, set this slot to None so that the
  25. # user will be asked for the slot again
  26. return {"cuisine": None}

我们还可以使用 tracker 扩杂

3.2 自定义插槽映射

Rasa 将在窗体运行时触发此操作。

如果使用的是 Rasa SDK,建议在 FormValidationAction 上继续扩展。使用 FormValidationAction 时,在提取自定义插槽时有以下 3 个步骤:

  1. 为每个插槽(以自定义方式进行映射)定义 extract_<slot_name> 方法
  2. 在域文件中,对于表单所需的插槽,列出所有所需的插槽,以及预定义和自定义映射

此外,我们可以重写 requested_slots 方法来添加动态请求的插槽。

:::info 💬 注意
————————————
在域文件中的 slots 部分添加了一个自定义映射的插槽,如果我们的目的只是在表单上下文中通过扩展 FormValidationAction 的自定义操作进行验证,请确保该插槽使用的是 custom 类型,并且被包含在表单的 requested_slots 中。 :::

下面这个示例展示了一个表单的实现,除了使用预定义映射的插槽外,该表单还以自定义方式提取插槽。extract_outdoor_seating 方法根据关键字 outdoor 是否出现在最后一条用户消息中来设置 outdoor_seating 插槽。

  1. # @file: actions.py
  2. from typing import Dict, Text, List, Optional, Any
  3. from rasa_sdk import Tracker
  4. from rasa_sdk.executor import CollectingDispatcher
  5. from rasa_sdk.forms import FormValidationAction
  6. class ValidateRestaurantForm(FormValidationAction):
  7. def name(self) -> Text:
  8. return "validate_restaurant_form"
  9. async def extract_outdoor_seating(
  10. self, dispatcher: CollectingDispatcher, tracker: Tracker, domain: Dict
  11. ) -> Dict[Text, Any]:
  12. text_of_last_user_message = tracker.latest_message.get("text")
  13. sit_outside = "outdoor" in text_of_last_user_message
  14. return {"outdoor_seating": sit_outside}

默认情况下,FormValidationAction 会自动将requested_slot 设置为 required_slots 中指定的第一个未填充的插槽。

3.3 动态表单行为

默认情况下,Rasa 将在域文件中表单所列举的插槽中询问下一个空插槽。如果我们使用自定义插槽映射和 FormValidationAction,它将询问 required_slots 方法返回的第一个空插槽。如果 required_slots 中的所有插槽都已经填满,则表单将被停用。

如果需要,我们可以动态更新表单的所需插槽。例如,的那个我们需要根据前一个插槽的填充方式获取更多详细信息,或者想要更改请求插槽的顺序时,这会很有用。

如果我们使用的是 Rasa SDK,建议使用 FormValidationAction,并覆盖 required_slots 以适应动态行为。我们应该为每个不使用预定义映射的插槽实现一个方法 extract_<slot_name>,正如自定义插槽映射中所述。下面的示例将询问用户是否想坐在阴凉处或阳光下,以防他们说想坐在外面。

  1. from typing import Text, List, Optional
  2. from rasa_sdk.forms import FormValidationAction
  3. class ValidateRestaurantForm(FormValidationAction):
  4. def name(self) -> Text:
  5. return "validate_restaurant_form"
  6. async def required_slots(
  7. self,
  8. domain_slots: List[Text],
  9. dispatcher: "CollectingDispatcher",
  10. tracker: "Tracker",
  11. domain: "DomainDict",
  12. ) -> List[Text]:
  13. additional_slots = ["outdoor_seating"]
  14. if tracker.slots.get("outdoor_seating") is True:
  15. # If the user wants to sit outside, ask
  16. # if they want to sit in the shade or in the sun.
  17. additional_slots.append("shade_or_sun")
  18. return additional_slots + domain_slots

3.4 requested_slot插槽

requested_slot 插槽作为作为文本类型的插槽被自动添加到域文件中。在对话期间,requested_slot 的槽值将被忽略。如果要更改此行为,则需要将 requested_slot 作为类别插槽添加到域文件中,并将 influence_conversation 设置为 true。如果想以不同方式处理意外之外的路径,则可能需要执行此操作,具体取决于用户当前询问的插槽。例如,如果用户用另一个问题回答机器人的一个问题,如“why do you need to know that?”,explain 意图的响应取决于故事中所处的位置。在餐厅案例中,我们的故事如下:

  1. # @file: stories.yml
  2. stories:
  3. - story: explain cuisine slot
  4. steps:
  5. - intent: request_restaurant
  6. - action: restaurant_form
  7. - active_loop: restaurant
  8. - slot_was_set:
  9. - requested_slot: cuisine
  10. - intent: explain
  11. - action: utter_explain_cuisine
  12. - action: restaurant_form
  13. - active_loop: null
  14. - story: explain num_people slot
  15. steps:
  16. - intent: request_restaurant
  17. - action: restaurant_form
  18. - active_loop: restaurant
  19. - slot_was_set:
  20. - requested_slot: cuisine
  21. - slot_was_set:
  22. - requested_slot: num_people
  23. - intent: explain
  24. - action: utter_explain_num_people
  25. - action: restaurant_form
  26. - active_loop: null

同样,强烈建议使用交互式学习来构建这些故事。

3.5 使用自定义操作询问下个插槽

一旦表单确定用户接下来必须填写哪个插槽,它将执行 utter_ask_<form_name> 或者 utter_ask_<slot_name> 操作。如果常规话术还不够,我们也可以使用自定义操作 action_ask_<form_name>action_ask_<slot_name> 来请求下一个插槽。

  1. from typing import Dict, Text, List
  2. from rasa_sdk import Tracker
  3. from rasa_sdk.events import EventType
  4. from rasa_sdk.executor import CollectingDispatcher
  5. from rasa_sdk import Action
  6. class AskForSlotAction(Action):
  7. def name(self) -> Text:
  8. return "action_ask_cuisine"
  9. def run(
  10. self,
  11. dispatcher: CollectingDispatcher,
  12. tracker: Tracker,
  13. domain: Dict
  14. ) -> List[EventType]:
  15. dispatcher.utter_message(text="What cuisine?")
  16. return []