我可以使用Node或Python等后端语言通过JSON响应对象获得意图置信度,但是我无法在基于浏览器的IBM Watson Assistant用户界面中获得意图置信度。有办法吗?
答案 0 :(得分:2)
您可以使用import {
View,
Dimensions,
StyleSheet
} from "react-native";
import { Tile } from 'react-native-elements';
export class Screen extends Component {
constructor() {
super()
this.state = {
width: Dimensions.get('window').width
}
}
render() {
const { width } = this.state;
return (
<View style={{
flex: 1,
flexWrap: 'wrap',
flexDirection: 'row',
backgroundColor: '#ecf0f1'
}}>
<Tile
width={width/3}
featured
caption="1"
/>
<Tile
width={width/3}
featured
caption="2"
/>
<Tile
width={width/3}
featured
caption="3"
/>
<Tile
width={width/3}
featured
caption="4"
/>
</View>
);
}
}
获取有关意图的信息。
该对象在对话框中可读写。
答案 1 :(得分:1)
用于编辑工作区的Watson Assistant联机工具和对话框元素具有“试用”。但是,它尚不具备探索消息API返回的JSON结构的功能。
我使用的是这个tool,它可以测试对话,查看和编辑上下文以及检查置信度。您还可以使用另一个基于浏览器的tool。他们都不是官方的。
答案 2 :(得分:0)
您还可以在浏览器上使用网络工具来查看整个消息传递的Json。
通常,您右键单击任意位置,然后单击“检查元素”,然后转到“网络”标签。