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