我希望能够将上下文变量存储到文本文件中。 我使用这段代码:
"context" : {
"number_extract" : "<? input.text.extract('[\\d]+',0) ?>"
}
将变量提取到并存储在上下文变量中。但现在我希望能够从Watson Assistant中提取它,例如将其存储为文本文件或任何其他格式。这可能还是有另一种方式?
答案 0 :(得分:1)
是的,您可以存储text files or in a database中变量的上下文。 Watson Assistant allows to make programmatic calls from within a dialog。然后,调用的代码将处理将提取的信息写入文件或数据库。
我写了tutorial that uses the extracted information to store it in a database or to search in that database with extracted search terms。代码在GitHub上,所以你可以看到它是如何完成的。