use of com.google.cloud.dialogflow.v2.AgentsSettings in project java-dialogflow by googleapis.
the class SetAgent method setAgent.
public static Agent setAgent(String parent, String displayName) throws IOException {
AgentsSettings agentsSettings = AgentsSettings.newBuilder().build();
try (AgentsClient client = AgentsClient.create(agentsSettings)) {
// Set the details of the Agent to create
Builder build = Agent.newBuilder();
build.setDefaultLanguageCode("en");
build.setDisplayName(displayName);
Agent agent = build.build();
// Make API request to create agent
Agent response = client.setAgent(agent);
System.out.println(response);
return response;
}
}
use of com.google.cloud.dialogflow.v2.AgentsSettings in project java-dialogflow-cx by googleapis.
the class CreateAgent method createAgent.
public static Agent createAgent(String parent, String displayName) throws IOException {
String apiEndpoint = "global-dialogflow.googleapis.com:443";
AgentsSettings agentsSettings = AgentsSettings.newBuilder().setEndpoint(apiEndpoint).build();
try (AgentsClient client = AgentsClient.create(agentsSettings)) {
// Set the details of the Agent to create
Builder build = Agent.newBuilder();
build.setDefaultLanguageCode("en");
build.setDisplayName(displayName);
// Correct format for timezone is location/city
// For example America/Los_Angeles, Europe/Madrid, Asia/Tokyo
build.setTimeZone("America/Los_Angeles");
Agent agent = build.build();
String parentPath = String.format("projects/%s/locations/%s", parent, "global");
// Calls the create agent api and returns the created Agent
Agent response = client.createAgent(parentPath, agent);
System.out.println(response);
return response;
}
}
use of com.google.cloud.dialogflow.v2.AgentsSettings in project java-dialogflow-cx by googleapis.
the class ExportAgent method exportAgent.
public static void exportAgent(String projectId, String agentId, String location) throws IOException, InterruptedException, ExecutionException {
// Sets the api endpoint to specified location
String apiEndpoint = String.format("%s-dialogflow.googleapis.com:443", location);
AgentsSettings agentsSettings = AgentsSettings.newBuilder().setEndpoint(apiEndpoint).build();
try (AgentsClient agentsClient = AgentsClient.create(agentsSettings)) {
ExportAgentRequest request = ExportAgentRequest.newBuilder().setName(AgentName.of(projectId, location, agentId).toString()).build();
// Returns a future of the operation
OperationFuture<ExportAgentResponse, Struct> future = agentsClient.exportAgentOperationCallable().futureCall(request);
// get the export agent response after the operation is completed
ExportAgentResponse response = future.get();
System.out.println(response);
}
}
use of com.google.cloud.dialogflow.v2.AgentsSettings in project java-dialogflow-cx by googleapis.
the class UpdateIntentTest method setUp.
@Before
public void setUp() throws IOException {
stdOut = new ByteArrayOutputStream();
System.setOut(new PrintStream(stdOut));
Builder build = Agent.newBuilder();
build.setDefaultLanguageCode("en");
build.setDisplayName("temp_agent_" + UUID.randomUUID().toString());
build.setTimeZone("America/Los_Angeles");
Agent agent = build.build();
String apiEndpoint = "global-dialogflow.googleapis.com:443";
String parentPath = "projects/" + PROJECT_ID + "/locations/global";
AgentsSettings agentsSettings = AgentsSettings.newBuilder().setEndpoint(apiEndpoint).build();
AgentsClient client = AgentsClient.create(agentsSettings);
parent = client.createAgent(parentPath, agent).getName();
UpdateIntentTest.agentID = parent.split("/")[5];
try (IntentsClient intentsClient = IntentsClient.create()) {
com.google.cloud.dialogflow.cx.v3.Intent.Builder intent = Intent.newBuilder();
intent.setDisplayName("temp_intent_" + UUID.randomUUID().toString());
UpdateIntentTest.intentPath = intentsClient.createIntent(parent, intent.build()).getName();
UpdateIntentTest.intentID = UpdateIntentTest.intentPath.split("/")[7];
}
}
use of com.google.cloud.dialogflow.v2.AgentsSettings in project java-dialogflow-cx by googleapis.
the class UpdateIntentTest method tearDown.
@After
public void tearDown() throws IOException {
stdOut = null;
System.setOut(null);
String apiEndpoint = "global-dialogflow.googleapis.com:443";
String parentPath = "projects/" + PROJECT_ID + "/locations/global";
AgentsSettings agentsSettings = AgentsSettings.newBuilder().setEndpoint(apiEndpoint).build();
AgentsClient client = AgentsClient.create(agentsSettings);
client.deleteAgent(parent);
}
Aggregations