ibm-watsonx-orchestrate 1.6.2__py3-none-any.whl → 1.6.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.
@@ -5,7 +5,7 @@
5
5
 
6
6
  pkg_name = "ibm-watsonx-orchestrate"
7
7
 
8
- __version__ = "1.6.2"
8
+ __version__ = "1.6.3"
9
9
 
10
10
 
11
11
 
@@ -1,6 +1,6 @@
1
1
  from enum import Enum
2
2
 
3
- class EnvironmentType(str, Enum):
3
+ class EnvironmentType(str, Enum):
4
4
  DRAFT ='draft'
5
5
  LIVE = 'live'
6
6
 
@@ -8,8 +8,20 @@ class EnvironmentType(str, Enum):
8
8
  return self.value
9
9
 
10
10
 
11
- class ChannelType(str, Enum):
11
+ class ChannelType(str, Enum):
12
12
  WEBCHAT ='webchat'
13
13
 
14
14
  def __str__(self):
15
+ return self.value
16
+
17
+ class RuntimeEnvironmentType(str, Enum):
18
+ LOCAL = 'local'
19
+ CPD = 'cpd'
20
+ IBM_CLOUD = 'ibmcloud'
21
+ AWS = 'aws'
22
+
23
+ def __str__(self):
24
+ return self.value
25
+
26
+ def __repr__(self):
15
27
  return self.value
@@ -4,12 +4,15 @@ import jwt
4
4
  import sys
5
5
 
6
6
  from ibm_watsonx_orchestrate.cli.config import Config, ENV_WXO_URL_OPT, ENVIRONMENTS_SECTION_HEADER, CONTEXT_SECTION_HEADER, CONTEXT_ACTIVE_ENV_OPT, CHAT_UI_PORT
7
- from ibm_watsonx_orchestrate.client.utils import is_local_dev, is_ibm_cloud, AUTH_CONFIG_FILE_FOLDER, AUTH_SECTION_HEADER, AUTH_MCSP_TOKEN_OPT, AUTH_CONFIG_FILE
7
+ from ibm_watsonx_orchestrate.cli.commands.channels.types import RuntimeEnvironmentType
8
+
9
+ from ibm_watsonx_orchestrate.client.utils import is_local_dev, is_ibm_cloud_platform, get_environment, get_cpd_instance_id_from_url, is_saas_env, AUTH_CONFIG_FILE_FOLDER, AUTH_SECTION_HEADER, AUTH_MCSP_TOKEN_OPT, AUTH_CONFIG_FILE
8
10
 
9
11
  from ibm_watsonx_orchestrate.client.agents.agent_client import AgentClient
10
12
 
11
13
  from ibm_watsonx_orchestrate.client.utils import instantiate_client
12
14
 
15
+
13
16
  logger = logging.getLogger(__name__)
14
17
 
15
18
  class ChannelsWebchatController:
@@ -22,7 +25,7 @@ class ChannelsWebchatController:
22
25
  return self.native_client
23
26
 
24
27
  def extract_tenant_id_from_crn(self, crn: str) -> str:
25
- is_ibm_cloud_env = is_ibm_cloud()
28
+ is_ibm_cloud_env = is_ibm_cloud_platform()
26
29
  if is_ibm_cloud_env:
27
30
  try:
28
31
  parts = crn.split("a/")[1].split(":")
@@ -77,6 +80,7 @@ class ChannelsWebchatController:
77
80
  agent_environments = agent.get("environments", [])
78
81
 
79
82
  is_local = is_local_dev()
83
+ is_saas = is_saas_env()
80
84
  target_env = env or 'draft'
81
85
 
82
86
  if is_local:
@@ -91,15 +95,13 @@ class ChannelsWebchatController:
91
95
  logger.error(f'This agent does not exist in the {env} environment. You need to deploy it to {env} before you can embed the agent')
92
96
  exit(1)
93
97
 
94
- if target_env == 'draft' and is_local == False:
98
+ if target_env == 'draft' and is_saas == True:
95
99
  logger.error(f'For SAAS, please ensure this agent exists in a Live Environment')
