UNPKG

@microsoft/agents-copilotstudio-client

Version:

Microsoft Copilot Studio Client for JavaScript. Copilot Studio Client.

19 lines (17 loc) 324 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 = 'Published', /** * Represents a prebuilt agent. */ Prebuilt = 'Prebuilt', }