/**
 * 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
}
