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
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ urls = { Homepage = "https://unstract.com", "Release notes" = "https://github.co
license = { text = "AGPL v3" }
authors = [{ name = "Zipstack Inc", email = "devsupport@zipstack.com" }]
keywords = ["unstract tools-development-kit apps development-kit sdk"]
requires-python = ">=3.9, <3.13"
requires-python = ">=3.12, <3.13"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
Expand Down Expand Up @@ -69,7 +69,7 @@ dependencies = [
"httpx>=0.25.2",
"pdfplumber>=0.11.2",
"redis>=5.2.1",
"llmwhisperer-client>=2.2.1",
"llmwhisperer-client>=2.5.0",
]

[project.optional-dependencies]
Expand Down
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.1"
__version__ = "v0.79.0"


def get_sdk_version() -> str:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ class WhispererConfig:
WAIT_FOR_COMPLETION = "wait_for_completion"
LOGGING_LEVEL = "logging_level"
ADD_LINE_NOS = "add_line_nos"
INCLUDE_LINE_CONFIDENCE = "include_line_confidence"
EXTRACT_ALL_LINES = "extract_all_lines"
LINES = "lines"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,7 @@ def get_whisperer_params(
WhispererDefaults.PAGE_SEPARATOR,
),
WhispererConfig.ADD_LINE_NOS: extra_params.enable_highlight,
WhispererConfig.INCLUDE_LINE_CONFIDENCE: extra_params.enable_highlight,
# Not providing default value to maintain legacy compatablity
# these are optional params and identifiers for audit
WhispererConfig.TAG: extra_params.tag
Expand Down
Loading