Compare commits

...

1 Commits

Author SHA1 Message Date
Logan Markewich 7455c88d4a fix to json bug 2024-03-07 08:52:09 -06:00
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -229,8 +229,8 @@ class LlamaParse(BasePydanticReader):
return [
Document(
text=result.json()[self.result_type.value],
metadata=extra_info,
text=result[self.result_type.value],
metadata=extra_info or {},
)
]
+1 -1
View File
@@ -1,6 +1,6 @@
[tool.poetry]
name = "llama-parse"
version = "0.3.7"
version = "0.3.8"
description = "Parse files into RAG-Optimized formats."
authors = ["Logan Markewich <logan@llamaindex.ai>"]
license = "MIT"