UNPKG

@juspay/neurolink

Version:

Universal AI Development Platform with working MCP integration, multi-provider support, voice (TTS/STT/realtime), and professional CLI. 58+ external MCP servers discoverable, multimodal file processing, RAG pipelines. Build, test, and deploy AI applicatio

17 lines (16 loc) 609 B
/** * Deterministic experiment log parser. * * Extracts metrics from run.log output. Never throws — returns * crashed/timedOut summary on parse failure. */ import type { ExperimentSummary, MetricConfig, MemoryMetricConfig } from "../types/index.js"; /** * Parse experiment output into a structured summary. * * This function is deterministic and pure — no side effects, no throws. */ export declare function parseExperimentSummary(logContent: string, metricConfig: MetricConfig, memoryConfig?: MemoryMetricConfig, options?: { timedOut?: boolean; exitCode?: number; }): ExperimentSummary;