Search in sources :

Example 6 with AgentsClient

use of com.google.cloud.dialogflow.v2.AgentsClient 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;
    }
}
Also used : Agent(com.google.cloud.dialogflow.v2.Agent) AgentsSettings(com.google.cloud.dialogflow.v2.AgentsSettings) AgentsClient(com.google.cloud.dialogflow.v2.AgentsClient) Builder(com.google.cloud.dialogflow.v2.Agent.Builder)

Example 7 with AgentsClient

use of com.google.cloud.dialogflow.v2.AgentsClient in project java-dialogflow by googleapis.

the class ITSystemTest method setUp.

@BeforeClass
public static void setUp() throws IOException {
    agentsClient = AgentsClient.create();
    /* create entity */
    entityTypesClient = EntityTypesClient.create();
    EntityType createEntityType = EntityType.newBuilder().setDisplayName(ENTITY_NAME).setKind(EntityType.Kind.KIND_LIST).addEntities(ENTITY).build();
    CreateEntityTypeRequest entityTypeRequest = CreateEntityTypeRequest.newBuilder().setParent(PROJECT_AGENT_NAME.toString()).setEntityType(createEntityType).build();
    entityType = entityTypesClient.createEntityType(entityTypeRequest);
    entityName = entityType.getName().substring(entityType.getName().lastIndexOf("/")).replace("/", "");
    entityTypeName = EntityTypeName.of(PROJECT_ID, entityName);
    /* create intents */
    intentsClient = IntentsClient.create();
    Intent createIntent = Intent.newBuilder().setDisplayName(INTENT_NAME).addEvents(EVENT_NAME).setAction(ACTION_NAME).build();
    CreateIntentRequest intentRequest = CreateIntentRequest.newBuilder().setParent(PROJECT_AGENT_NAME.toString()).setIntent(createIntent).build();
    intent = intentsClient.createIntent(intentRequest);
    intentId = intent.getName().substring(intent.getName().lastIndexOf("/")).replace("/", "");
    intentName = IntentName.of(PROJECT_ID, intentId);
    /* create session */
    sessionsClient = SessionsClient.create();
    /* create context */
    contextsClient = ContextsClient.create();
    Context createContext = Context.newBuilder().setName(CONTEXT_NAME.toString()).setLifespanCount(LIFE_SPAN_COUNT).build();
    CreateContextRequest request = CreateContextRequest.newBuilder().setParent(SESSION_NAME.toString()).setContext(createContext).build();
    context = contextsClient.createContext(request);
}
Also used : EntityType(com.google.cloud.dialogflow.v2.EntityType) Context(com.google.cloud.dialogflow.v2.Context) CreateContextRequest(com.google.cloud.dialogflow.v2.CreateContextRequest) CreateEntityTypeRequest(com.google.cloud.dialogflow.v2.CreateEntityTypeRequest) Intent(com.google.cloud.dialogflow.v2.Intent) CreateIntentRequest(com.google.cloud.dialogflow.v2.CreateIntentRequest) BeforeClass(org.junit.BeforeClass)

Example 8 with AgentsClient

use of com.google.cloud.dialogflow.v2.AgentsClient 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;
    }
}
Also used : Agent(com.google.cloud.dialogflow.cx.v3.Agent) AgentsSettings(com.google.cloud.dialogflow.cx.v3.AgentsSettings) AgentsClient(com.google.cloud.dialogflow.cx.v3.AgentsClient) Builder(com.google.cloud.dialogflow.cx.v3.Agent.Builder)

Example 9 with AgentsClient

use of com.google.cloud.dialogflow.v2.AgentsClient 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);
    }
}
Also used : AgentsSettings(com.google.cloud.dialogflow.cx.v3.AgentsSettings) AgentsClient(com.google.cloud.dialogflow.cx.v3.AgentsClient) ExportAgentRequest(com.google.cloud.dialogflow.cx.v3.ExportAgentRequest) ExportAgentResponse(com.google.cloud.dialogflow.cx.v3.ExportAgentResponse) Struct(com.google.protobuf.Struct)

Example 10 with AgentsClient

use of com.google.cloud.dialogflow.v2.AgentsClient 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];
    }
}
Also used : PrintStream(java.io.PrintStream) Agent(com.google.cloud.dialogflow.cx.v3.Agent) IntentsClient(com.google.cloud.dialogflow.cx.v3.IntentsClient) Builder(com.google.cloud.dialogflow.cx.v3.Agent.Builder) Intent(com.google.cloud.dialogflow.cx.v3.Intent) ByteArrayOutputStream(java.io.ByteArrayOutputStream) AgentsSettings(com.google.cloud.dialogflow.cx.v3.AgentsSettings) AgentsClient(com.google.cloud.dialogflow.cx.v3.AgentsClient) Before(org.junit.Before)

Aggregations

AgentsClient (com.google.cloud.dialogflow.cx.v3.AgentsClient)9 AgentsSettings (com.google.cloud.dialogflow.cx.v3.AgentsSettings)9 Agent (com.google.cloud.dialogflow.cx.v3.Agent)4 Builder (com.google.cloud.dialogflow.cx.v3.Agent.Builder)4 ByteArrayOutputStream (java.io.ByteArrayOutputStream)3 PrintStream (java.io.PrintStream)3 After (org.junit.After)3 Before (org.junit.Before)2 BeforeClass (org.junit.BeforeClass)2 ExportAgentRequest (com.google.cloud.dialogflow.cx.v3.ExportAgentRequest)1 ExportAgentResponse (com.google.cloud.dialogflow.cx.v3.ExportAgentResponse)1 Intent (com.google.cloud.dialogflow.cx.v3.Intent)1 IntentsClient (com.google.cloud.dialogflow.cx.v3.IntentsClient)1 Agent (com.google.cloud.dialogflow.v2.Agent)1 Builder (com.google.cloud.dialogflow.v2.Agent.Builder)1 AgentsClient (com.google.cloud.dialogflow.v2.AgentsClient)1 AgentsSettings (com.google.cloud.dialogflow.v2.AgentsSettings)1 Context (com.google.cloud.dialogflow.v2.Context)1 CreateContextRequest (com.google.cloud.dialogflow.v2.CreateContextRequest)1 CreateEntityTypeRequest (com.google.cloud.dialogflow.v2.CreateEntityTypeRequest)1