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

21 lines (20 loc) 777 B
/** * Experiment result recording — TSV + optional JSONL. */ import type { ExperimentRecord, ExperimentStats, ResearchConfig } from "../types/index.js"; export declare class ResultRecorder { private config; private tsvPath; private jsonlPath; constructor(config: ResearchConfig); /** Creates results.tsv with header if it doesn't exist */ ensureResultsFile(): Promise<void>; /** Appends one TSV row to results.tsv */ appendTsv(record: ExperimentRecord): Promise<void>; /** Appends one JSON line to runs.jsonl */ appendJsonl(record: ExperimentRecord): Promise<void>; /** Reads all records from results.tsv */ readAll(): Promise<ExperimentRecord[]>; /** Returns summary stats */ getStats(): Promise<ExperimentStats>; }