hikma-engine
Version:
Code Knowledge Graph Indexer - A sophisticated TypeScript-based indexer that transforms Git repositories into multi-dimensional knowledge stores for AI agents
10 lines • 424 B
TypeScript
import { BaseDTO } from './base.dto';
export declare class EmbeddingNodeDTO extends BaseDTO {
node_id: string;
embedding: string;
source_text: string | null;
node_type: string | null;
file_path: string | null;
constructor(id: string, node_id: string, embedding: string, source_text: string | null, node_type: string | null, file_path?: string | null);
}
//# sourceMappingURL=EmbeddingNodeDTO.d.ts.map