hikma-engine
Version:
Code Knowledge Graph Indexer - A sophisticated TypeScript-based indexer that transforms Git repositories into multi-dimensional knowledge stores for AI agents
16 lines (15 loc) • 542 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.EmbeddingNodeDTO = void 0;
const base_dto_1 = require("./base.dto");
class EmbeddingNodeDTO extends base_dto_1.BaseDTO {
constructor(id, node_id, embedding, source_text, node_type, file_path = null) {
super(id);
this.node_id = node_id;
this.embedding = embedding;
this.source_text = source_text;
this.node_type = node_type;
this.file_path = file_path;
}
}
exports.EmbeddingNodeDTO = EmbeddingNodeDTO;