use of com.ibm.watson.text_to_speech.v1.model.ListCustomModelsOptions in project java-sdk by watson-developer-cloud.
the class CustomizationExample method main.
public static void main(String[] args) throws IOException {
Authenticator authenticator = new IamAuthenticator("<iam_api_key>");
TextToSpeech service = new TextToSpeech(authenticator);
// create custom voice model.
CreateCustomModelOptions createOptions = new CreateCustomModelOptions.Builder().name("my model").language("en-US").description("the model for testing").build();
CustomModel customVoiceModel = service.createCustomModel(createOptions).execute().getResult();
System.out.println(customVoiceModel);
// list custom voice models for US English.
ListCustomModelsOptions listOptions = new ListCustomModelsOptions.Builder().language("en-US").build();
CustomModels customVoiceModels = service.listCustomModels(listOptions).execute().getResult();
System.out.println(customVoiceModels);
// update custom voice model.
String newName = "my updated model";
UpdateCustomModelOptions updateOptions = new UpdateCustomModelOptions.Builder().customizationId(customVoiceModel.getCustomizationId()).name(newName).description("the updated model for testing").build();
service.updateCustomModel(updateOptions).execute();
// list custom voice models regardless of language.
customVoiceModels = service.listCustomModels().execute().getResult();
System.out.println(customVoiceModels);
// create multiple custom word translations
Word word1 = new Word.Builder().word("hodor").translation("hold the door").build();
Word word2 = new Word.Builder().word("plz").translation("please").build();
List<Word> words = Arrays.asList(word1, word2);
AddWordsOptions addOptions = new AddWordsOptions.Builder().customizationId(customVoiceModel.getCustomizationId()).words(words).build();
service.addWords(addOptions).execute();
// create a single custom word translation
AddWordOptions addWordOptions = new AddWordOptions.Builder().word("nat").translation("and that").customizationId(customVoiceModel.getCustomizationId()).build();
service.addWord(addWordOptions).execute();
// get custom word translations
ListWordsOptions listWordsOptions = new ListWordsOptions.Builder().customizationId(customVoiceModel.getCustomizationId()).build();
Words customWords = service.listWords(listWordsOptions).execute().getResult();
System.out.println(customWords);
// get custom word translation
GetWordOptions getOptions = new GetWordOptions.Builder().customizationId(customVoiceModel.getCustomizationId()).word("hodor").build();
Translation translation = service.getWord(getOptions).execute().getResult();
System.out.println(translation);
// synthesize with custom voice model
String text = "plz hodor";
SynthesizeOptions synthesizeOptions = new SynthesizeOptions.Builder().text(text).voice(SynthesizeOptions.Voice.EN_US_MICHAELVOICE).accept(HttpMediaType.AUDIO_WAV).customizationId(customVoiceModel.getCustomizationId()).build();
InputStream in = service.synthesize(synthesizeOptions).execute().getResult();
writeToFile(WaveUtils.reWriteWaveHeader(in), new File("output.wav"));
// delete custom words with object and string
DeleteWordOptions deleteOptions1 = new DeleteWordOptions.Builder().customizationId(customVoiceModel.getCustomizationId()).word(word1.word()).build();
service.deleteWord(deleteOptions1).execute();
DeleteWordOptions deleteOptions2 = new DeleteWordOptions.Builder().customizationId(customVoiceModel.getCustomizationId()).word(word2.word()).build();
service.deleteWord(deleteOptions2).execute();
// delete custom voice model
DeleteCustomModelOptions deleteOptions = new DeleteCustomModelOptions.Builder().customizationId(customVoiceModel.getCustomizationId()).build();
service.deleteCustomModel(deleteOptions).execute();
// list custom voice models regardless of language.
customVoiceModels = service.listCustomModels().execute().getResult();
System.out.println(customVoiceModels);
}
use of com.ibm.watson.text_to_speech.v1.model.ListCustomModelsOptions in project java-sdk by watson-developer-cloud.
the class TextToSpeechTest method testListCustomModelsWOptions.
// Test the listCustomModels operation with a valid options model parameter
@Test
public void testListCustomModelsWOptions() throws Throwable {
// Register a mock response
String mockResponseBody = "{\"customizations\": [{\"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 listCustomModelsPath = "/v1/customizations";
server.enqueue(new MockResponse().setHeader("Content-type", "application/json").setResponseCode(200).setBody(mockResponseBody));
// Construct an instance of the ListCustomModelsOptions model
ListCustomModelsOptions listCustomModelsOptionsModel = new ListCustomModelsOptions.Builder().language("ar-MS").build();
// Invoke listCustomModels() with a valid options model and verify the result
Response<CustomModels> response = textToSpeechService.listCustomModels(listCustomModelsOptionsModel).execute();
assertNotNull(response);
CustomModels 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, listCustomModelsPath);
// Verify query params
Map<String, String> query = TestUtilities.parseQueryString(request);
assertNotNull(query);
assertEquals(query.get("language"), "ar-MS");
}
use of com.ibm.watson.text_to_speech.v1.model.ListCustomModelsOptions 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);
}
Aggregations