🚀 原文地址:https://rasa.com/docs/rasa/custom-actions

    自定义操作可以运行我们想要的任何代码,包括 API 调用、数据库查询等。想要在故事中使用的任何自定义操作都需要添加到域文件的 actions 部分。

    当对话引擎预测要执行的自定义动作时,它会调用 Action Server,并提供以下信息:

    1. {
    2. "next_action": "string",
    3. "sender_id": "string",
    4. "tracker": {
    5. "conversation_id": "default",
    6. "slots": {},
    7. "latest_message": {},
    8. "latest_event_time": 1537645578.314389,
    9. "followup_action": "string",
    10. "paused": false,
    11. "events": [],
    12. "latest_input_channel": "rest",
    13. "active_loop": {},
    14. "latest_action": {},
    15. },
    16. "domain": {
    17. "config": {},
    18. "session_config": {},
    19. "intents": [],
    20. "entities": [],
    21. "slots": {},
    22. "responses": {},
    23. "actions": [],
    24. "forms": {},
    25. "e2e_actions": []
    26. },
    27. "version": "version"
    28. }

    Action Server 应该以事件和响应列表进行响应:

    1. {
    2. "events": [{}],
    3. "responses": [{}]
    4. }