@microsoft/agents-copilotstudio-client
Version:
Microsoft Copilot Studio Client for JavaScript. Copilot Studio Client.
24 lines (20 loc) • 450 B
text/typescript
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
export interface Strategy {
getConversationUrl(conversationId?: string): string;
}
/**
* Settings required to configure the Strategy.
*/
export interface StrategySettings {
/**
* The host URL of the Copilot Studio service.
*/
readonly host: URL;
/**
* The schema identifier for the agent.
*/
readonly schema: string;
}