use of com.ibm.watson.text_to_speech.v1.model.ListWordsOptions in project java-sdk by watson-developer-cloud.
the class SpeechToTextTest method testListWordsWOptions.
// Test the listWords operation with a valid options model parameter
@Test
public void testListWordsWOptions() throws Throwable {
// Register a mock response
String mockResponseBody = "{\"words\": [{\"word\": \"word\", \"sounds_like\": [\"soundsLike\"], \"display_as\": \"displayAs\", \"count\": 5, \"source\": [\"source\"], \"error\": [{\"element\": \"element\"}]}]}";
String listWordsPath = "/v1/customizations/testString/words";
server.enqueue(new MockResponse().setHeader("Content-type", "application/json").setResponseCode(200).setBody(mockResponseBody));
// Construct an instance of the ListWordsOptions model
ListWordsOptions listWordsOptionsModel = new ListWordsOptions.Builder().customizationId("testString").wordType("all").sort("alphabetical").build();
// Invoke listWords() with a valid options model and verify the result
Response<Words> response = speechToTextService.listWords(listWordsOptionsModel).execute();
assertNotNull(response);
Words 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, listWordsPath);
// Verify query params
Map<String, String> query = TestUtilities.parseQueryString(request);
assertNotNull(query);
assertEquals(query.get("word_type"), "all");
assertEquals(query.get("sort"), "alphabetical");
}
use of com.ibm.watson.text_to_speech.v1.model.ListWordsOptions in project java-sdk by watson-developer-cloud.
the class TextToSpeechTest method testListWordsWOptions.
// Test the listWords operation with a valid options model parameter
@Test
public void testListWordsWOptions() throws Throwable {
// Register a mock response
String mockResponseBody = "{\"words\": [{\"word\": \"word\", \"translation\": \"translation\", \"part_of_speech\": \"Dosi\"}]}";
String listWordsPath = "/v1/customizations/testString/words";
server.enqueue(new MockResponse().setHeader("Content-type", "application/json").setResponseCode(200).setBody(mockResponseBody));
// Construct an instance of the ListWordsOptions model
ListWordsOptions listWordsOptionsModel = new ListWordsOptions.Builder().customizationId("testString").build();
// Invoke listWords() with a valid options model and verify the result
Response<Words> response = textToSpeechService.listWords(listWordsOptionsModel).execute();
assertNotNull(response);
Words 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, listWordsPath);
// Verify that there is no query string
Map<String, String> query = TestUtilities.parseQueryString(request);
assertNull(query);
}
use of com.ibm.watson.text_to_speech.v1.model.ListWordsOptions in project java-sdk by watson-developer-cloud.
the class CustomizationExample method main.
public static void main(String[] args) throws IOException {
TextToSpeech service = new TextToSpeech("<username>", "<password>");
// create custom voice model.
CreateVoiceModelOptions createOptions = new CreateVoiceModelOptions.Builder().name("my model").language("en-US").description("the model for testing").build();
VoiceModel customVoiceModel = service.createVoiceModel(createOptions).execute();
System.out.println(customVoiceModel);
// list custom voice models for US English.
ListVoiceModelsOptions listOptions = new ListVoiceModelsOptions.Builder().language("en-US").build();
VoiceModels customVoiceModels = service.listVoiceModels(listOptions);
System.out.println(customVoiceModels);
// update custom voice model.
UpdateVoiceModelOptions updateOptions = new UpdateVoiceModelOptions.Builder().customizationId(customVoiceModel.getCustomizationId()).name(newName).description("the updated model for testing").build();
service.updateVoiceModel(updateOptions).execute();
// list custom voice models regardless of language.
customVoiceModels = service.listVoiceModels().execute();
System.out.println(customVoiceModels);
// create multiple custom word translations
Word word1 = new Word();
word1.setWord("hodor");
word1.setTranslation("hold the door");
Word word2 = new Word();
word2.setWord("plz");
word2.setTranslation("please");
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 addOptions = new AddWordOptions.Builder().word("nat").translation("and that").customizationId(customVoiceModel.getCustomizationId()).build();
service.addWord(addOptions).execute();
// get custom word translations
ListWordsOptions listOptions = new ListWordsOptions.Builder().customizationId(customVoiceModel.getCustomizationId()).build();
Words words = service.listWords(listOptions).execute();
System.out.println(words);
// get custom word translation
GetWordOptions getOptions = new GetWordOptions.Builder().customizationId(customVoiceModel.getCustomizationId()).word("hodor").build();
Translation translation = service.getWord(getOptions).execute();
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(SynthesizeOptions.Accept.AUDIO_WAV).customizationId(customVoiceModel.getCustomizationId()).build();
InputStream in = service.synthesize(synthesizeOptions).execute();
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.getWord()).build();
service.deleteWord(deleteOptions1).execute();
DeleteWordOptions deleteOptions2 = new DeleteWordOptions.Builder().customizationId(customVoiceModel.getCustomizationId()).word(word2.getWord()).build();
service.deleteWord(deleteOptions2).execute();
// delete custom voice model
DeleteVoiceModelOptions deleteOptions = new DeleteVoiceModelOptions.Builder().customizationId(customVoiceModel.getCustomizationId()).build();
service.deleteVoiceModel(deleteOptions).execute();
// list custom voice models regardless of language.
customVoiceModels = service.listVoiceModels().execute();
System.out.println(customVoiceModels);
}
use of com.ibm.watson.text_to_speech.v1.model.ListWordsOptions in project java-sdk by watson-developer-cloud.
the class SpeechToTextIT method testGetWordsThreeTypeSort.
/**
* Test list words with type all and count sort.
*/
@Test
@Ignore
public void testGetWordsThreeTypeSort() {
ListWordsOptions listOptions = new ListWordsOptions.Builder().customizationId(customizationId).wordType(ListWordsOptions.WordType.ALL).sort(ListWordsOptions.Sort.COUNT).build();
Words result = service.listWords(listOptions).execute();
assertNotNull(result);
assertTrue(!result.getWords().isEmpty());
}
use of com.ibm.watson.text_to_speech.v1.model.ListWordsOptions in project java-sdk by watson-developer-cloud.
the class SpeechToTextIT method testGetWordsThreeSort.
/**
* Test list words with alphabetical sort.
*/
@Test
@Ignore
public void testGetWordsThreeSort() {
ListWordsOptions listOptions = new ListWordsOptions.Builder().customizationId(customizationId).sort(ListWordsOptions.Sort.ALPHABETICAL).build();
Words result = service.listWords(listOptions).execute();
assertNotNull(result);
assertTrue(!result.getWords().isEmpty());
}
Aggregations