我按如下方式实现了 regexp.json 文件,但我不确定同义词是用于意图还是用于实体。
什么是同义词?在这种情况下,你能告诉我一些同义词的例子吗?
{
"intents" : [
{
"name" : ["greetings"],
"grammar" : [
"[How|What] is the [current|] weather in {location}"
]
}
],
"entities" : {
"name":"location"
},
"synonyms" : [
[""]
]
}