我想使用DialogFlow的SDK创建一个代理。我需要动态创建和销毁代理。
我尝试使用Java SDK并成功。
我尝试使用Java SDK V2生成AgentsClient。
首先,我连接到存储
com.google.cloud.storage.Storage storage = StorageOptions.newBuilder()
.setCredentials(ServiceAccountCredentials.fromStream(new FileInputStream("key.json")))
.build().getService();
如果我尝试过这个:
AgentsClient client = AgentsClient.create();
但是不能像我理解的那样工作。要求是使用SDK可以创建一个新的代理,而不能获取某些现有代理。