tamar-model-client 0.1.18__py3-none-any.whl → 0.1.20__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- tamar_model_client/__init__.py +2 -0
- tamar_model_client/async_client.py +430 -539
- tamar_model_client/core/__init__.py +34 -0
- tamar_model_client/core/base_client.py +168 -0
- tamar_model_client/core/logging_setup.py +84 -0
- tamar_model_client/core/request_builder.py +221 -0
- tamar_model_client/core/response_handler.py +136 -0
- tamar_model_client/core/utils.py +171 -0
- tamar_model_client/error_handler.py +283 -0
- tamar_model_client/exceptions.py +371 -7
- tamar_model_client/json_formatter.py +36 -1
- tamar_model_client/logging_icons.py +60 -0
- tamar_model_client/sync_client.py +473 -485
- {tamar_model_client-0.1.18.dist-info → tamar_model_client-0.1.20.dist-info}/METADATA +217 -61
- tamar_model_client-0.1.20.dist-info/RECORD +33 -0
- {tamar_model_client-0.1.18.dist-info → tamar_model_client-0.1.20.dist-info}/top_level.txt +1 -0
- tests/__init__.py +1 -0
- tests/stream_hanging_analysis.py +357 -0
- tests/test_google_azure_final.py +448 -0
- tests/test_simple.py +235 -0
- tamar_model_client-0.1.18.dist-info/RECORD +0 -21
- {tamar_model_client-0.1.18.dist-info → tamar_model_client-0.1.20.dist-info}/WHEEL +0 -0
tamar_model_client/__init__.py
CHANGED
@@ -2,6 +2,7 @@ from .sync_client import TamarModelClient
|
|
2
2
|
from .async_client import AsyncTamarModelClient
|
3
3
|
from .exceptions import ModelManagerClientError, ConnectionError, ValidationError
|
4
4
|
from .json_formatter import JSONFormatter
|
5
|
+
from . import logging_icons
|
5
6
|
|
6
7
|
__all__ = [
|
7
8
|
"TamarModelClient",
|
@@ -10,4 +11,5 @@ __all__ = [
|
|
10
11
|
"ConnectionError",
|
11
12
|
"ValidationError",
|
12
13
|
"JSONFormatter",
|
14
|
+
"logging_icons",
|
13
15
|
]
|