@azure/ai-text-analytics
Version:
An isomorphic client library for the Azure Text Analytics service.
11 lines • 591 B
JavaScript
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
import { makeAnalyzeSentimentErrorResult, makeAnalyzeSentimentResult } from "./analyzeSentimentResult";
import { combineSuccessfulAndErroneousDocumentsWithStatisticsAndModelVersion } from "./textAnalyticsResult";
/**
* @internal
*/
export function makeAnalyzeSentimentResultArray(input, response) {
return combineSuccessfulAndErroneousDocumentsWithStatisticsAndModelVersion(input, response, makeAnalyzeSentimentResult, makeAnalyzeSentimentErrorResult);
}
//# sourceMappingURL=analyzeSentimentResultArray.js.map