Skip to content

Commit

Permalink
Merge pull request #159 from athina-ai/hotfix/llama-parse-improvement
Browse files Browse the repository at this point in the history
Hotfix: Return whole parsed result
  • Loading branch information
vivek-athina authored Jan 7, 2025
2 parents 145ac6a + ab45dc3 commit ed39b71
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion athina/steps/parse_document.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def execute(self, input_data) -> Union[Dict[str, Any], None]:
start_time=start_time,
)

parsed_content = documents[0].text
parsed_content = "\n".join(doc.text for doc in documents)

return self._create_step_result(
status="success",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "athina"
version = "1.7.4"
version = "1.7.5"
description = "Python SDK to configure and run evaluations for your LLM-based application"
authors = ["Shiv Sakhuja <shiv@athina.ai>", "Akshat Gupta <akshat@athina.ai>", "Vivek Aditya <vivek@athina.ai>", "Akhil Bisht <akhil@athina.ai>"]
readme = "README.md"
Expand Down

0 comments on commit ed39b71

Please sign in to comment.