UNPKG

@plust/datasleuth

Version:

Build LLM-powered research pipelines and output structured data.

10 lines 248 B
/** * Types for pipeline execution and research steps */ /** * Type guard to check if an object is a ResearchError */ export function isResearchError(error) { return 'step' in error || 'code' in error; } //# sourceMappingURL=pipeline.js.map