我使用dialogflow接口创建了一些动作和意图,然后导出了创建的JSON文件。我注意到在agent.JSON文件中有一个参数:"voiceType": "MALE_1",
。
我的问题是该voiceType密钥还将采用其他什么值,在这个agent.JSON文件的结构上我还能找到一个地方吗?
干杯!
答案 0 :(得分:1)
是的,Action Package参考文档显示了可用的类型。
您可以使用public class Test extends RecursiveAction{
public static void main(String[] args) {
Test test=new Test();
test.myCompute();
// calling the 2nd time, no output
test.myCompute();
}
public void myCompute() {
ForkJoinPool fjPool = new ForkJoinPool();
fjPool.invoke(this);
}
@Override
public void compute() {
System.out.println("mark");
}
}
,MALE_1
,MALE_2
和FEMALE_1
。