Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/unstract/sdk/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "v0.78.0"
__version__ = "v0.78.1"


def get_sdk_version() -> str:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def _call_parser(
)
raise AdapterError(str(exe))

response_text = documents[0].text
response_text = "\n\n".join([doc.text for doc in documents if doc.text])
return response_text # type:ignore

def process(
Expand Down