@microsoft/teams-ai
Version:
SDK focused on building AI based applications for Microsoft Teams.
16 lines • 597 B
TypeScript
/**
* @module teams-ai
*/
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
import { TurnContext } from 'botbuilder-core';
import { TurnState } from '../TurnState';
import { Plan } from '../planners';
/**
* @private
* @returns {Function} A function that takes TurnContext, TState, and Plan as arguments and returns a string or StopCommandName.
*/
export declare function planReady<TState extends TurnState = TurnState>(): (_context: TurnContext, _state: TState, plan: Plan) => Promise<"" | "STOP">;
//# sourceMappingURL=PlanReady.d.ts.map