我尝试为 IBM Watson Discovery Service 创建一个新文档,并使用 watson-developer-cloud/node-sdk
文档中的内容应该来自字符串而不是文件。我试过这样但没有运气
discovery.addDocument({
environment_id: MYENVID,
collection_id: MYCOLID,
metadata:'{"Content-Type":"application/json"}',
file:Buffer.from("HERE IS MY TEXT", 'utf8')
}, function(err, data) {
if (err) {
return next(err);
} else {
return res.json(data)
}
});
这将创建一个文档,但没有内容。结果是这样的
{
"id": "MYID",
"score": 1,
"metadata": {
"Content-Type": "application/json"
},
"enriched_field_units": 0
}
我想念一些简单的事情吗?