Skip to content

Commit c97cb45

Browse files
Adopted namespace package of unstract
1 parent 8404267 commit c97cb45

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ pip install llmwhisperer-client
2323
First, import the `LLMWhispererClient` from the `client` module:
2424

2525
```python
26-
from llmwhisperer.client import LLMWhispererClient
26+
from unstract.llmwhisperer.client import LLMWhispererClient
2727
```
2828

2929
Then, create an instance of the `LLMWhispererClient`:

pdm.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ lint = [
5050

5151
[tool.pdm.version]
5252
source = "file"
53-
path = "src/llmwhisperer/__init__.py"
53+
path = "src/unstract/llmwhisperer/__init__.py"
5454

5555
[tool.isort]
5656
line_length = 120
File renamed without changes.

src/llmwhisperer/client.py renamed to src/unstract/llmwhisperer/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
import requests
2424

25-
from llmwhisperer.utils import LLMWhispererUtils
25+
from unstract.llmwhisperer.utils import LLMWhispererUtils
2626

2727
BASE_URL = "https://llmwhisperer-api.unstract.com/v1"
2828

File renamed without changes.

tests/client_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
import pytest
77

8-
from llmwhisperer.client import LLMWhispererClient
8+
from unstract.llmwhisperer.client import LLMWhispererClient
99

1010
logger = logging.getLogger(__name__)
1111

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import pytest
44

5-
from llmwhisperer.client import LLMWhispererClient
5+
from unstract.llmwhisperer.client import LLMWhispererClient
66

77

88
@pytest.fixture(name="client")

tests/utils_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import pytest
22

3-
from llmwhisperer.utils import LLMWhispererUtils
3+
from unstract.llmwhisperer.utils import LLMWhispererUtils
44

55

66
def test_redact_key_normal():

0 commit comments

Comments
 (0)