This topic provides basic instructions for obtaining credentials for Watson services and provides relevant links for each service and the Watson Developer Cloud SDKs.
Watson services homepages:
IBM Watson Speech to Text offers a variety of options for transcribing audio in various languages and formats:
WebSockets – establish a persistent connection over the WebSocket protocol for continuous transcription
Sessionless – transcribe audio without the overhead of establishing and maintaining a session
Sessions – create long multi-turn exchanges with the service or establish multiple parallel conversations with a particular instance of the service
Asynchronous – provides a non-blocking HTTP interface for transcribing audio. You can register a callback URL to be notified of job status and results, or you can poll the service to learn job status and retrieve results manually.
See the Getting Started topic to learn how to get started with Speech to Text and other Watson services. For more Speech to Text details and examples, see the API reference and the documentation.
The Solrj client and the Java SDK are independent so you can update them individually. Always make sure you use the latest version of the Java SDK.
See the GitHub release page for updates https://github.com/watson-developer-cloud/java-sdk/releases
AlchemyLanguage is a collection of text analysis methods that provide deeper insight into your text or HTML content. See the Getting Started topic to learn how to get started with AlchemyLanguage and other Watson services. For more AlchemyLanguage details and examples, see the API reference and documentation.
To see which languages are supported for each function, refer to each function's entry in the API reference.
By default, AlchemyLanguage automatically detects the language of your source text. You can manually specify the language of your content with the language
query parameter. (e.g. language=spanish
)
When you use an HTML or URL function of the API, AlchemyLanguage cleans the content to prepare the source text for the analysis. The sourceText
parameter allows you to customize the cleaning process with the following options:
cleaned_or_raw
(default) -- Removes website elements such as links, ads, etc. If cleaning fails, raw web page text is usedcleaned
-- Removes website elements such as links, ads, etc.raw
-- Uses raw web page text with no cleaningcquery
-- Uses the visual constraints query that you specify in the cquery
parameter. See the documentation for details about visual constraints queries.xpath
-- Uses the XPath query that you specify in the xpath
parameterxpath_or_raw
-- Uses the results of an XPath query, falling back to plain text if the XPath query returns nothingcleaned_and_xpath
-- Uses the results of an XPath query on cleaned web page text