UNPKG

@microsoft/agents-copilotstudio-client

Version:

Microsoft Copilot Studio Client for JavaScript. Copilot Studio Client.

19 lines (17 loc) 304 B
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ /** * Enum representing the type of agent. */ export enum AgentType { /** * Represents a published agent. */ Published = 0, /** * Represents a prebuilt agent. */ Prebuilt = 1 }