rasa x 报错 AttributeError: dict object has no attribute strip

文章目录

  • 问题描述
  • 解决方案

问题描述

初始化:rasa init

domain.yml添加

  utter_city:
  - text: {city}

启动:rasa x

报错:AttributeError: 'dict' object has no attribute 'strip'




解决方案

改成

  utter_city:
  - text: '{city}'

你可能感兴趣的:(Python,python,rasa)