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.

21 lines (20 loc) 732 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.OldSpanKind = exports.TraceStatus = void 0; // Trace status enum var TraceStatus; (function (TraceStatus) { TraceStatus["OK"] = "OK"; TraceStatus["ERROR"] = "ERROR"; TraceStatus["UNSET"] = "UNSET"; })(TraceStatus || (exports.TraceStatus = TraceStatus = {})); // SpanData interface for SpanTable storage var OldSpanKind; (function (OldSpanKind) { OldSpanKind["AGENT"] = "AGENT"; OldSpanKind["TOOL"] = "TOOL"; OldSpanKind["LLM"] = "LLM"; OldSpanKind["EMBEDDING"] = "EMBEDDING"; OldSpanKind["FORMATTER"] = "FORMATTER"; OldSpanKind["COMMON"] = "COMMON"; })(OldSpanKind || (exports.OldSpanKind = OldSpanKind = {}));