@microsoft/botbuilder-m365
Version:
M365 extensions for Microsoft BotBuilder, Alpha release.
23 lines • 761 B
JavaScript
;
/**
* @module botbuilder-m365
*/
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.AzureOpenAIPlanner = void 0;
const OpenAIClients_1 = require("./OpenAIClients");
const OpenAIPlanner_1 = require("./OpenAIPlanner");
class AzureOpenAIPlanner extends OpenAIPlanner_1.OpenAIPlanner {
createClient(options) {
return new OpenAIClients_1.AzureOpenAIClient({
apiKey: options.apiKey,
apiVersion: options.apiVersion,
endpoint: options.endpoint
});
}
}
exports.AzureOpenAIPlanner = AzureOpenAIPlanner;
//# sourceMappingURL=AzureOpenAIPlanner.js.map