Search in sources :

Example 21 with Example

use of com.ibm.watson.assistant.v1.model.Example in project java-sdk by watson-developer-cloud.

the class AssistantServiceIT method testGetExample.

/**
 * Test getExample.
 */
@Test
public void testGetExample() {
    createExampleIntent();
    Date start = new Date();
    // gotta be unique
    String exampleText = "Howdy " + UUID.randomUUID().toString();
    CreateExampleOptions createOptions = new CreateExampleOptions.Builder(workspaceId, exampleIntent, exampleText).build();
    service.createExample(createOptions).execute();
    try {
        GetExampleOptions getOptions = new GetExampleOptions.Builder(workspaceId, exampleIntent, exampleText).includeAudit(true).build();
        Example response = service.getExample(getOptions).execute();
        assertNotNull(response);
        assertNotNull(response.getExampleText());
        assertEquals(response.getExampleText(), exampleText);
        assertNotNull(response.getCreated());
        assertNotNull(response.getUpdated());
        Date now = new Date();
        assertTrue(fuzzyBefore(response.getCreated(), now));
        assertTrue(fuzzyAfter(response.getCreated(), start));
        assertTrue(fuzzyBefore(response.getUpdated(), now));
        assertTrue(fuzzyAfter(response.getUpdated(), start));
    } catch (Exception ex) {
        fail(ex.getMessage());
    } finally {
        // Clean up
        DeleteExampleOptions deleteOptions = new DeleteExampleOptions.Builder(workspaceId, exampleIntent, exampleText).build();
        service.deleteExample(deleteOptions).execute();
    }
}
Also used : CreateExampleOptions(com.ibm.watson.developer_cloud.assistant.v1.model.CreateExampleOptions) GetExampleOptions(com.ibm.watson.developer_cloud.assistant.v1.model.GetExampleOptions) CreateExample(com.ibm.watson.developer_cloud.assistant.v1.model.CreateExample) Example(com.ibm.watson.developer_cloud.assistant.v1.model.Example) DeleteExampleOptions(com.ibm.watson.developer_cloud.assistant.v1.model.DeleteExampleOptions) Date(java.util.Date) UnauthorizedException(com.ibm.watson.developer_cloud.service.exception.UnauthorizedException) NotFoundException(com.ibm.watson.developer_cloud.service.exception.NotFoundException) Test(org.junit.Test)

Example 22 with Example

use of com.ibm.watson.assistant.v1.model.Example in project java-sdk by watson-developer-cloud.

the class ConversationServiceIT method testGetExample.

/**
 * Test getExample.
 */
@Test
public void testGetExample() {
    createExampleIntent();
    Date start = new Date();
    // gotta be unique
    String exampleText = "Howdy " + UUID.randomUUID().toString();
    CreateExampleOptions createOptions = new CreateExampleOptions.Builder(workspaceId, exampleIntent, exampleText).build();
    service.createExample(createOptions).execute();
    try {
        GetExampleOptions getOptions = new GetExampleOptions.Builder(workspaceId, exampleIntent, exampleText).includeAudit(true).build();
        Example response = service.getExample(getOptions).execute();
        assertNotNull(response);
        assertNotNull(response.getExampleText());
        assertEquals(response.getExampleText(), exampleText);
        assertNotNull(response.getCreated());
        assertNotNull(response.getUpdated());
        Date now = new Date();
        assertTrue(fuzzyBefore(response.getCreated(), now));
        assertTrue(fuzzyAfter(response.getCreated(), start));
        assertTrue(fuzzyBefore(response.getUpdated(), now));
        assertTrue(fuzzyAfter(response.getUpdated(), start));
    } catch (Exception ex) {
        fail(ex.getMessage());
    } finally {
        // Clean up
        DeleteExampleOptions deleteOptions = new DeleteExampleOptions.Builder(workspaceId, exampleIntent, exampleText).build();
        service.deleteExample(deleteOptions).execute();
    }
}
Also used : CreateExampleOptions(com.ibm.watson.developer_cloud.conversation.v1.model.CreateExampleOptions) GetExampleOptions(com.ibm.watson.developer_cloud.conversation.v1.model.GetExampleOptions) CreateExample(com.ibm.watson.developer_cloud.conversation.v1.model.CreateExample) Example(com.ibm.watson.developer_cloud.conversation.v1.model.Example) DeleteExampleOptions(com.ibm.watson.developer_cloud.conversation.v1.model.DeleteExampleOptions) Date(java.util.Date) UnauthorizedException(com.ibm.watson.developer_cloud.service.exception.UnauthorizedException) NotFoundException(com.ibm.watson.developer_cloud.service.exception.NotFoundException) Test(org.junit.Test)