96
100
  exit(1)
97
101
 
98
-
99
-
100
102
  return filtered_environments[0].get("id")
101
103
 
102
- def get_tennent_id(self):
104
+ def get_tenant_id(self):
103
105
  auth_cfg = Config(AUTH_CONFIG_FILE_FOLDER, AUTH_CONFIG_FILE)
104
106
 
105
107
  cfg = Config()
@@ -154,30 +156,40 @@ class ChannelsWebchatController:
154
156
 
155
157
  def create_webchat_embed_code(self):
156
158
  crn = None
157
- is_ibm_cloud_env = is_ibm_cloud()
158
- is_local = is_local_dev()
159
- if is_ibm_cloud_env is True:
160
- crn = input("Please enter your CRN which can be gotten from the IBM Cloud UI: ")
161
- if crn == "":
162
- logger.error("You must enter your CRN for IBM Cloud instances")
159
+ environment = get_environment()
160
+
161
+ match (environment):
162
+ case RuntimeEnvironmentType.LOCAL:
163
+ tenant_id = self.get_tenant_id_local()
164
+
165
+ case RuntimeEnvironmentType.CPD:
166
+ tenant_id = get_cpd_instance_id_from_url()
167
+
168
+ case RuntimeEnvironmentType.IBM_CLOUD:
169
+ crn = input("Please enter your CRN which can be retrieved from the IBM Cloud UI: ")
170
+ if crn == "":
171
+ logger.error("You must enter your CRN for IBM Cloud instances")
172
+ sys.exit(1)
173
+ is_crn_correct = self.check_crn_is_correct(crn)
174
+ if is_crn_correct == False:
175
+ logger.error("Invalid CRN format provided.")
176
+ sys.exit(1)
177
+ tenant_id = self.extract_tenant_id_from_crn(crn)
178
+
179
+ case RuntimeEnvironmentType.AWS:
180
+ tenant_id = self.get_tenant_id()
181
+
182
+ case _:
183
+ logger.error("Environment not recognized")
163
184
  sys.exit(1)
164
- is_crn_correct = self.check_crn_is_correct(crn)
165
- if is_crn_correct == False:
166
- logger.error("Invalid CRN format provided.")
167
-
168
- if is_ibm_cloud_env and crn is not None:
169
- tenant_id = self.extract_tenant_id_from_crn(crn)
170
- elif is_ibm_cloud_env is False and is_local is False:
171
- tenant_id = self.get_tennent_id()
172
- elif is_local:
173
- tenant_id = self.get_tenant_id_local()
185
+
174
186
  host_url = self.get_host_url()
175
187
  agent_id = self.get_agent_id(self.agent_name)
176
188
  agent_env_id = self.get_environment_id(self.agent_name, self.env)
177
189
 
178
190
  script_path = (
179
191
  "/wxoLoader.js?embed=true"
180
- if is_local
192
+ if environment == "local"
181
193
  else "/wxochat/wxoLoader.js?embed=true"
182
194
  )
183
195
 
@@ -189,9 +201,8 @@ class ChannelsWebchatController:
189
201
  ]
190
202
 
191
203
  # Conditional fields for IBM Cloud
192
- if is_ibm_cloud_env:
204
+ if environment == "ibmcloud":
193
205
  config_lines.append(f'crn: "{crn}"')
194
- if is_ibm_cloud_env:
195
206
  config_lines.append(f'deploymentPlatform: "ibmcloud"')
196
207
 
