我正在测试带有输入的聊天机器人,例如,其中一行读取
entityInput, Just in case, where is the nearest doctor's office
输入仅发送“以防万一”。我试过了Just in case\, where is the nearest doctor's office
你是否阅读了CSV规范(RFC 4180)或Wikipedia页面?它说的恰恰是你不会逃避,
,而是将整个文本包装成""
这样
entityInput, "Just in case, where is the nearest doctor's office"
只要实现是合规的,它就应该起作用。
好答案。我要补充一点:使用一个库来读取/写入此类数据,例如Apache Commons CSV。
谢谢,我知道我以前做过。请注意,您还必须在CSV数据集配置节点上将“允许引用的数据”设置为True。