UNPKG

@botbuildercommunity/middleware-aws-comprehend

Version:

Bot Framework middleware component for the Amazon AWS Comprehend service, including sentiment analysis, language detection, entity extraction, and keyword recognition.

11 lines (10 loc) 368 B
import { Middleware, TurnContext } from 'botbuilder'; import { Engine } from '@botbuildercommunity/middleware-engine-core'; /** * @module botbuildercommunity/middleware-aws-comprehend */ export declare class EntityExtraction implements Middleware { engine: Engine; constructor(); onTurn(context: TurnContext, next: () => Promise<void>): Promise<void>; }