Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在 RASA 制作一个聊天机器人,它可以帮助高中毕业生根据他们想要的位置找到大学。我将所有数据存储在 CSV 文件中。那么有什么方法可以从该 CSV 中提取一些特定数据。示例:如果用户要求显示某个位置的可用大学,如何根据用户提供的位置从 CSV 中提取特定数据,即大学的名称。
似乎您需要使用位置实体训练模型。创建一个故事,将带有位置实体的意图链接到自定义操作。
示例故事可能是这样的:
故事1 * ask_university{"location":New York} - action_get_universities
* ask_university{"location":New York} - action_get_universities
在自定义操作action_get_universities中,您将需要根据模型检测到的位置实体来处理 CSV 查询。熊猫应该可以正常工作。
action_get_universities
尽情探索吧!