@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
11 lines (10 loc) • 342 B
TypeScript
/**
* Experiment runner — spawn, timeout, capture.
*/
import type { ExperimentSummary, ResearchConfig } from "../types/index.js";
export declare class ExperimentRunner {
private config;
constructor(config: ResearchConfig);
/** Runs the experiment with hard timeout, returns summary */
run(): Promise<ExperimentSummary>;
}