如何使用带有 python 的发现新闻服务从 json 生成像 IBM 这样的摘要
qopts = {'nested':'(enriched_text.entities)','filter':'(enriched_text.entities.type::Person)','term':'(enriched_text.entities.text,count:10)','filter':'(enriched_text.concepts.text:infosys)','filter':'(enriched_text.concepts.text:ceo)'}
my_query = discovery.query('system', 'news', qopts)
print(json.dumps(my_query, indent=2))
这个查询是否适合寻找 Infosys 的 CEO?输出以大型 json 格式显示我如何识别答案或创建摘要,如前十名首席执行官或人员。如何使用带有 python 的发现新闻服务从 json 生成摘要。我触发查询然后输出变成大 json 格式..如何从该 json 文件中找到正确的摘要我的查询是否正确