Search in sources :

Example 6 with Prompts

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

the class TextToSpeech method getSpeakerModel.

/**
 * Get a speaker model.
 *
 * <p>Gets information about all prompts that are defined by a specified speaker for all custom
 * models that are owned by a service instance. The information is grouped by the customization
 * IDs of the custom models. For each custom model, the information lists information about each
 * prompt that is defined for that custom model by the speaker. You must use credentials for the
 * instance of the service that owns a speaker model to list its prompts. Speaker models and the
 * custom prompts with which they are used are supported only for use with US English custom
 * models and voices.
 *
 * <p>**See also:** [Listing the custom prompts for a speaker
 * model](https://cloud.ibm.com/docs/text-to-speech?topic=text-to-speech-tbe-speaker-models#tbe-speaker-models-list-prompts).
 *
 * @param getSpeakerModelOptions the {@link GetSpeakerModelOptions} containing the options for the
 *     call
 * @return a {@link ServiceCall} with a result of type {@link SpeakerCustomModels}
 */
public ServiceCall<SpeakerCustomModels> getSpeakerModel(GetSpeakerModelOptions getSpeakerModelOptions) {
    com.ibm.cloud.sdk.core.util.Validator.notNull(getSpeakerModelOptions, "getSpeakerModelOptions cannot be null");
    Map<String, String> pathParamsMap = new HashMap<String, String>();
    pathParamsMap.put("speaker_id", getSpeakerModelOptions.speakerId());
    RequestBuilder builder = RequestBuilder.get(RequestBuilder.resolveRequestUrl(getServiceUrl(), "/v1/speakers/{speaker_id}", pathParamsMap));
    Map<String, String> sdkHeaders = SdkCommon.getSdkHeaders("text_to_speech", "v1", "getSpeakerModel");
    for (Entry<String, String> header : sdkHeaders.entrySet()) {
        builder.header(header.getKey(), header.getValue());
    }
    builder.header("Accept", "application/json");
    ResponseConverter<SpeakerCustomModels> responseConverter = ResponseConverterUtils.getValue(new com.google.gson.reflect.TypeToken<SpeakerCustomModels>() {
    }.getType());
    return createServiceCall(builder.build(), responseConverter);
}
Also used : RequestBuilder(com.ibm.cloud.sdk.core.http.RequestBuilder) HashMap(java.util.HashMap) SpeakerCustomModels(com.ibm.watson.text_to_speech.v1.model.SpeakerCustomModels)

Example 7 with Prompts

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

the class TextToSpeech method getCustomModel.

/**
 * Get a custom model.
 *
 * <p>Gets all information about a specified custom model. In addition to metadata such as the
 * name and description of the custom model, the output includes the words and their translations
 * that are defined for the model, as well as any prompts that are defined for the model. To see
 * just the metadata for a model, use the [List custom models](#listcustommodels) method.
 *
 * <p>**See also:** [Querying a custom
 * model](https://cloud.ibm.com/docs/text-to-speech?topic=text-to-speech-customModels#cuModelsQuery).
 *
 * @param getCustomModelOptions the {@link GetCustomModelOptions} containing the options for the
 *     call
 * @return a {@link ServiceCall} with a result of type {@link CustomModel}
 */
public ServiceCall<CustomModel> getCustomModel(GetCustomModelOptions getCustomModelOptions) {
    com.ibm.cloud.sdk.core.util.Validator.notNull(getCustomModelOptions, "getCustomModelOptions cannot be null");
    Map<String, String> pathParamsMap = new HashMap<String, String>();
    pathParamsMap.put("customization_id", getCustomModelOptions.customizationId());
    RequestBuilder builder = RequestBuilder.get(RequestBuilder.resolveRequestUrl(getServiceUrl(), "/v1/customizations/{customization_id}", pathParamsMap));
    Map<String, String> sdkHeaders = SdkCommon.getSdkHeaders("text_to_speech", "v1", "getCustomModel");
    for (Entry<String, String> header : sdkHeaders.entrySet()) {
        builder.header(header.getKey(), header.getValue());
    }
    builder.header("Accept", "application/json");
    ResponseConverter<CustomModel> responseConverter = ResponseConverterUtils.getValue(new com.google.gson.reflect.TypeToken<CustomModel>() {
    }.getType());
    return createServiceCall(builder.build(), responseConverter);
}
Also used : RequestBuilder(com.ibm.cloud.sdk.core.http.RequestBuilder) HashMap(java.util.HashMap) CustomModel(com.ibm.watson.text_to_speech.v1.model.CustomModel)

