We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de8c46a commit db37daeCopy full SHA for db37dae
libs/upstage/pyproject.toml
@@ -1,6 +1,6 @@
1
[tool.poetry]
2
name = "langchain-upstage"
3
-version = "0.4.0rc1"
+version = "0.4.0rc2"
4
description = "An integration package connecting Upstage and LangChain"
5
authors = []
6
readme = "README.md"
libs/upstage/tests/integration_tests/test_document_parse.py
@@ -48,6 +48,9 @@ def test_document_parse(
48
)
49
documents = loader.load()
50
if split == "element":
51
- assert len(documents) == 15
+ if ocr == "auto":
52
+ assert len(documents) == 14
53
+ else:
54
+ assert len(documents) == 15
55
else:
56
assert len(documents) == 1
0 commit comments