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

13 lines (12 loc) 468 B
/** * Research state persistence — file-backed JSON store. */ import type { ResearchState } from "../types/index.js"; export declare class ResearchStateStore { private filePath; constructor(repoPath: string, statePath: string); load(): Promise<ResearchState | null>; save(state: ResearchState): Promise<void>; initialize(tag: string, branch: string): Promise<ResearchState>; update(patch: Partial<ResearchState>): Promise<ResearchState>; }