Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LlamaIndexTS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mirrored_repos
MachineLearning
run-llama
LlamaIndexTS
Commits
f7a57ca3
Commit
f7a57ca3
authored
1 year ago
by
Yi Ding
Browse files
Options
Downloads
Patches
Plain Diff
fixed metadata deserialization
add changesets
parent
cfa93a78
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.changeset/good-games-serve.md
+5
-0
5 additions, 0 deletions
.changeset/good-games-serve.md
.changeset/soft-chairs-beg.md
+5
-0
5 additions, 0 deletions
.changeset/soft-chairs-beg.md
packages/core/src/storage/docStore/utils.ts
+2
-0
2 additions, 0 deletions
packages/core/src/storage/docStore/utils.ts
with
12 additions
and
0 deletions
.changeset/good-games-serve.md
0 → 100644
+
5
−
0
View file @
f7a57ca3
---
"
llamaindex"
:
patch
---
Fixed metadata deserialization (thanks @marcagve)
This diff is collapsed.
Click to expand it.
.changeset/soft-chairs-beg.md
0 → 100644
+
5
−
0
View file @
f7a57ca3
---
"
llamaindex"
:
patch
---
ChatGPT optimized prompts (thanks @LoganMarkewich)
This diff is collapsed.
Click to expand it.
packages/core/src/storage/docStore/utils.ts
+
2
−
0
View file @
f7a57ca3
...
@@ -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
}
`
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment