Search in sources :

Example 6 with Intent

use of com.google.cloud.dialogflow.cx.v3.Intent in project java-dialogflow-cx by googleapis.

the class ListTrainingPhrases method listTrainingPhrases.

// DialogFlow API List Training Phrases sample.
public static void listTrainingPhrases(String projectId, String location, String agentId, String intentId) throws IOException {
    try (IntentsClient client = IntentsClient.create()) {
        // Set the intent name
        IntentName name = IntentName.of(projectId, location, agentId, intentId);
        // Compose the get-intent request
        GetIntentRequest request = GetIntentRequest.newBuilder().setName(name.toString()).build();
        // Make API request to get intent
        Intent response = client.getIntent(request);
        // Loop through the results
        for (Intent.TrainingPhrase phrase : response.getTrainingPhrasesList()) {
            System.out.println("***********************************************");
            List<Intent.TrainingPhrase.Part> parts = phrase.getPartsList();
            for (Intent.TrainingPhrase.Part part : parts) {
                System.out.println(String.format("Training Phrase: %s", part.getText()));
            }
        }
    }
}
Also used : IntentsClient(com.google.cloud.dialogflow.cx.v3.IntentsClient) IntentName(com.google.cloud.dialogflow.cx.v3.IntentName) GetIntentRequest(com.google.cloud.dialogflow.cx.v3.GetIntentRequest) Intent(com.google.cloud.dialogflow.cx.v3.Intent)

Example 7 with Intent

use of com.google.cloud.dialogflow.cx.v3.Intent in project java-dialogflow-cx by googleapis.

the class CreateIntentIT method testCreateIntentRegional.

@Test
public void testCreateIntentRegional() throws Exception {
    Intent result = CreateIntent.createIntent(DISPLAY_NAME, PROJECT_ID, LOCATION_REGIONAL, AGENT_ID_REGIONAL, TRAINING_PHRASES_PARTS);
    newIntentNameRegional = result.getName();
    System.out.println("intent name new:" + newIntentNameRegional);
    assertEquals(result.getTrainingPhrasesCount(), TRAINING_PHRASES_PARTS.size());
    for (TrainingPhrase trainingPhrase : result.getTrainingPhrasesList()) {
        assertEquals(trainingPhrase.getPartsCount(), 1);
        String partText = trainingPhrase.getParts(0).getText();
        assertTrue(partText.equals("red") || partText.equals("blue") || partText.equals("green"));
    }
}
Also used : TrainingPhrase(com.google.cloud.dialogflow.cx.v3beta1.Intent.TrainingPhrase) Intent(com.google.cloud.dialogflow.cx.v3beta1.Intent) Test(org.junit.Test)

Example 8 with Intent

use of com.google.cloud.dialogflow.cx.v3.Intent in project java-dialogflow-cx by googleapis.

the class CreateIntentIT method testCreateIntentGlobal.

@Test
public void testCreateIntentGlobal() throws Exception {
    Intent result = CreateIntent.createIntent(DISPLAY_NAME, PROJECT_ID, LOCATION_GLOBAL, AGENT_ID_GLOBAL, TRAINING_PHRASES_PARTS);
    newIntentNameGlobal = result.getName();
    assertEquals(result.getTrainingPhrasesCount(), TRAINING_PHRASES_PARTS.size());
    for (TrainingPhrase trainingPhrase : result.getTrainingPhrasesList()) {
        assertEquals(trainingPhrase.getPartsCount(), 1);
        String partText = trainingPhrase.getParts(0).getText();
        assertTrue(partText.equals("red") || partText.equals("blue") || partText.equals("green"));
    }
}
Also used : TrainingPhrase(com.google.cloud.dialogflow.cx.v3beta1.Intent.TrainingPhrase) Intent(com.google.cloud.dialogflow.cx.v3beta1.Intent) Test(org.junit.Test)

Example 9 with Intent

use of com.google.cloud.dialogflow.cx.v3.Intent in project java-dialogflow by googleapis.

the class IntentManagement method createIntent.

// [END dialogflow_list_intents]
// [START dialogflow_create_intent]
/**
 * Create an intent of the given intent type
 *
 * @param displayName The display name of the intent.
 * @param projectId Project/Agent Id.
 * @param trainingPhrasesParts Training phrases.
 * @param messageTexts Message texts for the agent's response when the intent is detected.
 * @return The created Intent.
 */