197
208
  config_lines.append(f"""chatOptions: {{
@@ -7,4 +7,4 @@ class EnvironmentAuthType(str, Enum):
7
7
  CPD = 'cpd'
8
8
 
9
9
  def __str__(self):
10
- return self.value
10
+ return self.value
@@ -167,15 +167,12 @@ class ModelsController:
167
167
  logger.error("Error: WATSONX_URL is required in the environment.")
168
168
  sys.exit(1)
169
169
 
170
- if is_cpd_env(models_client.base_url):
171
- virtual_models = []
172
- virtual_model_policies = []
173
- else:
174
- logger.info("Retrieving virtual-model models list...")
175
- virtual_models = models_client.list()
170
+
171
+ logger.info("Retrieving virtual-model models list...")
172
+ virtual_models = models_client.list()
176
173
 
177
- logger.info("Retrieving virtual-policies models list...")
178
- virtual_model_policies = model_policies_client.list()
174
+ logger.info("Retrieving virtual-policies models list...")
175
+ virtual_model_policies = model_policies_client.list()
179
176
 
180
177
  logger.info("Retrieving watsonx.ai models list...")
181
178
  found_models = _get_wxai_foundational_models()
@@ -63,12 +63,7 @@ class ConnectionsClient(BaseAPIClient):
63
63
  # GET /api/v1/connections/applications/{app_id}
64
64
  def get(self, app_id: str) -> GetConnectionResponse | None:
65
65
  try:
66
- path = (
67
- f"/connections/applications/{app_id}"
68
- if is_cpd_env(self.base_url)
69
- else f"/connections/applications?app_id={app_id}"
70
- )
71
- return GetConnectionResponse.model_validate(self._get(path))
66
+ return GetConnectionResponse.model_validate(self._get(f"/connections/applications?app_id={app_id}"))
72
67
  except ClientAPIException as e:
73
68
  if e.response.status_code == 404:
74
69
  return None
@@ -78,12 +73,7 @@ class ConnectionsClient(BaseAPIClient):
78
73
  # GET api/v1/connections/applications
79
74
  def list(self) -> List[ListConfigsResponse]:
80
75
  try:
81
- path = (
82
- f"/connections/applications"
83
- if is_cpd_env(self.base_url)
84
- else f"/connections/applications?include_details=true"
85
- )
86
- res = self._get(path)
76
+ res = self._get(f"/connections/applications?include_details=true")
87
77
  import json
88
78
  json.dumps(res)
89
79
  return [ListConfigsResponse.model_validate(conn) for conn in res.get("applications", [])]
@@ -135,19 +125,9 @@ class ConnectionsClient(BaseAPIClient):
135
125
  def get_credentials(self, app_id: str, env: ConnectionEnvironment, use_app_credentials: bool) -> dict:
136
126
  try:
137
127
  if use_app_credentials:
138
- path = (
139
- f"/connections/applications/{app_id}/credentials?env={env}"
140
- if is_cpd_env(self.base_url)
141
- else f"/connections/applications/{app_id}/credentials/{env}"
142
- )
143
- return self._get(path)
128
+ return self._get(f"/connections/applications/{app_id}/credentials/{env}")
144
129
  else:
145
- path = (
146
- f"/connections/applications/{app_id}/configs/runtime_credentials?env={env}"
147
- if is_cpd_env(self.base_url)
148
- else f"/connections/applications/runtime_credentials?app_id={app_id}&env={env}"
149
- )
150
- return self._get(path)
130
+ return self._get(f"/connections/applications/runtime_credentials?app_id={app_id}&env={env}")
151
131
  except ClientAPIException as e:
152
132
  if e.response.status_code == 404:
153
133
  return None
@@ -177,12 +157,7 @@ class ConnectionsClient(BaseAPIClient):
177
157
  if conn_id is None:
178
158
  return ""
179
159
  try:
180
- path = (
181
- f"/connections/applications/id/{conn_id}"
182
- if is_cpd_env(self.base_url)
183
- else f"/connections/applications?connection_id={conn_id}"
184
- )
185
- app_details = self._get(path)
160
+ app_details = self._get(f"/connections/applications?connection_id={conn_id}")
186
161
  return app_details.get("app_id")
187
162
  except ClientAPIException as e:
188
163
  if e.response.status_code == 404:
@@ -16,22 +16,27 @@ from ibm_watsonx_orchestrate.cli.config import (
16
16
  from threading import Lock
17
17
  from ibm_watsonx_orchestrate.client.base_api_client import BaseAPIClient
18
18
  from ibm_watsonx_orchestrate.utils.utils import yaml_safe_load
19
+ from ibm_watsonx_orchestrate.cli.commands.channels.types import RuntimeEnvironmentType
19
20
  import logging
20
21
  from typing import TypeVar
21
22
  import os
22
23
  import jwt
23
24
  import time
25
+ import sys
24
26
 
25
27
  logger = logging.getLogger(__name__)
26
28
  LOCK = Lock()
27
29
  T = TypeVar("T", bound=BaseAPIClient)
28
30
 
29
31
 
32
+ def get_current_env_url() -> str:
33
+ cfg = Config()
34
+ active_env = cfg.read(CONTEXT_SECTION_HEADER, CONTEXT_ACTIVE_ENV_OPT)
35
+ return cfg.get(ENVIRONMENTS_SECTION_HEADER, active_env, ENV_WXO_URL_OPT)
36
+
30
37
  def is_local_dev(url: str | None = None) -> bool:
31
38
  if url is None:
32
- cfg = Config()
33
- active_env = cfg.read(CONTEXT_SECTION_HEADER, CONTEXT_ACTIVE_ENV_OPT)
34
- url = cfg.get(ENVIRONMENTS_SECTION_HEADER, active_env, ENV_WXO_URL_OPT)
39
+ url = get_current_env_url()
35
40
 
36
41
  if url.startswith("http://localhost"):
37
42
  return True
@@ -47,21 +52,55 @@ def is_local_dev(url: str | None = None) -> bool:
47
52
 
48
53
  return False
49
54
 
50
- def is_ibm_cloud():
51
- cfg = Config()
52
- active_env = cfg.read(CONTEXT_SECTION_HEADER, CONTEXT_ACTIVE_ENV_OPT)
53
- url = cfg.get(ENVIRONMENTS_SECTION_HEADER, active_env, ENV_WXO_URL_OPT)
55
+ def is_ga_platform(url: str | None = None) -> bool:
56
+ if url is None:
57
+ url = get_current_env_url()
58
+
59
+ if url.__contains__("orchestrate.ibm.com"):
60
+ return True
61
+ return False
62
+
63
+ def is_saas_env():
64
+ return is_ga_platform() or is_ibm_cloud_platform()
65
+
66
+ def is_ibm_cloud_platform(url:str | None = None) -> bool:
67
+ if url is None:
68
+ url = get_current_env_url()
54
69
 
55
70
  if url.__contains__("cloud.ibm.com"):
56
71
  return True
57
72
  return False
58
73
 
74
+ def is_cpd_env(url: str | None = None) -> bool:
75
+ if url is None:
76
+ url = get_current_env_url()
59
77
 
60
- def is_cpd_env(url: str) -> bool:
61
78
  if url.lower().startswith("https://cpd"):
62
79
  return True
63
80
  return False
64
81
 
82
+ def get_environment() -> str:
83
+ if is_local_dev():
84
+ return RuntimeEnvironmentType.LOCAL
85
+ if is_cpd_env():
86
+ return RuntimeEnvironmentType.CPD
87
+ if is_ibm_cloud_platform():
88
+ return RuntimeEnvironmentType.IBM_CLOUD
89
+ if is_ga_platform():
90
+ return RuntimeEnvironmentType.AWS
91
+ return None
92
+
93
+ def get_cpd_instance_id_from_url(url: str | None = None) -> str:
94
+ if url is None:
95
+ url = get_current_env_url()
96
+
97
+ if not is_cpd_env(url):
98
+ logger.error(f"The host {url} is not a CPD instance")
99
+ sys.exit(1)
100
+
101
+ url_fragments = url.split('/')
102
+ return url_fragments[-1] if url_fragments[-1] else url_fragments[-2]
103
+
65
104
  def check_token_validity(token: str) -> bool:
66
105
  try:
67
106
  token_claimset = jwt.decode(token, options={"verify_signature": False})
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ibm-watsonx-orchestrate
3
- Version: 1.6.2
3
+ Version: 1.6.3
4
4
  Summary: IBM watsonx.orchestrate SDK
5
5
  Author-email: IBM <support@ibm.com>
6
6
  License: MIT License
@@ -1,4 +1,4 @@
1
- ibm_watsonx_orchestrate/__init__.py,sha256=OfVb1qB0WmlqIpIZShHMh2YTgizxQfQjlz2yaO6-tyE,425
1
+ ibm_watsonx_orchestrate/__init__.py,sha256=CbopMoehY1_Eu70QIrWB9YuqS3K2iAFeTipgew_ZQcI,425
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=I8ZpOKOGXAmhUIwusDmLqCUawSg74-WZFJ5IijruxAQ,932
@@ -37,15 +37,15 @@ ibm_watsonx_orchestrate/cli/commands/agents/agents_command.py,sha256=-UX6ypiF_Xw
37
37
  ibm_watsonx_orchestrate/cli/commands/agents/agents_controller.py,sha256=zTk3AemWOldfgKYYR1MOcT7z2JbYdgZgSsi7KxugFGw,47934
38
38
  ibm_watsonx_orchestrate/cli/commands/channels/channels_command.py,sha256=fVIFhPUTPdxsxIE10nWL-W5wvBR-BS8V8D6r__J8R98,822
39
39
  ibm_watsonx_orchestrate/cli/commands/channels/channels_controller.py,sha256=WjQxwJujvo28SsWgfJSXIpkcgniKcskJ2arL4MOz0Ys,455
40
- ibm_watsonx_orchestrate/cli/commands/channels/types.py,sha256=h8gA3EM7k5X08sk8T9b5siL-XL9uUE-hl_jS-0PDBHA,254
40
+ ibm_watsonx_orchestrate/cli/commands/channels/types.py,sha256=3ywcllActG3vMCysfBahGP8gPqL0TB3qH5QaPST3inE,482
41
41
  ibm_watsonx_orchestrate/cli/commands/channels/webchat/channels_webchat_command.py,sha256=vPCr6z1n1yzGDjTlM4f3_9MiuVRzNmXbvUifm6XyQi8,1103
42
- ibm_watsonx_orchestrate/cli/commands/channels/webchat/channels_webchat_controller.py,sha256=0S1ch8SwkGRtAyy7nAZEjKl92hFkIE9TU71JJ82zdjU,8128
42
+ ibm_watsonx_orchestrate/cli/commands/channels/webchat/channels_webchat_controller.py,sha256=Mvc7WpTEJ9h9o8apEdyNofRX21wNuVq3e4TP5LKwuT8,8571
43
43
  ibm_watsonx_orchestrate/cli/commands/chat/chat_command.py,sha256=Q9vg2Z5Fsunu6GQFY_TIsNRhUCa0SSGSPnK4jxSGK34,1581
44
44
  ibm_watsonx_orchestrate/cli/commands/connections/connections_command.py,sha256=qgg2NbAB7g_PHPHd0ZLUm0EjyaCSPi1qpOhtyOlydcY,10151
45
45
  ibm_watsonx_orchestrate/cli/commands/connections/connections_controller.py,sha256=ka7uBpuRlICZ4ACGiT4WqmufZYEw566NlZX5FhB9pXM,22178
46
46
  ibm_watsonx_orchestrate/cli/commands/environment/environment_command.py,sha256=xwq7gdyjMtl2RYAnLAahGk2wDetr9BStt8yu7JkeBhk,3768
47
47
  ibm_watsonx_orchestrate/cli/commands/environment/environment_controller.py,sha256=8f4yH-hmPJFo-wAHA61XjRh_gst7JIIiRBQDFj0dXHs,10183
48
- ibm_watsonx_orchestrate/cli/commands/environment/types.py,sha256=qKcgIUfTPJIomLor-utz4qi7YhBMpb1l2DiSvjVSgaA,175
48
+ ibm_watsonx_orchestrate/cli/commands/environment/types.py,sha256=-udczHuaXn9GL6Lgpj8OQPJE3Y75xPOfe-NGJIYd0i0,176
49
49
  ibm_watsonx_orchestrate/cli/commands/evaluations/evaluations_command.py,sha256=YHaTxcQxLkuojFhNcTtYbzb_lTv_dYBuz2IHl9RXXwU,11689
50
50
  ibm_watsonx_orchestrate/cli/commands/evaluations/evaluations_controller.py,sha256=pTWyuPNHKOPCYTMlYWwoGojZBdvDrHme2EAel0l4ltk,6957
51
51
  ibm_watsonx_orchestrate/cli/commands/knowledge_bases/knowledge_bases_command.py,sha256=Hxj33rFEYo1Vr2bk-uRwRhNssAETtTQgWTREvC0Nxds,3348
@@ -53,7 +53,7 @@ ibm_watsonx_orchestrate/cli/commands/knowledge_bases/knowledge_bases_controller.
53
53
  ibm_watsonx_orchestrate/cli/commands/login/login_command.py,sha256=xArMiojoozg7Exn6HTpbTcjDO2idZRA-y0WV-_Ic1Sk,651
54
54
  ibm_watsonx_orchestrate/cli/commands/models/model_provider_mapper.py,sha256=RVZfFCuPWiASkR9Mox61v5SZ1AoRxo4_g9stnbfjCkc,7994
55
55
  ibm_watsonx_orchestrate/cli/commands/models/models_command.py,sha256=xYbMHRM98TCBmnwgIOsqpfjWqD7HVirn6A4KyEgQEcE,6418
56
- ibm_watsonx_orchestrate/cli/commands/models/models_controller.py,sha256=BNfUoWST60x3k7yIvSbtBR3rmyTQmz9g0TDK2WOoOE4,18610
56
+ ibm_watsonx_orchestrate/cli/commands/models/models_controller.py,sha256=eZSYQUg9TL_-8lgcPVpKIx7MtOE7K_NCvZW9Y9YsFA0,18466
57
57
  ibm_watsonx_orchestrate/cli/commands/server/server_command.py,sha256=VstqSn3dzuzziwEc0VVkf1y9E3qN94mTJuCbeFO4KCY,37478
58
58
  ibm_watsonx_orchestrate/cli/commands/server/types.py,sha256=UCrgGErbSVBnOzesfjrIii4tTCuVfWemYz5AKGZX0oA,4213
59
59
  ibm_watsonx_orchestrate/cli/commands/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -75,7 +75,7 @@ ibm_watsonx_orchestrate/client/client_errors.py,sha256=72MKCNZbKoo2QXyY0RicLhP3r
75
75
  ibm_watsonx_orchestrate/client/credentials.py,sha256=gDVeeQZDdbbjJiO1EI61yx2oRgTQctxA2ZesSDHI4DA,3786
76
76
  ibm_watsonx_orchestrate/client/local_service_instance.py,sha256=gdeol7xNRVnxEMr5rui1ovqtwDfMRziHn9GIjo7-MVo,3447
77
77
  ibm_watsonx_orchestrate/client/service_instance.py,sha256=uZlsMW9LC_2GggqEjBQY09fm6uZJ-0audwzqgCyjbbQ,5277
78
- ibm_watsonx_orchestrate/client/utils.py,sha256=86UH5H54uTJA2kFb4dXrnGfs7hFQZ3h21ElwngZpT24,4745
78
+ ibm_watsonx_orchestrate/client/utils.py,sha256=GICopCZYlQrrF1ZJKFit9FYAUf-aczuD2RLA3iT4rjY,5842
79
79
  ibm_watsonx_orchestrate/client/agents/agent_client.py,sha256=v1ZqXKj3p5JeJyOLpV84UUI2LY8XPjW1ejo5yzkeiMQ,4708
80
80
  ibm_watsonx_orchestrate/client/agents/assistant_agent_client.py,sha256=1JQN0E4T_uz5V0LM-LD1ahNu2KCeFBjXAr8WCiP9mkE,1745
81
81
  ibm_watsonx_orchestrate/client/agents/external_agent_client.py,sha256=iQ44XBdC4rYfS-zFn4St1xC5y5gf5SNqKHzMNQcFDZc,1808
@@ -83,7 +83,7 @@ ibm_watsonx_orchestrate/client/analytics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5
83
83
  ibm_watsonx_orchestrate/client/analytics/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
84
84
  ibm_watsonx_orchestrate/client/analytics/llm/analytics_llm_client.py,sha256=0YS_BCpmf5oGFawpZkJ38cuz5ArhKsZIbSydWRd194s,1340
85
85
  ibm_watsonx_orchestrate/client/connections/__init__.py,sha256=J7TOyVg38h71AlaJjlFs5fOuAXTceHvELtOJ9oz4Mvg,207
86
- ibm_watsonx_orchestrate/client/connections/connections_client.py,sha256=B6LQPwoFHg_CIXHEJBjVu6fXnRj_xVsLGsC-DhmdfSQ,8478
86
+ ibm_watsonx_orchestrate/client/connections/connections_client.py,sha256=8f_olWVgQVLi6xKO_DvV68zu_AMLe1DMhoQAhC-BG3g,7583
87
87
  ibm_watsonx_orchestrate/client/connections/utils.py,sha256=f6HsiDI6cycOqfYN6P4uZ3SQds83xlh83zTUioZPeYk,2618
88
88
  ibm_watsonx_orchestrate/client/knowledge_bases/knowledge_base_client.py,sha256=U-pG_H0I8992f0V13Li_e1dksKp54MrYX3X9bvr-09w,2181
89
89
  ibm_watsonx_orchestrate/client/model_policies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -118,8 +118,8 @@ ibm_watsonx_orchestrate/utils/utils.py,sha256=U7z_2iASoFiZ2zM0a_2Mc2Y-P5oOT7hOwu
118
118
  ibm_watsonx_orchestrate/utils/logging/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
119
119
  ibm_watsonx_orchestrate/utils/logging/logger.py,sha256=FzeGnidXAjC7yHrvIaj4KZPeaBBSCniZFlwgr5yV3oA,1037
120
120
  ibm_watsonx_orchestrate/utils/logging/logging.yaml,sha256=9_TKfuFr1barnOKP0fZT5D6MhddiwsXVTFjtRbcOO5w,314
121
- ibm_watsonx_orchestrate-1.6.2.dist-info/METADATA,sha256=vEKjA3XqPvwQinfXD0axdqgnN-QQlYGeSvXOmXjc27Q,1510
122
- ibm_watsonx_orchestrate-1.6.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
123
- ibm_watsonx_orchestrate-1.6.2.dist-info/entry_points.txt,sha256=SfIT02-Jen5e99OcLhzbcM9Bdyf8SGVOCtnSplgZdQI,69
124
- ibm_watsonx_orchestrate-1.6.2.dist-info/licenses/LICENSE,sha256=Shgxx7hTdCOkiVRmfGgp_1ISISrwQD7m2f0y8Hsapl4,1083
125
- ibm_watsonx_orchestrate-1.6.2.dist-info/RECORD,,
121
+ ibm_watsonx_orchestrate-1.6.3.dist-info/METADATA,sha256=d0rBdBGHfrTQ76r9RyovniCwQRhhliisLp44zzgQU0Q,1510
122
+ ibm_watsonx_orchestrate-1.6.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
123
+ ibm_watsonx_orchestrate-1.6.3.dist-info/entry_points.txt,sha256=SfIT02-Jen5e99OcLhzbcM9Bdyf8SGVOCtnSplgZdQI,69
124
+ ibm_watsonx_orchestrate-1.6.3.dist-info/licenses/LICENSE,sha256=Shgxx7hTdCOkiVRmfGgp_1ISISrwQD7m2f0y8Hsapl4,1083
125
+ ibm_watsonx_orchestrate-1.6.3.dist-info/RECORD,,