UNPKG

@agentscope/studio

Version:

AgentScope Studio is a powerful local monitoring and visualization tool designed to provide real-time insights into your system's performance and behavior.

22 lines (21 loc) 598 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ReplyingStateManager = void 0; class ReplyingStateManager { constructor() { this.isReplying = false; } static getInstance() { if (!ReplyingStateManager.instance) { ReplyingStateManager.instance = new ReplyingStateManager(); } return ReplyingStateManager.instance; } setReplyingState(state) { this.isReplying = state; } getReplyingState() { return this.isReplying; } } exports.ReplyingStateManager = ReplyingStateManager;