@llamaindex/core
Advanced tools
Comparing version 0.2.8 to 0.2.9
{ | ||
"name": "@llamaindex/core", | ||
"type": "module", | ||
"version": "0.2.8", | ||
"version": "0.2.9", | ||
"description": "LlamaIndex Core Module", | ||
@@ -6,0 +6,0 @@ "exports": { |
@@ -719,3 +719,3 @@ import { getEnv, randomUUID, createSHA256, path, fs } from '@llamaindex/env'; | ||
const imageNode = new ImageNode({ | ||
id_: idGenerator(i, imageDoc), | ||
id_: imageDoc.id_ ?? idGenerator(i, imageDoc), | ||
text: textChunk, | ||
@@ -740,3 +740,3 @@ image: imageDoc.image, | ||
const node = new TextNode({ | ||
id_: idGenerator(i, textDoc), | ||
id_: textDoc.id_ ?? idGenerator(i, textDoc), | ||
text: textChunk, | ||
@@ -743,0 +743,0 @@ embedding: textDoc.embedding, |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
536309