@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
16 lines (15 loc) • 649 B
TypeScript
/**
* Prompt compilation for the autoresearch worker.
*
* Reads program.md and combines it with current state and recent
* results to build the system prompt and per-cycle prompt.
*/
import type { ResearchConfig, ResearchState, ExperimentRecord } from "../types/index.js";
export declare class PromptCompiler {
private config;
constructor(config: ResearchConfig);
/** Reads program.md and builds the system prompt */
buildSystemPrompt(): Promise<string>;
/** Builds the per-cycle prompt with current state + recent results */
buildCyclePrompt(state: ResearchState, recentResults: ExperimentRecord[]): Promise<string>;
}