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 c97cb45 commit 4feac34Copy full SHA for 4feac34
src/unstract/llmwhisperer/__init__.py
@@ -1,5 +1,7 @@
1
__version__ = "0.2.0"
2
3
+from .client import LLMWhispererClient # noqa: F401
4
+
5
6
def get_sdk_version():
7
"""Returns the SDK version."""
tests/client_test.py
@@ -5,7 +5,7 @@
import pytest
8
-from unstract.llmwhisperer.client import LLMWhispererClient
+from unstract.llmwhisperer import LLMWhispererClient
9
10
logger = logging.getLogger(__name__)
11
0 commit comments