Example 8 with Prompts

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

the class TextToSpeech method listCustomModels.

/**
 * List custom models.
 *
 * <p>Lists metadata such as the name and description for all custom models that are owned by an
 * instance of the service. Specify a language to list the custom models for that language only.
 * To see the words and prompts in addition to the metadata for a specific custom model, use the
 * [Get a custom model](#getcustommodel) method. You must use credentials for the instance of the
 * service that owns a model to list information about it.
 *
 * <p>**See also:** [Querying all custom
 * models](https://cloud.ibm.com/docs/text-to-speech?topic=text-to-speech-customModels#cuModelsQueryAll).
 *
 * @param listCustomModelsOptions the {@link ListCustomModelsOptions} containing the options for
 *     the call
 * @return a {@link ServiceCall} with a result of type {@link CustomModels}
 */
public ServiceCall<CustomModels> listCustomModels(ListCustomModelsOptions listCustomModelsOptions) {
    if (listCustomModelsOptions == null) {
        listCustomModelsOptions = new ListCustomModelsOptions.Builder().build();
    }
    RequestBuilder builder = RequestBuilder.get(RequestBuilder.resolveRequestUrl(getServiceUrl(), "/v1/customizations"));
    Map<String, String> sdkHeaders = SdkCommon.getSdkHeaders("text_to_speech", "v1", "listCustomModels");
    for (Entry<String, String> header : sdkHeaders.entrySet()) {
        builder.header(header.getKey(), header.getValue());
    }
    builder.header("Accept", "application/json");
    if (listCustomModelsOptions.language() != null) {
        builder.query("language", String.valueOf(listCustomModelsOptions.language()));
    }
    ResponseConverter<CustomModels> responseConverter = ResponseConverterUtils.getValue(new com.google.gson.reflect.TypeToken<CustomModels>() {
    }.getType());
    return createServiceCall(builder.build(), responseConverter);
}
Also used : RequestBuilder(com.ibm.cloud.sdk.core.http.RequestBuilder) SpeakerCustomModels(com.ibm.watson.text_to_speech.v1.model.SpeakerCustomModels) CustomModels(com.ibm.watson.text_to_speech.v1.model.CustomModels) RequestBuilder(com.ibm.cloud.sdk.core.http.RequestBuilder)

Example 9 with Prompts

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

the class TextToSpeechTest method testGetSpeakerModelWOptions.

// Test the getSpeakerModel operation with a valid options model parameter
@Test
public void testGetSpeakerModelWOptions() throws Throwable {
    // Register a mock response
    String mockResponseBody = "{\"customizations\": [{\"customization_id\": \"customizationId\", \"prompts\": [{\"prompt\": \"prompt\", \"prompt_id\": \"promptId\", \"status\": \"status\", \"error\": \"error\"}]}]}";
    String getSpeakerModelPath = "/v1/speakers/testString";
    server.enqueue(new MockResponse().setHeader("Content-type", "application/json").setResponseCode(200).setBody(mockResponseBody));
    // Construct an instance of the GetSpeakerModelOptions model
    GetSpeakerModelOptions getSpeakerModelOptionsModel = new GetSpeakerModelOptions.Builder().speakerId("testString").build();
    // Invoke getSpeakerModel() with a valid options model and verify the result
    Response<SpeakerCustomModels> response = textToSpeechService.getSpeakerModel(getSpeakerModelOptionsModel).execute();
    assertNotNull(response);
    SpeakerCustomModels responseObj = response.getResult();
    assertNotNull(responseObj);
    // Verify the contents of the request sent to the mock server
    RecordedRequest request = server.takeRequest();
    assertNotNull(request);
    assertEquals(request.getMethod(), "GET");
    // Verify request path
    String parsedPath = TestUtilities.parseReqPath(request);
    assertEquals(parsedPath, getSpeakerModelPath);
    // Verify that there is no query string
    Map<String, String> query = TestUtilities.parseQueryString(request);
    assertNull(query);
}
Also used : RecordedRequest(okhttp3.mockwebserver.RecordedRequest) MockResponse(okhttp3.mockwebserver.MockResponse) GetSpeakerModelOptions(com.ibm.watson.text_to_speech.v1.model.GetSpeakerModelOptions) SpeakerCustomModels(com.ibm.watson.text_to_speech.v1.model.SpeakerCustomModels) Test(org.testng.annotations.Test)

