construct-labs-crm-env 0.1.1__py3-none-any.whl → 0.1.3__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.
- construct_labs_crm_env/__init__.py +7 -2
- construct_labs_crm_env/client.py +65 -554
- construct_labs_crm_env/models.py +1 -2
- construct_labs_crm_env/tools.py +611 -0
- {construct_labs_crm_env-0.1.1.dist-info → construct_labs_crm_env-0.1.3.dist-info}/METADATA +2 -1
- construct_labs_crm_env-0.1.3.dist-info/RECORD +10 -0
- construct_labs_crm_env-0.1.3.dist-info/licenses/LICENSE +56 -0
- construct_labs_crm_env/_vendored/LICENSE.openenv +0 -28
- construct_labs_crm_env/_vendored/__init__.py +0 -14
- construct_labs_crm_env/_vendored/_client.py +0 -216
- construct_labs_crm_env/_vendored/_types.py +0 -82
- construct_labs_crm_env-0.1.1.dist-info/RECORD +0 -13
- construct_labs_crm_env-0.1.1.dist-info/licenses/LICENSE +0 -42
- {construct_labs_crm_env-0.1.1.dist-info → construct_labs_crm_env-0.1.3.dist-info}/WHEEL +0 -0
|
@@ -4,9 +4,11 @@ This package provides a Python client for interacting with the Construct Labs
|
|
|
4
4
|
CRM Agent Environment - a reinforcement learning environment for training
|
|
5
5
|
agents to interact with CRM systems.
|
|
6
6
|
|
|
7
|
-
For
|
|
7
|
+
For licensing and support, contact hello@construct-labs.com
|
|
8
8
|
"""
|
|
9
9
|
|
|
10
|
+
from importlib.metadata import PackageNotFoundError, version
|
|
11
|
+
|
|
10
12
|
from .client import CrmAgentEnv
|
|
11
13
|
from .models import (
|
|
12
14
|
CRMActionType,
|
|
@@ -16,7 +18,10 @@ from .models import (
|
|
|
16
18
|
)
|
|
17
19
|
from .protocol import ParsedAction
|
|
18
20
|
|
|
19
|
-
|
|
21
|
+
try:
|
|
22
|
+
__version__ = version("construct-labs-crm-env")
|
|
23
|
+
except PackageNotFoundError:
|
|
24
|
+
__version__ = "0.0.0+dev"
|
|
20
25
|
|
|
21
26
|
__all__ = [
|
|
22
27
|
# Main client
|