public static Intent createIntent(String displayName, String projectId, List<String> trainingPhrasesParts, List<String> messageTexts) throws ApiException, IOException {
    // Instantiates a client
    try (IntentsClient intentsClient = IntentsClient.create()) {
        // Set the project agent name using the projectID (my-project-id)
        AgentName parent = AgentName.of(projectId);
        // Build the trainingPhrases from the trainingPhrasesParts
        List<TrainingPhrase> trainingPhrases = new ArrayList<>();
        for (String trainingPhrase : trainingPhrasesParts) {
            trainingPhrases.add(TrainingPhrase.newBuilder().addParts(Part.newBuilder().setText(trainingPhrase).build()).build());
        }
        // Build the message texts for the agent's response
        Message message = Message.newBuilder().setText(Text.newBuilder().addAllText(messageTexts).build()).build();
        // Build the intent
        Intent intent = Intent.newBuilder().setDisplayName(displayName).addMessages(message).addAllTrainingPhrases(trainingPhrases).build();
        // Performs the create intent request
        Intent response = intentsClient.createIntent(parent, intent);
        System.out.format("Intent created: %s\n", response);
        return response;
    }
}
Also used : TrainingPhrase(com.google.cloud.dialogflow.v2.Intent.TrainingPhrase) IntentsClient(com.google.cloud.dialogflow.v2.IntentsClient) Message(com.google.cloud.dialogflow.v2.Intent.Message) ArrayList(java.util.ArrayList) Intent(com.google.cloud.dialogflow.v2.Intent) AgentName(com.google.cloud.dialogflow.v2.AgentName)

Example 10 with Intent

use of com.google.cloud.dialogflow.cx.v3.Intent in project java-dialogflow by googleapis.

the class IntentManagement method getIntentIds.

// [END dialogflow_delete_intent]
/**
 * Helper method for testing to get intentIds from displayName.
 */
public static List<String> getIntentIds(String displayName, String projectId) throws ApiException, IOException {
    List<String> intentIds = new ArrayList<>();
    // Instantiates a client
    try (IntentsClient intentsClient = IntentsClient.create()) {
        AgentName parent = AgentName.of(projectId);
        for (Intent intent : intentsClient.listIntents(parent).iterateAll()) {
            if (intent.getDisplayName().equals(displayName)) {
                String[] splitName = intent.getName().split("/");
                intentIds.add(splitName[splitName.length - 1]);
            }
        }
    }
    return intentIds;
}
Also used : IntentsClient(com.google.cloud.dialogflow.v2.IntentsClient) ArrayList(java.util.ArrayList) Intent(com.google.cloud.dialogflow.v2.Intent) AgentName(com.google.cloud.dialogflow.v2.AgentName)

Aggregations

Intent (com.google.cloud.dialogflow.v2.Intent)10 Test (org.junit.Test)10 Intent (com.google.cloud.dialogflow.cx.v3beta1.Intent)7 IntentsClient (com.google.cloud.dialogflow.v2.IntentsClient)7 AgentName (com.google.cloud.dialogflow.v2.AgentName)4 Intent (com.google.cloud.dialogflow.cx.v3.Intent)3 IntentsClient (com.google.cloud.dialogflow.cx.v3.IntentsClient)3 TrainingPhrase (com.google.cloud.dialogflow.cx.v3beta1.Intent.TrainingPhrase)3 FieldMask (com.google.protobuf.FieldMask)3 ByteArrayOutputStream (java.io.ByteArrayOutputStream)3 PrintStream (java.io.PrintStream)3 ArrayList (java.util.ArrayList)3 Before (org.junit.Before)3 ListIntentsPagedResponse (com.google.cloud.dialogflow.cx.v3.IntentsClient.ListIntentsPagedResponse)2 IntentsClient (com.google.cloud.dialogflow.cx.v3beta1.IntentsClient)2 Context (com.google.cloud.dialogflow.v2.Context)2 GetIntentRequest (com.google.cloud.dialogflow.v2.GetIntentRequest)2 AbstractMessage (com.google.protobuf.AbstractMessage)2 BeforeClass (org.junit.BeforeClass)2 Agent (com.google.cloud.dialogflow.cx.v3.Agent)1