Example 10 with Prompts

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

the class TextToSpeechTest method testGetCustomModelWOptions.

// Test the getCustomModel operation with a valid options model parameter
@Test
public void testGetCustomModelWOptions() throws Throwable {
    // Register a mock response
    String mockResponseBody = "{\"customization_id\": \"customizationId\", \"name\": \"name\", \"language\": \"language\", \"owner\": \"owner\", \"created\": \"created\", \"last_modified\": \"lastModified\", \"description\": \"description\", \"words\": [{\"word\": \"word\", \"translation\": \"translation\", \"part_of_speech\": \"Dosi\"}], \"prompts\": [{\"prompt\": \"prompt\", \"prompt_id\": \"promptId\", \"status\": \"status\", \"error\": \"error\", \"speaker_id\": \"speakerId\"}]}";
    String getCustomModelPath = "/v1/customizations/testString";
    server.enqueue(new MockResponse().setHeader("Content-type", "application/json").setResponseCode(200).setBody(mockResponseBody));
    // Construct an instance of the GetCustomModelOptions model
    GetCustomModelOptions getCustomModelOptionsModel = new GetCustomModelOptions.Builder().customizationId("testString").build();
    // Invoke getCustomModel() with a valid options model and verify the result
    Response<CustomModel> response = textToSpeechService.getCustomModel(getCustomModelOptionsModel).execute();
    assertNotNull(response);
    CustomModel responseObj = response.getResult();
    assertNotNull(responseObj);
    // Verify the contents of the request sent to the mock server
    RecordedRequest request = server.takeRequest();
    assertNotNull(request);
    assertEquals(request.getMethod(), "GET");
    // Verify request path
    String parsedPath = TestUtilities.parseReqPath(request);
    assertEquals(parsedPath, getCustomModelPath);
    // Verify that there is no query string
    Map<String, String> query = TestUtilities.parseQueryString(request);
    assertNull(query);
}
Also used : RecordedRequest(okhttp3.mockwebserver.RecordedRequest) MockResponse(okhttp3.mockwebserver.MockResponse) GetCustomModelOptions(com.ibm.watson.text_to_speech.v1.model.GetCustomModelOptions) CustomModel(com.ibm.watson.text_to_speech.v1.model.CustomModel) Test(org.testng.annotations.Test)

Aggregations

MockResponse (okhttp3.mockwebserver.MockResponse)10 RecordedRequest (okhttp3.mockwebserver.RecordedRequest)10 Test (org.testng.annotations.Test)10 RequestBuilder (com.ibm.cloud.sdk.core.http.RequestBuilder)8 HashMap (java.util.HashMap)5 CustomModel (com.ibm.watson.text_to_speech.v1.model.CustomModel)4 Prompt (com.ibm.watson.text_to_speech.v1.model.Prompt)4 SpeakerCustomModels (com.ibm.watson.text_to_speech.v1.model.SpeakerCustomModels)4 Prompts (com.ibm.watson.text_to_speech.v1.model.Prompts)3 CreateCustomModelOptions (com.ibm.watson.text_to_speech.v1.model.CreateCustomModelOptions)2 CustomModels (com.ibm.watson.text_to_speech.v1.model.CustomModels)2 ListCustomPromptsOptions (com.ibm.watson.text_to_speech.v1.model.ListCustomPromptsOptions)2 WatsonServiceTest (com.ibm.watson.common.WatsonServiceTest)1 AddCustomPromptOptions (com.ibm.watson.text_to_speech.v1.model.AddCustomPromptOptions)1 DeleteCustomModelOptions (com.ibm.watson.text_to_speech.v1.model.DeleteCustomModelOptions)1 DeleteCustomPromptOptions (com.ibm.watson.text_to_speech.v1.model.DeleteCustomPromptOptions)1 GetCustomModelOptions (com.ibm.watson.text_to_speech.v1.model.GetCustomModelOptions)1 GetCustomPromptOptions (com.ibm.watson.text_to_speech.v1.model.GetCustomPromptOptions)1 GetSpeakerModelOptions (com.ibm.watson.text_to_speech.v1.model.GetSpeakerModelOptions)1 GetVoiceOptions (com.ibm.watson.text_to_speech.v1.model.GetVoiceOptions)1