UNPKG

@azure/ai-text-analytics

Version:
11 lines 598 B
// 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