ibm-watsonx-orchestrate 1.12.2__py3-none-any.whl → 1.13.0b1__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.
- ibm_watsonx_orchestrate/__init__.py +1 -1
- ibm_watsonx_orchestrate/agent_builder/connections/types.py +34 -3
- ibm_watsonx_orchestrate/agent_builder/knowledge_bases/types.py +13 -2
- ibm_watsonx_orchestrate/agent_builder/models/types.py +17 -1
- ibm_watsonx_orchestrate/agent_builder/toolkits/types.py +14 -2
- ibm_watsonx_orchestrate/agent_builder/tools/__init__.py +1 -1
- ibm_watsonx_orchestrate/agent_builder/tools/types.py +21 -3
- ibm_watsonx_orchestrate/agent_builder/voice_configurations/__init__.py +1 -1
- ibm_watsonx_orchestrate/agent_builder/voice_configurations/types.py +11 -0
- ibm_watsonx_orchestrate/cli/commands/agents/agents_controller.py +31 -53
- ibm_watsonx_orchestrate/cli/commands/connections/connections_command.py +2 -2
- ibm_watsonx_orchestrate/cli/commands/connections/connections_controller.py +54 -28
- ibm_watsonx_orchestrate/cli/commands/copilot/copilot_command.py +36 -2
- ibm_watsonx_orchestrate/cli/commands/copilot/copilot_controller.py +270 -26
- ibm_watsonx_orchestrate/cli/commands/copilot/copilot_server_controller.py +4 -4
- ibm_watsonx_orchestrate/cli/commands/evaluations/evaluations_command.py +30 -3
- ibm_watsonx_orchestrate/cli/commands/evaluations/evaluations_environment_manager.py +158 -0
- ibm_watsonx_orchestrate/cli/commands/knowledge_bases/knowledge_bases_command.py +26 -0
- ibm_watsonx_orchestrate/cli/commands/knowledge_bases/knowledge_bases_controller.py +150 -34
- ibm_watsonx_orchestrate/cli/commands/models/models_command.py +2 -2
- ibm_watsonx_orchestrate/cli/commands/models/models_controller.py +29 -10
- ibm_watsonx_orchestrate/cli/commands/server/server_command.py +50 -18
- ibm_watsonx_orchestrate/cli/commands/toolkit/toolkit_controller.py +139 -27
- ibm_watsonx_orchestrate/cli/commands/tools/tools_command.py +2 -2
- ibm_watsonx_orchestrate/cli/commands/tools/tools_controller.py +43 -29
- ibm_watsonx_orchestrate/cli/commands/voice_configurations/voice_configurations_controller.py +23 -11
- ibm_watsonx_orchestrate/cli/common.py +26 -0
- ibm_watsonx_orchestrate/cli/config.py +30 -1
- ibm_watsonx_orchestrate/client/agents/agent_client.py +1 -1
- ibm_watsonx_orchestrate/client/connections/connections_client.py +1 -14
- ibm_watsonx_orchestrate/client/copilot/cpe/copilot_cpe_client.py +55 -11
- ibm_watsonx_orchestrate/client/knowledge_bases/knowledge_base_client.py +6 -2
- ibm_watsonx_orchestrate/client/model_policies/model_policies_client.py +1 -1
- ibm_watsonx_orchestrate/client/models/models_client.py +1 -1
- ibm_watsonx_orchestrate/client/threads/threads_client.py +34 -0
- ibm_watsonx_orchestrate/client/tools/tempus_client.py +4 -2
- ibm_watsonx_orchestrate/client/utils.py +29 -7
- ibm_watsonx_orchestrate/docker/compose-lite.yml +3 -2
- ibm_watsonx_orchestrate/docker/default.env +15 -10
- ibm_watsonx_orchestrate/flow_builder/flows/flow.py +28 -12
- ibm_watsonx_orchestrate/flow_builder/types.py +25 -0
- ibm_watsonx_orchestrate/flow_builder/utils.py +1 -9
- ibm_watsonx_orchestrate/utils/async_helpers.py +31 -0
- ibm_watsonx_orchestrate/utils/docker_utils.py +1177 -33
- ibm_watsonx_orchestrate/utils/environment.py +165 -20
- ibm_watsonx_orchestrate/utils/exceptions.py +1 -1
- ibm_watsonx_orchestrate/utils/tokens.py +51 -0
- ibm_watsonx_orchestrate/utils/utils.py +57 -2
- {ibm_watsonx_orchestrate-1.12.2.dist-info → ibm_watsonx_orchestrate-1.13.0b1.dist-info}/METADATA +2 -2
- {ibm_watsonx_orchestrate-1.12.2.dist-info → ibm_watsonx_orchestrate-1.13.0b1.dist-info}/RECORD +53 -48
- {ibm_watsonx_orchestrate-1.12.2.dist-info → ibm_watsonx_orchestrate-1.13.0b1.dist-info}/WHEEL +0 -0
- {ibm_watsonx_orchestrate-1.12.2.dist-info → ibm_watsonx_orchestrate-1.13.0b1.dist-info}/entry_points.txt +0 -0
- {ibm_watsonx_orchestrate-1.12.2.dist-info → ibm_watsonx_orchestrate-1.13.0b1.dist-info}/licenses/LICENSE +0 -0
@@ -6,16 +6,32 @@ import subprocess
|
|
6
6
|
import sys
|
7
7
|
import tempfile
|
8
8
|
from pathlib import Path
|
9
|
+
from typing import Tuple, OrderedDict
|
9
10
|
from urllib.parse import urlparse
|
11
|
+
from enum import Enum
|
10
12
|
|
11
13
|
from dotenv import dotenv_values
|
12
14
|
|
15
|
+
from ibm_watsonx_orchestrate.cli.commands.environment.types import EnvironmentAuthType
|
13
16
|
from ibm_watsonx_orchestrate.cli.commands.server.types import WatsonXAIEnvConfig, ModelGatewayEnvConfig
|
14
17
|
from ibm_watsonx_orchestrate.cli.config import USER_ENV_CACHE_HEADER, Config
|
15
18
|
from ibm_watsonx_orchestrate.client.utils import is_arm_architecture
|
19
|
+
from ibm_watsonx_orchestrate.utils.utils import parse_bool_safe, parse_int_safe, parse_bool_safe_and_get_raw_val
|
20
|
+
|
16
21
|
|
17
22
|
logger = logging.getLogger(__name__)
|
18
23
|
|
24
|
+
class DeveloperEditionSources(str, Enum):
|
25
|
+
MYIBM = "myibm"
|
26
|
+
ORCHESTRATE = "orchestrate"
|
27
|
+
INTERNAL = "internal"
|
28
|
+
CUSTOM = "custom"
|
29
|
+
|
30
|
+
def __str__(self):
|
31
|
+
return self.value
|
32
|
+
|
33
|
+
def __repr__(self):
|
34
|
+
return self.value
|
19
35
|
|
20
36
|
class EnvService:
|
21
37
|
|
@@ -65,8 +81,8 @@ class EnvService:
|
|
65
81
|
return env_file
|
66
82
|
|
67
83
|
@staticmethod
|
68
|
-
def read_env_file (env_path: Path | str) ->
|
69
|
-
return dotenv_values(
|
84
|
+
def read_env_file (env_path: Path | str) -> OrderedDict:
|
85
|
+
return dotenv_values(env_path)
|
70
86
|
|
71
87
|
def get_user_env (self, user_env_file: Path | str, fallback_to_persisted_env: bool = True) -> dict:
|
72
88
|
if user_env_file is not None and isinstance(user_env_file, str):
|
@@ -80,19 +96,19 @@ class EnvService:
|
|
80
96
|
return user_env
|
81
97
|
|
82
98
|
@staticmethod
|
83
|
-
def get_dev_edition_source_core(env_dict: dict | None) -> str:
|
99
|
+
def get_dev_edition_source_core(env_dict: dict | None) -> DeveloperEditionSources | str:
|
84
100
|
if not env_dict:
|
85
|
-
return
|
101
|
+
return DeveloperEditionSources.MYIBM
|
86
102
|
|
87
103
|
source = env_dict.get("WO_DEVELOPER_EDITION_SOURCE")
|
88
104
|
|
89
105
|
if source:
|
90
106
|
return source
|
91
107
|
if env_dict.get("WO_INSTANCE"):
|
92
|
-
return
|
93
|
-
return
|
108
|
+
return DeveloperEditionSources.ORCHESTRATE
|
109
|
+
return DeveloperEditionSources.MYIBM
|
94
110
|
|
95
|
-
def get_dev_edition_source(self, user_env_file: str):
|
111
|
+
def get_dev_edition_source(self, user_env_file: str) -> DeveloperEditionSources | str:
|
96
112
|
return self.get_dev_edition_source_core(self.get_user_env(user_env_file))
|
97
113
|
|
98
114
|
@staticmethod
|
@@ -105,17 +121,35 @@ class EnvService:
|
|
105
121
|
|
106
122
|
return merged
|
107
123
|
|
124
|
+
@staticmethod
|
125
|
+
def resolve_auth_type (env_dict: dict) -> str | None:
|
126
|
+
auth_type = env_dict.get("WO_AUTH_TYPE")
|
127
|
+
|
128
|
+
# Try infer the auth type if not provided
|
129
|
+
if not auth_type:
|
130
|
+
instance_url = env_dict.get("WO_INSTANCE")
|
131
|
+
if instance_url:
|
132
|
+
if ".cloud.ibm.com" in instance_url:
|
133
|
+
auth_type = EnvironmentAuthType.IBM_CLOUD_IAM.value
|
134
|
+
elif ".ibm.com" in instance_url:
|
135
|
+
auth_type = EnvironmentAuthType.MCSP.value
|
136
|
+
elif "https://cpd" in instance_url:
|
137
|
+
auth_type = EnvironmentAuthType.CPD.value
|
138
|
+
|
139
|
+
return auth_type
|
140
|
+
|
108
141
|
@staticmethod
|
109
142
|
def __get_default_registry_env_vars_by_dev_edition_source (default_env: dict, user_env: dict, source: str) -> dict[str, str]:
|
110
143
|
component_registry_var_names = {key for key in default_env if key.endswith("_REGISTRY")} | {'REGISTRY_URL'}
|
111
144
|
|
112
145
|
registry_url = user_env.get("REGISTRY_URL", None)
|
146
|
+
user_env["HAS_USER_PROVIDED_REGISTRY_URL"] = registry_url is not None
|
113
147
|
if not registry_url:
|
114
|
-
if source ==
|
148
|
+
if source == DeveloperEditionSources.INTERNAL:
|
115
149
|
registry_url = "us.icr.io/watson-orchestrate-private"
|
116
|
-
elif source ==
|
150
|
+
elif source == DeveloperEditionSources.MYIBM:
|
117
151
|
registry_url = "cp.icr.io/cp/wxo-lite"
|
118
|
-
elif source ==
|
152
|
+
elif source == DeveloperEditionSources.ORCHESTRATE:
|
119
153
|
# extract the hostname from the WO_INSTANCE URL, and replace the "api." prefix with "registry." to construct the registry URL per region
|
120
154
|
wo_url = user_env.get("WO_INSTANCE")
|
121
155
|
|
@@ -123,15 +157,34 @@ class EnvService:
|
|
123
157
|
raise ValueError(
|
124
158
|
"WO_INSTANCE is required in the environment file if the developer edition source is set to 'orchestrate'.")
|
125
159
|
|
126
|
-
|
127
|
-
|
160
|
+
wo_auth_type = EnvService.resolve_auth_type(user_env)
|
161
|
+
|
162
|
+
if wo_auth_type == EnvironmentAuthType.CPD.value:
|
163
|
+
registry_url = "cpd/cp/wxo-lite"
|
128
164
|
|
129
|
-
|
165
|
+
else:
|
166
|
+
parsed = urlparse(wo_url)
|
167
|
+
hostname = parsed.hostname
|
168
|
+
|
169
|
+
registry_url = f"registry.{hostname[4:]}/cp/wxo-lite"
|
170
|
+
elif source == DeveloperEditionSources.CUSTOM:
|
171
|
+
registry_url = user_env.get("CUSTOM_REGISTRY_URL")
|
172
|
+
if not registry_url:
|
173
|
+
raise ValueError(
|
174
|
+
f"REGISTRY_URL is required in the environment file when the developer edition source is set to 'custom'."
|
175
|
+
)
|
130
176
|
else:
|
131
177
|
raise ValueError(
|
132
|
-
f"Unknown value for developer edition source: {source}. Must be one of
|
178
|
+
f"Unknown value for developer edition source: {source}. Must be one of {list(map(str, DeveloperEditionSources))}."
|
133
179
|
)
|
134
|
-
|
180
|
+
|
181
|
+
# For non-custom use cases remove etcd and elastic search as they have different default registries
|
182
|
+
if source != DeveloperEditionSources.CUSTOM:
|
183
|
+
component_registry_var_names -= {"ETCD_REGISTRY", "ELASTICSEARCH_REGISTRY"}
|
184
|
+
# In the custom case default the OPENSOURCE_REGISTRY_PROXY to also be the REGISTRY_URL
|
185
|
+
else:
|
186
|
+
component_registry_var_names.add("OPENSOURCE_REGISTRY_PROXY")
|
187
|
+
|
135
188
|
result = {name: registry_url for name in component_registry_var_names}
|
136
189
|
return result
|
137
190
|
|
@@ -145,21 +198,28 @@ class EnvService:
|
|
145
198
|
|
146
199
|
@staticmethod
|
147
200
|
def write_merged_env_file (merged_env: dict, target_path: str = None) -> Path:
|
201
|
+
target_file = None
|
148
202
|
if target_path:
|
149
|
-
|
203
|
+
target_file = target_path
|
204
|
+
|
150
205
|
else:
|
151
|
-
|
206
|
+
with tempfile.NamedTemporaryFile(mode="w", delete=False, suffix=".env") as ntf:
|
207
|
+
target_file = ntf.name
|
152
208
|
|
153
|
-
with file:
|
209
|
+
with open(target_file, "w") as file:
|
154
210
|
for key, val in merged_env.items():
|
155
211
|
file.write(f"{key}={val}\n")
|
156
|
-
return Path(file.name)
|
157
212
|
|
158
|
-
|
213
|
+
return Path(target_file)
|
214
|
+
|
215
|
+
def persist_user_env (self, env: dict, include_secrets: bool = False, source: DeveloperEditionSources| str | None = None) -> None:
|
159
216
|
if include_secrets:
|
160
217
|
persistable_env = env
|
161
218
|
else:
|
162
219
|
persistable_env = {k: env[k] for k in EnvService.__NON_SECRET_ENV_ITEMS if k in env}
|
220
|
+
|
221
|
+
if source == DeveloperEditionSources.CUSTOM and "REGISTRY_URL" in env:
|
222
|
+
persistable_env["CUSTOM_REGISTRY_URL"] = env.get("REGISTRY_URL")
|
163
223
|
|
164
224
|
self.__config.save(
|
165
225
|
{
|
@@ -367,3 +427,88 @@ class EnvService:
|
|
367
427
|
|
368
428
|
def define_saas_wdu_runtime (self, value: str = "none") -> None:
|
369
429
|
self.__config.write(USER_ENV_CACHE_HEADER, "SAAS_WDU_RUNTIME", value)
|
430
|
+
|
431
|
+
@staticmethod
|
432
|
+
def did_user_provide_registry_url (env_dict: dict) -> bool:
|
433
|
+
has_user_provided_registry_url = parse_bool_safe(env_dict.get("HAS_USER_PROVIDED_REGISTRY_URL"), fallback=None)
|
434
|
+
|
435
|
+
if has_user_provided_registry_url is None:
|
436
|
+
raise Exception("Unable to determine if user has provided REGISTRY_URL.")
|
437
|
+
|
438
|
+
return has_user_provided_registry_url
|
439
|
+
|
440
|
+
|
441
|
+
class EnvSettingsService:
|
442
|
+
|
443
|
+
@staticmethod
|
444
|
+
def __get_string_safe(value) -> str | None:
|
445
|
+
if value is not None and isinstance(value, str):
|
446
|
+
value = value.strip()
|
447
|
+
|
448
|
+
if value == "":
|
449
|
+
value = None
|
450
|
+
|
451
|
+
return value
|
452
|
+
|
453
|
+
return None
|
454
|
+
|
455
|
+
def __init__(self, env_file: Path | str) -> None:
|
456
|
+
self.__env_dict = dotenv_values(str(env_file))
|
457
|
+
|
458
|
+
def get_env(self) -> dict:
|
459
|
+
return self.__env_dict
|
460
|
+
|
461
|
+
def get_user_provided_docker_os_type(self) -> str | None:
|
462
|
+
return self.__get_string_safe(self.__env_dict.get("DOCKER_IMAGE_OS_TYPE"))
|
463
|
+
|
464
|
+
def get_user_provided_docker_arch_type(self) -> str | None:
|
465
|
+
return self.__get_string_safe(self.__env_dict.get("DOCKER_IMAGE_ARCH_TYPE"))
|
466
|
+
|
467
|
+
def get_wo_instance_url(self) -> str:
|
468
|
+
return self.__env_dict["WO_INSTANCE"]
|
469
|
+
|
470
|
+
def get_parsed_wo_instance_details(self) -> Tuple[str, str, str, str]:
|
471
|
+
instance_url = self.get_wo_instance_url()
|
472
|
+
parsed = urlparse(instance_url)
|
473
|
+
route_parts = parsed.path.split("/")
|
474
|
+
|
475
|
+
orchestrate_namespace = route_parts[2] # this is usually "cpd-instance-1"
|
476
|
+
wxo_tenant_id = route_parts[4]
|
477
|
+
|
478
|
+
return parsed.scheme, parsed.netloc, orchestrate_namespace, wxo_tenant_id
|
479
|
+
|
480
|
+
def get_wo_username(self) -> str:
|
481
|
+
return self.__env_dict.get("WO_USERNAME")
|
482
|
+
|
483
|
+
def get_wo_password(self) -> str:
|
484
|
+
return self.__env_dict.get("WO_PASSWORD")
|
485
|
+
|
486
|
+
def get_wo_api_key(self) -> str:
|
487
|
+
return self.__env_dict.get("WO_API_KEY")
|
488
|
+
|
489
|
+
def use_parallel_docker_image_layer_pulls(self):
|
490
|
+
return parse_bool_safe(value=self.__env_dict.get("DOCKER_IMAGE_PULL_LAYERS_PARALLELISM"), fallback=True)
|
491
|
+
|
492
|
+
def get_docker_pull_parallel_worker_count(self):
|
493
|
+
fallback = 7
|
494
|
+
parsed = parse_int_safe(value=self.__env_dict.get("DOCKER_IMAGE_PULL_PARALLEL_WORKERS_COUNT"),
|
495
|
+
fallback=fallback)
|
496
|
+
|
497
|
+
if parsed < 1:
|
498
|
+
parsed = fallback
|
499
|
+
|
500
|
+
return parsed
|
501
|
+
|
502
|
+
def use_ranged_requests_during_docker_pulls(self):
|
503
|
+
return parse_bool_safe(value=self.__env_dict.get("USE_RANGE_REQUESTS_IN_DOCKER_IMAGE_PULLS"), fallback=True)
|
504
|
+
|
505
|
+
def get_wo_instance_ssl_verify(self) -> bool | str:
|
506
|
+
ssl_verify, path = parse_bool_safe_and_get_raw_val(value=self.__env_dict.get("WO_VERIFY_SSL"), fallback=True)
|
507
|
+
if ssl_verify is True and path is not None and isinstance(path, str):
|
508
|
+
if not os.path.exists(path) or not os.path.isfile(path):
|
509
|
+
logger.error(f"WO SSL verification certificate path not found or could not be accessed: {str(path)}")
|
510
|
+
sys.exit(1)
|
511
|
+
|
512
|
+
return str(path)
|
513
|
+
|
514
|
+
return ssl_verify
|
@@ -0,0 +1,51 @@
|
|
1
|
+
from datetime import timezone, datetime
|
2
|
+
from urllib.parse import urlparse
|
3
|
+
|
4
|
+
import jwt
|
5
|
+
|
6
|
+
from ibm_watsonx_orchestrate.cli.commands.environment.types import EnvironmentAuthType
|
7
|
+
from ibm_watsonx_orchestrate.client.client import Client
|
8
|
+
from ibm_watsonx_orchestrate.client.client_errors import ClientError
|
9
|
+
from ibm_watsonx_orchestrate.client.credentials import Credentials
|
10
|
+
from ibm_watsonx_orchestrate.utils.environment import EnvSettingsService
|
11
|
+
|
12
|
+
|
13
|
+
class CpdWxOTokenService:
|
14
|
+
|
15
|
+
def __init__ (self, env_settings: EnvSettingsService):
|
16
|
+
self.__token = None
|
17
|
+
self.__token_exp_at = None
|
18
|
+
self.__env_settings = env_settings
|
19
|
+
|
20
|
+
def get_token (self) -> str:
|
21
|
+
if self.__token is None or self.__has_token_expired():
|
22
|
+
self.__refresh_token()
|
23
|
+
|
24
|
+
return self.__token
|
25
|
+
|
26
|
+
def __has_token_expired (self) -> bool:
|
27
|
+
return self.__token is None or self.__token_exp_at is None or datetime.now(
|
28
|
+
timezone.utc).timestamp() >= self.__token_exp_at
|
29
|
+
|
30
|
+
def __refresh_token (self) -> None:
|
31
|
+
try:
|
32
|
+
self.__token = None
|
33
|
+
self.__token_exp_at = None
|
34
|
+
|
35
|
+
creds = Credentials(
|
36
|
+
url=self.__env_settings.get_wo_instance_url(),
|
37
|
+
api_key=self.__env_settings.get_wo_api_key(),
|
38
|
+
username=self.__env_settings.get_wo_username(),
|
39
|
+
password=self.__env_settings.get_wo_password(),
|
40
|
+
iam_url=None,
|
41
|
+
auth_type=EnvironmentAuthType.CPD
|
42
|
+
)
|
43
|
+
|
44
|
+
client = Client(creds)
|
45
|
+
self.__token = client.token
|
46
|
+
|
47
|
+
decoded_token = jwt.decode(self.__token, options={"verify_signature": False})
|
48
|
+
self.__token_exp_at = decoded_token.get("exp")
|
49
|
+
|
50
|
+
except ClientError as ex:
|
51
|
+
raise ClientError(ex)
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import re
|
2
2
|
import zipfile
|
3
3
|
import yaml
|
4
|
-
from typing import BinaryIO
|
4
|
+
from typing import BinaryIO, Any, Tuple
|
5
5
|
|
6
6
|
# disables the automatic conversion of date-time objects to datetime objects and leaves them as strings
|
7
7
|
yaml.constructor.SafeConstructor.yaml_constructors[u'tag:yaml.org,2002:timestamp'] = \
|
@@ -19,4 +19,59 @@ def sanitize_catalog_label(label: str) -> str:
|
|
19
19
|
return re.sub(sanitize_pattern,'_', label)
|
20
20
|
|
21
21
|
def check_file_in_zip(file_path: str, zip_file: zipfile.ZipFile) -> bool:
|
22
|
-
return any(x.startswith("%s/" % file_path.rstrip("/")) for x in zip_file.namelist())
|
22
|
+
return any(x.startswith("%s/" % file_path.rstrip("/")) for x in zip_file.namelist())
|
23
|
+
|
24
|
+
def parse_bool_safe (value, fallback = False) -> bool:
|
25
|
+
if value is not None:
|
26
|
+
if isinstance(value, bool):
|
27
|
+
return value
|
28
|
+
|
29
|
+
elif isinstance(value, str):
|
30
|
+
value = value.lower().strip()
|
31
|
+
if value in ("yes", "true", "t", "1"):
|
32
|
+
return True
|
33
|
+
|
34
|
+
elif value in ("no", "false", "f", "0"):
|
35
|
+
return False
|
36
|
+
|
37
|
+
elif value in (0, 1):
|
38
|
+
return parse_bool_safe(str(value), fallback)
|
39
|
+
|
40
|
+
return fallback
|
41
|
+
|
42
|
+
def parse_bool_safe_and_get_raw_val (value, fallback: bool = False) -> Tuple[bool, Any | None]:
|
43
|
+
if value is not None:
|
44
|
+
if isinstance(value, bool):
|
45
|
+
return value, None
|
46
|
+
|
47
|
+
elif isinstance(value, str):
|
48
|
+
value_str = value.lower().strip()
|
49
|
+
if value_str in ("yes", "true", "t", "1"):
|
50
|
+
return True, None
|
51
|
+
|
52
|
+
elif value_str in ("no", "false", "f", "0"):
|
53
|
+
return False, None
|
54
|
+
|
55
|
+
elif value in (0, 1):
|
56
|
+
return parse_bool_safe_and_get_raw_val(str(value), fallback)
|
57
|
+
|
58
|
+
return fallback, value
|
59
|
+
|
60
|
+
def parse_int_safe (value, base: int = 10, fallback: int | None = None) -> int:
|
61
|
+
if value is not None:
|
62
|
+
if isinstance(value, int):
|
63
|
+
return value
|
64
|
+
|
65
|
+
elif isinstance(value, float):
|
66
|
+
return int(value)
|
67
|
+
|
68
|
+
elif isinstance(value, str):
|
69
|
+
value = value.strip()
|
70
|
+
|
71
|
+
try:
|
72
|
+
return int(value, base)
|
73
|
+
|
74
|
+
except ValueError as ex:
|
75
|
+
pass
|
76
|
+
|
77
|
+
return fallback
|
{ibm_watsonx_orchestrate-1.12.2.dist-info → ibm_watsonx_orchestrate-1.13.0b1.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: ibm-watsonx-orchestrate
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.13.0b1
|
4
4
|
Summary: IBM watsonx.orchestrate SDK
|
5
5
|
Author-email: IBM <support@ibm.com>
|
6
6
|
License: MIT License
|
@@ -11,7 +11,7 @@ Requires-Dist: click<8.2.0,>=8.0.0
|
|
11
11
|
Requires-Dist: docstring-parser<1.0,>=0.16
|
12
12
|
Requires-Dist: httpx<1.0.0,>=0.28.1
|
13
13
|
Requires-Dist: ibm-cloud-sdk-core>=3.24.2
|
14
|
-
Requires-Dist: ibm-watsonx-orchestrate-evaluation-framework==1.1.
|
14
|
+
Requires-Dist: ibm-watsonx-orchestrate-evaluation-framework==1.1.5
|
15
15
|
Requires-Dist: jsonref==1.1.0
|
16
16
|
Requires-Dist: langchain-core<=0.3.63
|
17
17
|
Requires-Dist: langsmith<=0.3.45
|
{ibm_watsonx_orchestrate-1.12.2.dist-info → ibm_watsonx_orchestrate-1.13.0b1.dist-info}/RECORD
RENAMED
@@ -1,4 +1,4 @@
|
|
1
|
-
ibm_watsonx_orchestrate/__init__.py,sha256=
|
1
|
+
ibm_watsonx_orchestrate/__init__.py,sha256=xSIpIH-mBOz5c3mBLyzucN8QwXNXIeAQprgdXOks4Xk,428
|
2
2
|
ibm_watsonx_orchestrate/agent_builder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
3
|
ibm_watsonx_orchestrate/agent_builder/agents/__init__.py,sha256=lmZwaiWXD4Ea19nrMwZXaqCxFMG29xNS8vUoZtK3yI4,392
|
4
4
|
ibm_watsonx_orchestrate/agent_builder/agents/agent.py,sha256=W0uya81fQPrYZFaO_tlsxBL56Bfpw0xrqdxQJhAZ6XI,983
|
@@ -10,61 +10,63 @@ ibm_watsonx_orchestrate/agent_builder/agents/webchat_customizations/prompts.py,s
|
|
10
10
|
ibm_watsonx_orchestrate/agent_builder/agents/webchat_customizations/welcome_content.py,sha256=U76wZrblSXx4qv7phcPYs3l8SiFzwZ5cJ74u8Y2iYhU,608
|
11
11
|
ibm_watsonx_orchestrate/agent_builder/connections/__init__.py,sha256=B9FwmBbdJxFj3KmJ87Fc78TbzxOr1MIVhaHPJePOGSQ,716
|
12
12
|
ibm_watsonx_orchestrate/agent_builder/connections/connections.py,sha256=fBFNlied7Gq1tYIkeFhA-AQuAmNcPYSu7Lnuce5v34A,5547
|
13
|
-
ibm_watsonx_orchestrate/agent_builder/connections/types.py,sha256=
|
13
|
+
ibm_watsonx_orchestrate/agent_builder/connections/types.py,sha256=m-XhqKpZQyBieqiJ1JyVYVhpF6kgMt0dgou4ZcP6rcQ,13687
|
14
14
|
ibm_watsonx_orchestrate/agent_builder/knowledge_bases/knowledge_base.py,sha256=_KuGF0RZpKpwdt31rzjlTjrhGRFz2RtLzleNkhMNX4k,1831
|
15
15
|
ibm_watsonx_orchestrate/agent_builder/knowledge_bases/knowledge_base_requests.py,sha256=3xTfFMZR17EN8eYRhsVyBfOEzlTqyi0eYaMXyv0_ZtQ,862
|
16
|
-
ibm_watsonx_orchestrate/agent_builder/knowledge_bases/types.py,sha256=
|
16
|
+
ibm_watsonx_orchestrate/agent_builder/knowledge_bases/types.py,sha256=pXYe7JSxq2QRn4aVa3sopYyRi7nn9eCjYqdnynhek90,9579
|
17
17
|
ibm_watsonx_orchestrate/agent_builder/model_policies/__init__.py,sha256=alJEjlneWlGpadmvOVlDjq5wulytKOmpkq3849fhKNc,131
|
18
18
|
ibm_watsonx_orchestrate/agent_builder/model_policies/types.py,sha256=a6f9HP2OlZIe36k_PDRmFtefz2Ms2KBpzJ_jz8ggYbk,882
|
19
19
|
ibm_watsonx_orchestrate/agent_builder/models/__init__.py,sha256=R5nTbyMBzahONdp5-bJFp-rbtTDnp2184k6doZqt67w,31
|
20
|
-
ibm_watsonx_orchestrate/agent_builder/models/types.py,sha256=
|
20
|
+
ibm_watsonx_orchestrate/agent_builder/models/types.py,sha256=YUMr-kTNaa_w58TW4LPYcYCgoTLkU8k2prF_iPcEzfs,10689
|
21
21
|
ibm_watsonx_orchestrate/agent_builder/toolkits/base_toolkit.py,sha256=uJASxkwgYpnXRfzMTeQo_I9fPewAldSDyFFmZzlTFlM,1074
|
22
|
-
ibm_watsonx_orchestrate/agent_builder/toolkits/types.py,sha256=
|
23
|
-
ibm_watsonx_orchestrate/agent_builder/tools/__init__.py,sha256=
|
22
|
+
ibm_watsonx_orchestrate/agent_builder/toolkits/types.py,sha256=uNYCfIIdhz5noBmBtZCJji0Q-njs8mDTqNH-s_uaGGs,1717
|
23
|
+
ibm_watsonx_orchestrate/agent_builder/tools/__init__.py,sha256=d66mbfSa6zi0QPjWsVB67TX_PvTyygSfeSsfk6O-edo,534
|
24
24
|
ibm_watsonx_orchestrate/agent_builder/tools/base_tool.py,sha256=qiVHqLN-S9AuJlsvVaV_kNN5oNi4kk6177Hi9KpEdaI,1240
|
25
25
|
ibm_watsonx_orchestrate/agent_builder/tools/flow_tool.py,sha256=DJWYVmIjw1O_cbzPpwU0a_vIZGvo0mj8UsjW9zkKMlA,2589
|
26
26
|
ibm_watsonx_orchestrate/agent_builder/tools/langflow_tool.py,sha256=beozS44KQkjy3hjUn17Sy1xoPZyviu7o3_ez4KGtJgU,6843
|
27
27
|
ibm_watsonx_orchestrate/agent_builder/tools/openapi_tool.py,sha256=haAN5t4YMGrVM788UdMxfMWUctOe6_3szGxsRF3KPr8,19730
|
28
28
|
ibm_watsonx_orchestrate/agent_builder/tools/python_tool.py,sha256=cdgu-v1oRR9RUbMNKEklOzO1z3nNZpDZPSMwnJEvuIY,12533
|
29
|
-
ibm_watsonx_orchestrate/agent_builder/tools/types.py,sha256=
|
29
|
+
ibm_watsonx_orchestrate/agent_builder/tools/types.py,sha256=ES6mO45jy5rxLch5RWYcezagZDRuVyDp5Z-cAuJslT4,9926
|
30
30
|
ibm_watsonx_orchestrate/agent_builder/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
31
|
-
ibm_watsonx_orchestrate/agent_builder/voice_configurations/__init__.py,sha256=
|
32
|
-
ibm_watsonx_orchestrate/agent_builder/voice_configurations/types.py,sha256=
|
31
|
+
ibm_watsonx_orchestrate/agent_builder/voice_configurations/__init__.py,sha256=VPp2pYsCZy3wtP3cbcMk06cjR-qAZ8eyRyGIMI7tulo,66
|
32
|
+
ibm_watsonx_orchestrate/agent_builder/voice_configurations/types.py,sha256=lQenDD1bRZGczspiiJy_6TFKlm9i4Vy3GQ2Rn3NLVro,4729
|
33
33
|
ibm_watsonx_orchestrate/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
34
|
-
ibm_watsonx_orchestrate/cli/
|
34
|
+
ibm_watsonx_orchestrate/cli/common.py,sha256=yseSndt03Ifm_j6enKYFhQItZU-vITiUbIo0kJyVk8U,684
|
35
|
+
ibm_watsonx_orchestrate/cli/config.py,sha256=u4dgnq_UKr6qSnREtkeQVcWPiDFmVDWBd0Y-WkhYego,9431
|
35
36
|
ibm_watsonx_orchestrate/cli/init_helper.py,sha256=qxnKdFcPtGsV_6RqP_IuLshRxgB004SxzDAkBTExA-4,1675
|
36
37
|
ibm_watsonx_orchestrate/cli/main.py,sha256=5AuoVVDHzgNZ6Y2ZR4bSF1cs7AhQRyd8n7S41o8lK4w,3618
|
37
38
|
ibm_watsonx_orchestrate/cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
38
39
|
ibm_watsonx_orchestrate/cli/commands/agents/agents_command.py,sha256=mWVojmtxslXL-eGMs7NUNBV_DudmQKeNnTaE9V9jjfU,9832
|
39
|
-
ibm_watsonx_orchestrate/cli/commands/agents/agents_controller.py,sha256=
|
40
|
+
ibm_watsonx_orchestrate/cli/commands/agents/agents_controller.py,sha256=w6y9j5E7fAWGO3ssun9QWUo4I2lpkIwOow4D5YTvThM,66108
|
40
41
|
ibm_watsonx_orchestrate/cli/commands/channels/channels_command.py,sha256=fVIFhPUTPdxsxIE10nWL-W5wvBR-BS8V8D6r__J8R98,822
|
41
42
|
ibm_watsonx_orchestrate/cli/commands/channels/channels_controller.py,sha256=WjQxwJujvo28SsWgfJSXIpkcgniKcskJ2arL4MOz0Ys,455
|
42
43
|
ibm_watsonx_orchestrate/cli/commands/channels/types.py,sha256=hMFvWPr7tAmDrhBqtzfkCsrubX3lsU6lapTSOFsUbHM,475
|
43
44
|
ibm_watsonx_orchestrate/cli/commands/channels/webchat/channels_webchat_command.py,sha256=vPCr6z1n1yzGDjTlM4f3_9MiuVRzNmXbvUifm6XyQi8,1103
|
44
45
|
ibm_watsonx_orchestrate/cli/commands/channels/webchat/channels_webchat_controller.py,sha256=CGfmKsCBX4E3HMZ8C0IXD-DHQNwe96V1Y_BxUZM2us0,8557
|
45
46
|
ibm_watsonx_orchestrate/cli/commands/chat/chat_command.py,sha256=Q9vg2Z5Fsunu6GQFY_TIsNRhUCa0SSGSPnK4jxSGK34,1581
|
46
|
-
ibm_watsonx_orchestrate/cli/commands/connections/connections_command.py,sha256=
|
47
|
-
ibm_watsonx_orchestrate/cli/commands/connections/connections_controller.py,sha256=
|
48
|
-
ibm_watsonx_orchestrate/cli/commands/copilot/copilot_command.py,sha256=
|
49
|
-
ibm_watsonx_orchestrate/cli/commands/copilot/copilot_controller.py,sha256=
|
50
|
-
ibm_watsonx_orchestrate/cli/commands/copilot/copilot_server_controller.py,sha256=
|
47
|
+
ibm_watsonx_orchestrate/cli/commands/connections/connections_command.py,sha256=1eHwXI_aqS61sKvC5H2DOrcwGbs8a59pLE71bxdQgAw,12981
|
48
|
+
ibm_watsonx_orchestrate/cli/commands/connections/connections_controller.py,sha256=6USaydthtH8SeTmMjJw6UkIdCo_xtzECRMDBx6_uk3Y,32164
|
49
|
+
ibm_watsonx_orchestrate/cli/commands/copilot/copilot_command.py,sha256=EJjVfYG8rW4OX-3wX_NiAvljJMhbJMZ8yb8oo3bsEDM,3867
|
50
|
+
ibm_watsonx_orchestrate/cli/commands/copilot/copilot_controller.py,sha256=MvlOSOcBNGpGj9maBH_AkhHJI6okqz2W3ikrdVbTqPM,31086
|
51
|
+
ibm_watsonx_orchestrate/cli/commands/copilot/copilot_server_controller.py,sha256=eh21hc_eSrSBNs9Tyk921wukzsIICZZY6T7t3qmjQJ0,3865
|
51
52
|
ibm_watsonx_orchestrate/cli/commands/environment/environment_command.py,sha256=1CO0UfxSem0NafNGNCBXswC-P93MVYIA-YJewjKgdNc,4186
|
52
53
|
ibm_watsonx_orchestrate/cli/commands/environment/environment_controller.py,sha256=z3m4khZfHNpv1dRsDfRW0cteLvhAeDEbxh-fOZduSpQ,10479
|
53
54
|
ibm_watsonx_orchestrate/cli/commands/environment/types.py,sha256=X6jEnyBdxakromA7FhQ5btZMj9kwGcwRSFz8vpD65jA,224
|
54
|
-
ibm_watsonx_orchestrate/cli/commands/evaluations/evaluations_command.py,sha256=
|
55
|
+
ibm_watsonx_orchestrate/cli/commands/evaluations/evaluations_command.py,sha256=fmXKlwrS6Mbr4FeImdHEeX0k3Yja3T9pbJgayLw_yd8,23063
|
55
56
|
ibm_watsonx_orchestrate/cli/commands/evaluations/evaluations_controller.py,sha256=avA5Guyyhqw9x0IAp-I9vVyEaS3X5U77Ag4xBw1k8l0,11348
|
56
|
-
ibm_watsonx_orchestrate/cli/commands/
|
57
|
-
ibm_watsonx_orchestrate/cli/commands/knowledge_bases/
|
57
|
+
ibm_watsonx_orchestrate/cli/commands/evaluations/evaluations_environment_manager.py,sha256=Js_UR3aDi3fE6KU7lQ-7RlN_dWZQrynKwrn3ePUVo3c,5519
|
58
|
+
ibm_watsonx_orchestrate/cli/commands/knowledge_bases/knowledge_bases_command.py,sha256=ddVq0nd4GUqPgZ51JK0nv1NvWg1UnsX75fAzYJqIHHw,3435
|
59
|
+
ibm_watsonx_orchestrate/cli/commands/knowledge_bases/knowledge_bases_controller.py,sha256=vDiTvWzEJaFrsyFvCpeH7Lp37Vjnsq2BL9obyM69YHU,16459
|
58
60
|
ibm_watsonx_orchestrate/cli/commands/login/login_command.py,sha256=xArMiojoozg7Exn6HTpbTcjDO2idZRA-y0WV-_Ic1Sk,651
|
59
61
|
ibm_watsonx_orchestrate/cli/commands/models/model_provider_mapper.py,sha256=ldAMx0Vz5cf_ngADzdMrku7twmVmIT4EQ43YrPzgSKk,8855
|
60
|
-
ibm_watsonx_orchestrate/cli/commands/models/models_command.py,sha256=
|
61
|
-
ibm_watsonx_orchestrate/cli/commands/models/models_controller.py,sha256=
|
62
|
+
ibm_watsonx_orchestrate/cli/commands/models/models_command.py,sha256=dHuk0F01MEYRrnbdyGeDHYZ3A-QMnz8d3kcrbphWhEg,6448
|
63
|
+
ibm_watsonx_orchestrate/cli/commands/models/models_controller.py,sha256=JUHAj-u_C6lgE2DUObJgO32v1huNYmkj8wPG7EBNawY,19223
|
62
64
|
ibm_watsonx_orchestrate/cli/commands/partners/partners_command.py,sha256=YpTlKKinQw1QdM4yXYjSrMtoAcwc1b9GoO6Wv1NmgKc,385
|
63
65
|
ibm_watsonx_orchestrate/cli/commands/partners/partners_controller.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
64
66
|
ibm_watsonx_orchestrate/cli/commands/partners/offering/partners_offering_command.py,sha256=X6u5zGwKYY1Uc2szaVHCIyMlFJBzp8o8JgVZUxcZPd8,1727
|
65
67
|
ibm_watsonx_orchestrate/cli/commands/partners/offering/partners_offering_controller.py,sha256=4qIaMwUHcSsPDDqXHS0vuwktyFD18sQyFabbBhr8vjY,19229
|
66
68
|
ibm_watsonx_orchestrate/cli/commands/partners/offering/types.py,sha256=Wc7YyY3dQobx5P5-as45WmTiZiuiSzvSSSDZP-5vj-g,2804
|
67
|
-
ibm_watsonx_orchestrate/cli/commands/server/server_command.py,sha256=
|
69
|
+
ibm_watsonx_orchestrate/cli/commands/server/server_command.py,sha256=Y80Vwal1QZbrvNDarczJ8FDb7szA1bJszEeV-T2R3QM,30634
|
68
70
|
ibm_watsonx_orchestrate/cli/commands/server/types.py,sha256=DGLopPbLFf5yH5-hzsFf5Uaw158QHwkTAcwydbUmZ3Q,4416
|
69
71
|
ibm_watsonx_orchestrate/cli/commands/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
70
72
|
ibm_watsonx_orchestrate/cli/commands/settings/settings_command.py,sha256=CzXRkd-97jXyS6LtaaNtMah-aZu0919dYl-mDwzGThc,344
|
@@ -73,12 +75,12 @@ ibm_watsonx_orchestrate/cli/commands/settings/observability/observability_comman
|
|
73
75
|
ibm_watsonx_orchestrate/cli/commands/settings/observability/langfuse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
74
76
|
ibm_watsonx_orchestrate/cli/commands/settings/observability/langfuse/langfuse_command.py,sha256=Wa0L8E44EdxH9LdOvmnluLk_ApJVfTLauNOC1kV4W8k,6515
|
75
77
|
ibm_watsonx_orchestrate/cli/commands/toolkit/toolkit_command.py,sha256=dgmfI3PA04By3W526BEOZp0jJE5eVoxEUMbPG0JxUlE,5653
|
76
|
-
ibm_watsonx_orchestrate/cli/commands/toolkit/toolkit_controller.py,sha256=
|
77
|
-
ibm_watsonx_orchestrate/cli/commands/tools/tools_command.py,sha256=
|
78
|
-
ibm_watsonx_orchestrate/cli/commands/tools/tools_controller.py,sha256=
|
78
|
+
ibm_watsonx_orchestrate/cli/commands/toolkit/toolkit_controller.py,sha256=jj3eKWtNbz7HJKaJ1zbnjlOa1cuort5wUugktoto04c,18243
|
79
|
+
ibm_watsonx_orchestrate/cli/commands/tools/tools_command.py,sha256=PYeElj54ALB3aLKg6NkYOC0lMjHjSEWWoF8LEyhAk-A,3965
|
80
|
+
ibm_watsonx_orchestrate/cli/commands/tools/tools_controller.py,sha256=lIDlHatrvXKNhH-NDSthGsRSMfbFWdAeSiiAgZv2RYw,50288
|
79
81
|
ibm_watsonx_orchestrate/cli/commands/tools/types.py,sha256=_md0GEa_cTH17NO_moWDY_LNdFvyEFQ1UVB9_FltYiA,173
|
80
82
|
ibm_watsonx_orchestrate/cli/commands/voice_configurations/voice_configurations_command.py,sha256=q4KHWQ-LZbp31e2ytihX1OuyAPS4-nRinmc-eMXC0l0,1783
|
81
|
-
ibm_watsonx_orchestrate/cli/commands/voice_configurations/voice_configurations_controller.py,sha256=
|
83
|
+
ibm_watsonx_orchestrate/cli/commands/voice_configurations/voice_configurations_controller.py,sha256=SM0C6QbEc7utQTCdf4kydaR-A5MIV2bwPS1TbAh8B4o,6529
|
82
84
|
ibm_watsonx_orchestrate/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
83
85
|
ibm_watsonx_orchestrate/client/base_api_client.py,sha256=ZD6t3ax952mSwzYH6ljS-3E5tlnKbxqaYbIcPLOkse8,6069
|
84
86
|
ibm_watsonx_orchestrate/client/base_service_instance.py,sha256=sM_r7bln9BpgEOhaJMdFI9-je3T7GLQxLduk-in0oRY,235
|
@@ -87,28 +89,29 @@ ibm_watsonx_orchestrate/client/client_errors.py,sha256=72MKCNZbKoo2QXyY0RicLhP3r
|
|
87
89
|
ibm_watsonx_orchestrate/client/credentials.py,sha256=gDVeeQZDdbbjJiO1EI61yx2oRgTQctxA2ZesSDHI4DA,3786
|
88
90
|
ibm_watsonx_orchestrate/client/local_service_instance.py,sha256=dt7vfLnjgt7mT8wSq8SJZndNTwsPzhb0XDhcnPUPFpU,3524
|
89
91
|
ibm_watsonx_orchestrate/client/service_instance.py,sha256=20yPs5bfAGN7TKUwMHZgsV2p0vzHr57pZD_rjc-5X80,5861
|
90
|
-
ibm_watsonx_orchestrate/client/utils.py,sha256=
|
91
|
-
ibm_watsonx_orchestrate/client/agents/agent_client.py,sha256=
|
92
|
+
ibm_watsonx_orchestrate/client/utils.py,sha256=pmk44dk3wLOKzfSRIVFWa2oAy2KJ4l0-3PRYvVeLj4s,7491
|
93
|
+
ibm_watsonx_orchestrate/client/agents/agent_client.py,sha256=4VIT9399HdA9NnC4JRur-_V7aLxBKAOhNQNr7ApqTzQ,6959
|
92
94
|
ibm_watsonx_orchestrate/client/agents/assistant_agent_client.py,sha256=1JQN0E4T_uz5V0LM-LD1ahNu2KCeFBjXAr8WCiP9mkE,1745
|
93
95
|
ibm_watsonx_orchestrate/client/agents/external_agent_client.py,sha256=iQ44XBdC4rYfS-zFn4St1xC5y5gf5SNqKHzMNQcFDZc,1808
|
94
96
|
ibm_watsonx_orchestrate/client/analytics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
95
97
|
ibm_watsonx_orchestrate/client/analytics/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
96
98
|
ibm_watsonx_orchestrate/client/analytics/llm/analytics_llm_client.py,sha256=0YS_BCpmf5oGFawpZkJ38cuz5ArhKsZIbSydWRd194s,1340
|
97
99
|
ibm_watsonx_orchestrate/client/connections/__init__.py,sha256=J7TOyVg38h71AlaJjlFs5fOuAXTceHvELtOJ9oz4Mvg,207
|
98
|
-
ibm_watsonx_orchestrate/client/connections/connections_client.py,sha256=
|
100
|
+
ibm_watsonx_orchestrate/client/connections/connections_client.py,sha256=JUUosNqEq-BasULrY1pkOTa9I2Z95XATN-sEZyjKeXc,8425
|
99
101
|
ibm_watsonx_orchestrate/client/connections/utils.py,sha256=f6HsiDI6cycOqfYN6P4uZ3SQds83xlh83zTUioZPeYk,2618
|
100
|
-
ibm_watsonx_orchestrate/client/copilot/cpe/copilot_cpe_client.py,sha256
|
101
|
-
ibm_watsonx_orchestrate/client/knowledge_bases/knowledge_base_client.py,sha256=
|
102
|
+
ibm_watsonx_orchestrate/client/copilot/cpe/copilot_cpe_client.py,sha256=7Tk6BnLq5_UH6pct7t37joXp7clTy7mkq6SMcadR2JM,4668
|
103
|
+
ibm_watsonx_orchestrate/client/knowledge_bases/knowledge_base_client.py,sha256=yWddZ4W_l-USoAPqPrj7B2qYfKzDT1l0q509dwbBULM,2254
|
102
104
|
ibm_watsonx_orchestrate/client/model_policies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
103
|
-
ibm_watsonx_orchestrate/client/model_policies/model_policies_client.py,sha256=
|
105
|
+
ibm_watsonx_orchestrate/client/model_policies/model_policies_client.py,sha256=YJ9OwkO2N78zz12r355ItTBSXp16EkcQZHZWPJLFPuE,2264
|
104
106
|
ibm_watsonx_orchestrate/client/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
105
|
-
ibm_watsonx_orchestrate/client/models/models_client.py,sha256=
|
107
|
+
ibm_watsonx_orchestrate/client/models/models_client.py,sha256=PC94TlzWlN1kT1oZTZJYhR85nDv_jNq5O0w091XcIvc,2170
|
108
|
+
ibm_watsonx_orchestrate/client/threads/threads_client.py,sha256=ZptejEUsfvQFRMk8NAV7rzpd5mjawKOLm5Lsj8L_mag,1120
|
106
109
|
ibm_watsonx_orchestrate/client/toolkit/toolkit_client.py,sha256=TLFNS39EeBD_t4Y-rX9sGp4sWBDr--mE5qVtHq8Q2hk,3121
|
107
|
-
ibm_watsonx_orchestrate/client/tools/tempus_client.py,sha256=
|
110
|
+
ibm_watsonx_orchestrate/client/tools/tempus_client.py,sha256=hu9LzkRRucriEyl-KU9aGVRoNjgJo69U0-Rew94CvKk,2012
|
108
111
|
ibm_watsonx_orchestrate/client/tools/tool_client.py,sha256=kYwQp-ym9dYQDOFSTnXNyeh8wzl39LpBJqHSNT9EKT0,2113
|
109
112
|
ibm_watsonx_orchestrate/client/voice_configurations/voice_configurations_client.py,sha256=M5xIPLiVNpP-zxQw8CTNT9AiBjeXXmJiNaE142e2A3E,2682
|
110
|
-
ibm_watsonx_orchestrate/docker/compose-lite.yml,sha256=
|
111
|
-
ibm_watsonx_orchestrate/docker/default.env,sha256=
|
113
|
+
ibm_watsonx_orchestrate/docker/compose-lite.yml,sha256=UuIeyd27_4D3eTrxvVLdA-MTbPbunhikebkV5WLG4f0,48155
|
114
|
+
ibm_watsonx_orchestrate/docker/default.env,sha256=lqFK6j6QP2S5y1rdrCNQc6TeSKVAJN1HADI_6DO3riA,6443
|
112
115
|
ibm_watsonx_orchestrate/docker/proxy-config-single.yaml,sha256=WEbK4ENFuTCYhzRu_QblWp1_GMARgZnx5vReQafkIG8,308
|
113
116
|
ibm_watsonx_orchestrate/docker/start-up.sh,sha256=LTtwHp0AidVgjohis2LXGvZnkFQStOiUAxgGABOyeUI,1811
|
114
117
|
ibm_watsonx_orchestrate/docker/sdk/ibm_watsonx_orchestrate-0.6.0-py3-none-any.whl,sha256=Hi3-owh5OM0Jz2ihX9nLoojnr7Ky1TV-GelyqLcewLE,2047417
|
@@ -117,28 +120,30 @@ ibm_watsonx_orchestrate/docker/tempus/common-config.yaml,sha256=Zo3F36F5DV4VO_vU
|
|
117
120
|
ibm_watsonx_orchestrate/flow_builder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
118
121
|
ibm_watsonx_orchestrate/flow_builder/data_map.py,sha256=LinePFgb5mBnrvNmPkFe3rq5oYJZSjcgmaEGpE6dVwc,586
|
119
122
|
ibm_watsonx_orchestrate/flow_builder/node.py,sha256=Y5hzVkbWNWaYp6zSbLW4Qbg4r1deLAs-X3HEFoZ9vzk,10338
|
120
|
-
ibm_watsonx_orchestrate/flow_builder/types.py,sha256=
|
121
|
-
ibm_watsonx_orchestrate/flow_builder/utils.py,sha256=
|
123
|
+
ibm_watsonx_orchestrate/flow_builder/types.py,sha256=Y0LIEWbijKtSmppVFVycEs6cH8lqIW2XQSa-uQ469Zk,71840
|
124
|
+
ibm_watsonx_orchestrate/flow_builder/utils.py,sha256=QnI5vUZiBHA4Px650zOrJNG9DtvXiCIQPh9lOetmQno,11761
|
122
125
|
ibm_watsonx_orchestrate/flow_builder/flows/__init__.py,sha256=iRYV0_eXgBBGhuNnvg-mUyPUyCIw5BiallPOp27bzYM,1083
|
123
126
|
ibm_watsonx_orchestrate/flow_builder/flows/constants.py,sha256=-TGneZyjA4YiAtJJK7OmmjDHYQC4mw2e98MPAZqiB50,324
|
124
127
|
ibm_watsonx_orchestrate/flow_builder/flows/decorators.py,sha256=07yaaDXLrwmj0v9lhZli8UmnKVpIuF6x1t3JbPVj0F8,3247
|
125
128
|
ibm_watsonx_orchestrate/flow_builder/flows/events.py,sha256=VyaBm0sADwr15LWfKbcBQS1M80NKqzYDj3UlW3OpOf4,2984
|
126
|
-
ibm_watsonx_orchestrate/flow_builder/flows/flow.py,sha256=
|
129
|
+
ibm_watsonx_orchestrate/flow_builder/flows/flow.py,sha256=pi35CAg4Bx2AasLjy3URfskOLUvjgTb7Bbi0fMskDsU,68900
|
127
130
|
ibm_watsonx_orchestrate/langflow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
128
131
|
ibm_watsonx_orchestrate/langflow/langflow_utils.py,sha256=UIWN28WvaYNhV-Ph_x0HSqV7jbL8lQlaUBdYeELqXJo,5765
|
129
132
|
ibm_watsonx_orchestrate/langflow/lfx_deps.py,sha256=Bgbo8IQEX_TblGLmw1tnA0DP7Xm4SFRncPp4TGbqY1o,1396
|
130
133
|
ibm_watsonx_orchestrate/run/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
131
134
|
ibm_watsonx_orchestrate/run/connections.py,sha256=9twXkNeUx83fP_qYUbJRtumE-wzPPNN2v-IY_8hGndM,1820
|
132
135
|
ibm_watsonx_orchestrate/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
133
|
-
ibm_watsonx_orchestrate/utils/
|
134
|
-
ibm_watsonx_orchestrate/utils/
|
135
|
-
ibm_watsonx_orchestrate/utils/
|
136
|
-
ibm_watsonx_orchestrate/utils/
|
136
|
+
ibm_watsonx_orchestrate/utils/async_helpers.py,sha256=YN-mSc3C_MI6cm5GPX5js00hWcvoc8aKqb_JqLppcx8,999
|
137
|
+
ibm_watsonx_orchestrate/utils/docker_utils.py,sha256=EF42yFL-fN8pJkrFWpMXk_zlm_Udd4KHkN8OGiHLKk0,64486
|
138
|
+
ibm_watsonx_orchestrate/utils/environment.py,sha256=tB2feWhhjCrKtTO4I-E2j0cs7TIOJ35eOu-GgS2M0w8,20433
|
139
|
+
ibm_watsonx_orchestrate/utils/exceptions.py,sha256=Dtjwk4HazbS-dgNyGcJHH1unbM_jXBAImejWmavPCy0,632
|
140
|
+
ibm_watsonx_orchestrate/utils/tokens.py,sha256=oET2-zZI59BgDziaPfb-WFk-FKiRKz4D1vnCTeVx7AA,1786
|
141
|
+
ibm_watsonx_orchestrate/utils/utils.py,sha256=3k4qXVrgaBsvVt-nnjKrBwioNE2b0aflrvjPmkm_86Y,2410
|
137
142
|
ibm_watsonx_orchestrate/utils/logging/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
138
143
|
ibm_watsonx_orchestrate/utils/logging/logger.py,sha256=FzeGnidXAjC7yHrvIaj4KZPeaBBSCniZFlwgr5yV3oA,1037
|
139
144
|
ibm_watsonx_orchestrate/utils/logging/logging.yaml,sha256=9_TKfuFr1barnOKP0fZT5D6MhddiwsXVTFjtRbcOO5w,314
|
140
|
-
ibm_watsonx_orchestrate-1.
|
141
|
-
ibm_watsonx_orchestrate-1.
|
142
|
-
ibm_watsonx_orchestrate-1.
|
143
|
-
ibm_watsonx_orchestrate-1.
|
144
|
-
ibm_watsonx_orchestrate-1.
|
145
|
+
ibm_watsonx_orchestrate-1.13.0b1.dist-info/METADATA,sha256=kVBl7sWJuOj8I6-A9sqotUggzOehRdJOBB3aCueFXlE,1363
|
146
|
+
ibm_watsonx_orchestrate-1.13.0b1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
147
|
+
ibm_watsonx_orchestrate-1.13.0b1.dist-info/entry_points.txt,sha256=SfIT02-Jen5e99OcLhzbcM9Bdyf8SGVOCtnSplgZdQI,69
|
148
|
+
ibm_watsonx_orchestrate-1.13.0b1.dist-info/licenses/LICENSE,sha256=Shgxx7hTdCOkiVRmfGgp_1ISISrwQD7m2f0y8Hsapl4,1083
|
149
|
+
ibm_watsonx_orchestrate-1.13.0b1.dist-info/RECORD,,
|
{ibm_watsonx_orchestrate-1.12.2.dist-info → ibm_watsonx_orchestrate-1.13.0b1.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|
File without changes
|