@cognigy/rest-api-client
Version:
Cognigy REST-Client
23 lines • 563 B
JavaScript
export const debugEventTypes = [
"activeEntrypointsChanged",
"contextChanged",
"finalPing",
"inputChanged",
"nodeError",
"nodeExecuted",
"input",
"output",
"profileChanged",
"switchedFlow",
"streamingChunk",
"streamingChunkReset",
"agentToolCall",
"agentToolResult",
"agentSkillLoaded",
"agentLlmCall",
];
export function isValidDebugEndpointEventType(value) {
return (typeof value === "string" &&
debugEventTypes.indexOf(value) !== -1);
}
//# sourceMappingURL=TDebugEndpointEvent.js.map