Skip to content

Commit

Permalink
changed llm-sherpa base url
Browse files Browse the repository at this point in the history
  • Loading branch information
patel-lyzr authored Jul 17, 2024
1 parent f2065ec commit 72f9d54
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build/lib/lyzr/utils/pdf_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def __init__(self) -> None:
)

def load_data(self, file_path: str, extra_info: dict = None) -> List[Document]:
llmsherpa_api_url = "https://readers.llmsherpa.com/api/document/developer/parseDocument?renderFormat=all"
llmsherpa_api_url = "https://lyzr-parse.dev.app.lyzr.ai/api/parseDocument?renderFormat=all"
loader = LayoutPDFReader(llmsherpa_api_url)

doc = loader.read_pdf(str(file_path))
Expand Down
2 changes: 1 addition & 1 deletion lyzr/utils/pdf_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def __init__(self) -> None:
)

def load_data(self, file_path: str, extra_info: dict = None) -> List[Document]:
llmsherpa_api_url = "https://readers.llmsherpa.com/api/document/developer/parseDocument?renderFormat=all"
llmsherpa_api_url = "https://lyzr-parse.dev.app.lyzr.ai/api/parseDocument?renderFormat=all"
loader = LayoutPDFReader(llmsherpa_api_url)

doc = loader.read_pdf(str(file_path))
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="lyzr",
version="0.1.41",
version="0.1.42",
author="lyzr",
description="",
long_description=open("README.md").read(),
Expand Down

0 comments on commit 72f9d54

Please sign in to comment.