Uses of Class
com.azure.ai.textanalytics.models.TextAnalyticsRequestOptions
Packages that use TextAnalyticsRequestOptions
Package
Description
Azure AI Language Service
is a cloud-based natural language processing (NLP) service offered by Microsoft Azure.
Package containing the data models for MicrosoftCognitiveLanguageServiceTextAnalysis.
-
Uses of TextAnalyticsRequestOptions in com.azure.ai.textanalytics
Methods in com.azure.ai.textanalytics with parameters of type TextAnalyticsRequestOptionsModifier and TypeMethodDescriptionTextAnalyticsAsyncClient.analyzeSentimentBatch(Iterable<String> documents, String language, TextAnalyticsRequestOptions options) Deprecated.TextAnalyticsClient.analyzeSentimentBatch(Iterable<String> documents, String language, TextAnalyticsRequestOptions options) Deprecated.Mono<com.azure.core.http.rest.Response<AnalyzeSentimentResultCollection>>TextAnalyticsAsyncClient.analyzeSentimentBatchWithResponse(Iterable<TextDocumentInput> documents, TextAnalyticsRequestOptions options) Deprecated.com.azure.core.http.rest.Response<AnalyzeSentimentResultCollection>TextAnalyticsClient.analyzeSentimentBatchWithResponse(Iterable<TextDocumentInput> documents, TextAnalyticsRequestOptions options, com.azure.core.util.Context context) Deprecated.TextAnalyticsAsyncClient.detectLanguageBatch(Iterable<String> documents, String countryHint, TextAnalyticsRequestOptions options) Returns the detected language for each of documents with the provided country hint and request option.TextAnalyticsClient.detectLanguageBatch(Iterable<String> documents, String countryHint, TextAnalyticsRequestOptions options) Detects Language for a batch of document with the provided country hint and request options.Mono<com.azure.core.http.rest.Response<DetectLanguageResultCollection>>TextAnalyticsAsyncClient.detectLanguageBatchWithResponse(Iterable<DetectLanguageInput> documents, TextAnalyticsRequestOptions options) Returns the detected language for a batch ofdocumentwith provided request options.com.azure.core.http.rest.Response<DetectLanguageResultCollection>TextAnalyticsClient.detectLanguageBatchWithResponse(Iterable<DetectLanguageInput> documents, TextAnalyticsRequestOptions options, com.azure.core.util.Context context) Detects Language for a batch ofdocumentwith provided request options.TextAnalyticsAsyncClient.extractKeyPhrasesBatch(Iterable<String> documents, String language, TextAnalyticsRequestOptions options) Returns a list of strings denoting the key phrases in the document with provided language code and request options.TextAnalyticsClient.extractKeyPhrasesBatch(Iterable<String> documents, String language, TextAnalyticsRequestOptions options) Returns a list of strings denoting the key phrases in the documents with provided language code and request options.Mono<com.azure.core.http.rest.Response<ExtractKeyPhrasesResultCollection>>TextAnalyticsAsyncClient.extractKeyPhrasesBatchWithResponse(Iterable<TextDocumentInput> documents, TextAnalyticsRequestOptions options) Returns a list of strings denoting the key phrases in the document with provided request options.com.azure.core.http.rest.Response<ExtractKeyPhrasesResultCollection>TextAnalyticsClient.extractKeyPhrasesBatchWithResponse(Iterable<TextDocumentInput> documents, TextAnalyticsRequestOptions options, com.azure.core.util.Context context) Returns a list of strings denoting the key phrases in the a batch ofdocumentwith request options.TextAnalyticsAsyncClient.recognizeEntitiesBatch(Iterable<String> documents, String language, TextAnalyticsRequestOptions options) Returns a list of general categorized entities for the provided list of documents with the provided language code and request options.TextAnalyticsClient.recognizeEntitiesBatch(Iterable<String> documents, String language, TextAnalyticsRequestOptions options) Returns a list of general categorized entities for the provided list of documents with provided language code and request options.Mono<com.azure.core.http.rest.Response<RecognizeEntitiesResultCollection>>TextAnalyticsAsyncClient.recognizeEntitiesBatchWithResponse(Iterable<TextDocumentInput> documents, TextAnalyticsRequestOptions options) Returns a list of general categorized entities for the provided list ofdocumentwith provided request options.com.azure.core.http.rest.Response<RecognizeEntitiesResultCollection>TextAnalyticsClient.recognizeEntitiesBatchWithResponse(Iterable<TextDocumentInput> documents, TextAnalyticsRequestOptions options, com.azure.core.util.Context context) Returns a list of general categorized entities for the provided list ofdocumentwith provided request options.TextAnalyticsAsyncClient.recognizeLinkedEntitiesBatch(Iterable<String> documents, String language, TextAnalyticsRequestOptions options) Returns a list of recognized entities with links to a well-known knowledge base for the list of documents with provided language code and request options.TextAnalyticsClient.recognizeLinkedEntitiesBatch(Iterable<String> documents, String language, TextAnalyticsRequestOptions options) Returns a list of recognized entities with links to a well-known knowledge base for the list of documents with provided language code and request options.Mono<com.azure.core.http.rest.Response<RecognizeLinkedEntitiesResultCollection>>TextAnalyticsAsyncClient.recognizeLinkedEntitiesBatchWithResponse(Iterable<TextDocumentInput> documents, TextAnalyticsRequestOptions options) Returns a list of recognized entities with links to a well-known knowledge base for the list ofdocumentwith provided request options.com.azure.core.http.rest.Response<RecognizeLinkedEntitiesResultCollection>TextAnalyticsClient.recognizeLinkedEntitiesBatchWithResponse(Iterable<TextDocumentInput> documents, TextAnalyticsRequestOptions options, com.azure.core.util.Context context) Returns a list of recognized entities with links to a well-known knowledge base for the list ofdocumentand request options. -
Uses of TextAnalyticsRequestOptions in com.azure.ai.textanalytics.models
Subclasses of TextAnalyticsRequestOptions in com.azure.ai.textanalytics.modelsModifier and TypeClassDescriptionfinal classConfigurations that allow callers to specify details about how to execute an abstractive summarization in a set of documents.final classTheAnalyzeHealthcareEntitiesOptionsmodel.final classTheAnalyzeSentimentOptionsmodel.final classConfigurations that allow callers to specify details about how to execute an extractive summarization in a set of documents.final classTheRecognizePiiEntitiesOptionsmodel.Methods in com.azure.ai.textanalytics.models that return TextAnalyticsRequestOptionsModifier and TypeMethodDescriptionTextAnalyticsRequestOptions.setIncludeStatistics(boolean includeStatistics) Set the value ofincludeStatistics.TextAnalyticsRequestOptions.setModelVersion(String modelVersion) Set the model version.TextAnalyticsRequestOptions.setServiceLogsDisabled(boolean disableServiceLogs) Sets the value of service logs disable status.
TextAnalyticsAsyncClient.analyzeSentimentBatch(Iterable, String, AnalyzeSentimentOptions).