UNPKG

@microsoft/teams-ai

Version:

SDK focused on building AI based applications for Microsoft Teams.

18 lines 786 B
/** * @module teams-ai */ /** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ import { TurnContext } from 'botbuilder'; import { PredictedSayCommand } from '../planners'; import { TurnState } from '../TurnState'; /** * @private * @param {boolean} feedbackLoopEnabled - If true, the feedback loop UI for Teams will be enabled. * @param {'default' | 'custom'} feedbackLoopType - the type of UI to use for feedback loop * @returns {''} - An empty string. */ export declare function sayCommand<TState extends TurnState = TurnState>(feedbackLoopEnabled?: boolean, feedbackLoopType?: 'default' | 'custom'): (context: TurnContext, _state: TState, data: PredictedSayCommand) => Promise<string>; //# sourceMappingURL=SayCommand.d.ts.map