Example 23 with Example

use of com.ibm.watson.assistant.v1.model.Example in project java-sdk by watson-developer-cloud.

the class Conversation method getExample.

/**
 * Get user input example.
 *
 * Get information about a user input example.
 *
 * @param getExampleOptions the {@link GetExampleOptions} containing the options for the call
 * @return a {@link ServiceCall} with a response type of {@link Example}
 */
public ServiceCall<Example> getExample(GetExampleOptions getExampleOptions) {
    Validator.notNull(getExampleOptions, "getExampleOptions cannot be null");
    String[] pathSegments = { "v1/workspaces", "intents", "examples" };
    String[] pathParameters = { getExampleOptions.workspaceId(), getExampleOptions.intent(), getExampleOptions.text() };
    RequestBuilder builder = RequestBuilder.get(RequestBuilder.constructHttpUrl(getEndPoint(), pathSegments, pathParameters));
    builder.query(VERSION, versionDate);
    if (getExampleOptions.includeAudit() != null) {
        builder.query("include_audit", String.valueOf(getExampleOptions.includeAudit()));
    }
    return createServiceCall(builder.build(), ResponseConverterUtils.getObject(Example.class));
}
Also used : RequestBuilder(com.ibm.watson.developer_cloud.http.RequestBuilder) Example(com.ibm.watson.developer_cloud.conversation.v1.model.Example)

Example 24 with Example

use of com.ibm.watson.assistant.v1.model.Example in project java-sdk by watson-developer-cloud.

the class Assistant method createExample.

/**
 * Create user input example.
 *
 * Add a new user input example to an intent. This operation is limited to 1000 requests per 30 minutes. For more
 * information, see **Rate limiting**.
 *
 * @param createExampleOptions the {@link CreateExampleOptions} containing the options for the call
 * @return a {@link ServiceCall} with a response type of {@link Example}
 */
public ServiceCall<Example> createExample(CreateExampleOptions createExampleOptions) {
    Validator.notNull(createExampleOptions, "createExampleOptions cannot be null");
    String[] pathSegments = { "v1/workspaces", "intents", "examples" };
    String[] pathParameters = { createExampleOptions.workspaceId(), createExampleOptions.intent() };
    RequestBuilder builder = RequestBuilder.post(RequestBuilder.constructHttpUrl(getEndPoint(), pathSegments, pathParameters));
    builder.query(VERSION, versionDate);
    final JsonObject contentJson = new JsonObject();
    contentJson.addProperty("text", createExampleOptions.text());
    builder.bodyJson(contentJson);
    return createServiceCall(builder.build(), ResponseConverterUtils.getObject(Example.class));
}
Also used : RequestBuilder(com.ibm.watson.developer_cloud.http.RequestBuilder) Example(com.ibm.watson.developer_cloud.assistant.v1.model.Example) JsonObject(com.google.gson.JsonObject)

Example 25 with Example

use of com.ibm.watson.assistant.v1.model.Example in project java-sdk by watson-developer-cloud.

the class ConversationServiceIT method testCreateIntent.

/**
 * Test createIntent.
 */
@Test
public void testCreateIntent() {
    // gotta be unique
    String intentName = "Hello" + UUID.randomUUID().toString();
    String intentDescription = "Description of " + intentName;
    String intentExample = "Example of " + intentName;
    List<CreateExample> intentExamples = new ArrayList<CreateExample>();
    intentExamples.add(new CreateExample.Builder().text(intentExample).build());
    Date start = new Date();
    CreateIntentOptions createOptions = new CreateIntentOptions.Builder(workspaceId, intentName).description(intentDescription).examples(intentExamples).build();
    Intent response = service.createIntent(createOptions).execute();
    try {
        assertNotNull(response);
        assertNotNull(response.getIntentName());
        assertEquals(response.getIntentName(), intentName);
        assertNotNull(response.getDescription());
        assertEquals(response.getDescription(), intentDescription);
        Date now = new Date();
        ListExamplesOptions listOptions = new ListExamplesOptions.Builder(workspaceId, intentName).includeAudit(true).build();
        ExampleCollection ecResponse = service.listExamples(listOptions).execute();
        assertNotNull(ecResponse);
        assertNotNull(ecResponse.getExamples());
        List<Example> examples = ecResponse.getExamples();
        assertTrue(examples.size() == 1);
        assertEquals(examples.get(0).getExampleText(), intentExample);
        assertTrue(fuzzyBefore(examples.get(0).getCreated(), now));
        assertTrue(fuzzyAfter(examples.get(0).getCreated(), start));
        assertTrue(fuzzyBefore(examples.get(0).getUpdated(), now));
        assertTrue(fuzzyAfter(examples.get(0).getUpdated(), start));
    } catch (Exception ex) {
        fail(ex.getMessage());
    } finally {
        // Clean up
        DeleteIntentOptions deleteOptions = new DeleteIntentOptions.Builder(workspaceId, intentName).build();
        service.deleteIntent(deleteOptions).execute();
    }
}
Also used : CreateExample(com.ibm.watson.developer_cloud.conversation.v1.model.CreateExample) CreateIntentOptions(com.ibm.watson.developer_cloud.conversation.v1.model.CreateIntentOptions) ArrayList(java.util.ArrayList) ExampleCollection(com.ibm.watson.developer_cloud.conversation.v1.model.ExampleCollection) CreateIntent(com.ibm.watson.developer_cloud.conversation.v1.model.CreateIntent) RuntimeIntent(com.ibm.watson.developer_cloud.conversation.v1.model.RuntimeIntent) Intent(com.ibm.watson.developer_cloud.conversation.v1.model.Intent) Date(java.util.Date) UnauthorizedException(com.ibm.watson.developer_cloud.service.exception.UnauthorizedException) NotFoundException(com.ibm.watson.developer_cloud.service.exception.NotFoundException) ListExamplesOptions(com.ibm.watson.developer_cloud.conversation.v1.model.ListExamplesOptions) CreateExample(com.ibm.watson.developer_cloud.conversation.v1.model.CreateExample) Example(com.ibm.watson.developer_cloud.conversation.v1.model.Example) DeleteIntentOptions(com.ibm.watson.developer_cloud.conversation.v1.model.DeleteIntentOptions) Test(org.junit.Test)

Aggregations

NotFoundException (com.ibm.watson.developer_cloud.service.exception.NotFoundException)14 UnauthorizedException (com.ibm.watson.developer_cloud.service.exception.UnauthorizedException)14 Test (org.junit.Test)14 Example (com.ibm.watson.assistant.v1.model.Example)10 Example (com.ibm.watson.developer_cloud.assistant.v1.model.Example)10 Example (com.ibm.watson.developer_cloud.conversation.v1.model.Example)10 Date (java.util.Date)10 CreateExample (com.ibm.watson.developer_cloud.assistant.v1.model.CreateExample)7 CreateExample (com.ibm.watson.developer_cloud.conversation.v1.model.CreateExample)7 MockResponse (okhttp3.mockwebserver.MockResponse)7 RecordedRequest (okhttp3.mockwebserver.RecordedRequest)7 Test (org.testng.annotations.Test)7 JsonObject (com.google.gson.JsonObject)6 Mention (com.ibm.watson.assistant.v1.model.Mention)6 RequestBuilder (com.ibm.watson.developer_cloud.http.RequestBuilder)6 ArrayList (java.util.ArrayList)6 HashMap (java.util.HashMap)6 RequestBuilder (com.ibm.cloud.sdk.core.http.RequestBuilder)4 CreateIntent (com.ibm.watson.assistant.v1.model.CreateIntent)4 CreateExampleOptions (com.ibm.watson.developer_cloud.conversation.v1.model.CreateExampleOptions)4