Skip to content
Snippets Groups Projects
Commit f7a57ca3 authored by Yi Ding's avatar Yi Ding
Browse files

fixed metadata deserialization

add changesets
parent cfa93a78
No related branches found
No related tags found
No related merge requests found
---
"llamaindex": patch
---
Fixed metadata deserialization (thanks @marcagve)
---
"llamaindex": patch
---
ChatGPT optimized prompts (thanks @LoganMarkewich)
...@@ -21,12 +21,14 @@ export function jsonToDoc(docDict: Record<string, any>): BaseNode { ...@@ -21,12 +21,14 @@ export function jsonToDoc(docDict: Record<string, any>): BaseNode {
id_: dataDict.id_, id_: dataDict.id_,
embedding: dataDict.embedding, embedding: dataDict.embedding,
hash: dataDict.hash, hash: dataDict.hash,
metadata: dataDict.metadata,
}); });
} else if (docType === ObjectType.TEXT) { } else if (docType === ObjectType.TEXT) {
doc = new TextNode({ doc = new TextNode({
text: dataDict.text, text: dataDict.text,
id_: dataDict.id_, id_: dataDict.id_,
hash: dataDict.hash, hash: dataDict.hash,
metadata: dataDict.metadata,
}); });
} else { } else {
throw new Error(`Unknown doc type: ${docType}`); throw new Error(`Unknown doc type: ${docType}`);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment