@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
33 lines (32 loc) • 620 B
TypeScript
export type IndexDocument = {
id: string;
title: string;
description: string;
content: string;
section: string;
tags: string[];
path: string;
};
export type SearchIndex = {
version: number;
generatedAt: string;
documentCount: number;
documents: IndexDocument[];
};
export type SearchResult = {
id: string;
title: string;
description: string;
section: string;
path: string;
score: number;
content?: string;
};
export type SectionInfo = {
name: string;
pageCount: number;
pages: {
title: string;
path: string;
}[];
};