使用dialogflow SDK的Google语音选项

时间:2018-09-29 20:16:37

标签: dialogflow actions-on-google

我使用dialogflow接口创建了一些动作和意图,然后导出了创建的JSON文件。我注意到在agent.JSON文件中有一个参数:"voiceType": "MALE_1",

我的问题是该voiceType密钥还将采用其他什么值,在这个agent.JSON文件的结构上我还能找到一个地方吗?

干杯!

1 个答案:

答案 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_1MALE_2FEMALE_1