@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
18 lines • 732 B
JavaScript
/**
* Type definitions for the NeuroLink AutoResearch system.
*
* An autonomous experiment loop that proposes code changes, executes
* experiments, evaluates results against a deterministic metric, and
* keeps or discards each change — running unattended for hours.
*/
// ── Defaults ─────────────────────────────────────────────
export const AUTORESEARCH_DEFAULTS = {
programPath: "program.md",
resultsPath: "results.tsv",
statePath: ".autoresearch/state.json",
logPath: "run.log",
timeoutMs: 600_000,
branchPrefix: "autoresearch/",
thinkingLevel: "medium",
};
//# sourceMappingURL=autoresearch.js.map