ibm-watsonx-orchestrate 1.11.0b1__py3-none-any.whl → 1.12.0__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.
Files changed (57) hide show
  1. ibm_watsonx_orchestrate/__init__.py +1 -1
  2. ibm_watsonx_orchestrate/agent_builder/agents/types.py +22 -5
  3. ibm_watsonx_orchestrate/agent_builder/connections/connections.py +3 -3
  4. ibm_watsonx_orchestrate/agent_builder/connections/types.py +14 -0
  5. ibm_watsonx_orchestrate/agent_builder/knowledge_bases/types.py +1 -1
  6. ibm_watsonx_orchestrate/agent_builder/models/types.py +1 -0
  7. ibm_watsonx_orchestrate/agent_builder/toolkits/base_toolkit.py +1 -1
  8. ibm_watsonx_orchestrate/agent_builder/tools/__init__.py +1 -0
  9. ibm_watsonx_orchestrate/agent_builder/tools/base_tool.py +1 -1
  10. ibm_watsonx_orchestrate/agent_builder/tools/langflow_tool.py +184 -0
  11. ibm_watsonx_orchestrate/agent_builder/tools/openapi_tool.py +9 -3
  12. ibm_watsonx_orchestrate/agent_builder/tools/types.py +20 -2
  13. ibm_watsonx_orchestrate/cli/commands/agents/agents_controller.py +19 -6
  14. ibm_watsonx_orchestrate/cli/commands/connections/connections_command.py +18 -0
  15. ibm_watsonx_orchestrate/cli/commands/connections/connections_controller.py +114 -0
  16. ibm_watsonx_orchestrate/cli/commands/copilot/copilot_controller.py +2 -6
  17. ibm_watsonx_orchestrate/cli/commands/copilot/copilot_server_controller.py +24 -91
  18. ibm_watsonx_orchestrate/cli/commands/environment/environment_command.py +5 -1
  19. ibm_watsonx_orchestrate/cli/commands/environment/environment_controller.py +6 -3
  20. ibm_watsonx_orchestrate/cli/commands/evaluations/evaluations_command.py +52 -2
  21. ibm_watsonx_orchestrate/cli/commands/evaluations/evaluations_controller.py +1 -1
  22. ibm_watsonx_orchestrate/cli/commands/models/model_provider_mapper.py +23 -4
  23. ibm_watsonx_orchestrate/cli/commands/models/models_controller.py +3 -3
  24. ibm_watsonx_orchestrate/cli/commands/partners/offering/partners_offering_command.py +56 -0
  25. ibm_watsonx_orchestrate/cli/commands/partners/offering/partners_offering_controller.py +475 -0
  26. ibm_watsonx_orchestrate/cli/commands/partners/offering/types.py +99 -0
  27. ibm_watsonx_orchestrate/cli/commands/partners/partners_command.py +12 -0
  28. ibm_watsonx_orchestrate/cli/commands/partners/partners_controller.py +0 -0
  29. ibm_watsonx_orchestrate/cli/commands/server/server_command.py +124 -637
  30. ibm_watsonx_orchestrate/cli/commands/server/types.py +1 -1
  31. ibm_watsonx_orchestrate/cli/commands/toolkit/toolkit_command.py +2 -2
  32. ibm_watsonx_orchestrate/cli/commands/toolkit/toolkit_controller.py +2 -2
  33. ibm_watsonx_orchestrate/cli/commands/tools/tools_command.py +2 -3
  34. ibm_watsonx_orchestrate/cli/commands/tools/tools_controller.py +241 -49
  35. ibm_watsonx_orchestrate/cli/config.py +3 -1
  36. ibm_watsonx_orchestrate/cli/main.py +2 -0
  37. ibm_watsonx_orchestrate/client/connections/connections_client.py +4 -1
  38. ibm_watsonx_orchestrate/client/tools/tempus_client.py +3 -0
  39. ibm_watsonx_orchestrate/client/tools/tool_client.py +5 -2
  40. ibm_watsonx_orchestrate/client/utils.py +31 -1
  41. ibm_watsonx_orchestrate/docker/compose-lite.yml +68 -17
  42. ibm_watsonx_orchestrate/docker/default.env +21 -18
  43. ibm_watsonx_orchestrate/flow_builder/flows/decorators.py +10 -2
  44. ibm_watsonx_orchestrate/flow_builder/flows/flow.py +71 -9
  45. ibm_watsonx_orchestrate/flow_builder/node.py +14 -2
  46. ibm_watsonx_orchestrate/flow_builder/types.py +36 -3
  47. ibm_watsonx_orchestrate/langflow/__init__.py +0 -0
  48. ibm_watsonx_orchestrate/langflow/langflow_utils.py +195 -0
  49. ibm_watsonx_orchestrate/langflow/lfx_deps.py +84 -0
  50. ibm_watsonx_orchestrate/utils/docker_utils.py +280 -0
  51. ibm_watsonx_orchestrate/utils/environment.py +369 -0
  52. ibm_watsonx_orchestrate/utils/utils.py +7 -3
  53. {ibm_watsonx_orchestrate-1.11.0b1.dist-info → ibm_watsonx_orchestrate-1.12.0.dist-info}/METADATA +2 -2
  54. {ibm_watsonx_orchestrate-1.11.0b1.dist-info → ibm_watsonx_orchestrate-1.12.0.dist-info}/RECORD +57 -46
  55. {ibm_watsonx_orchestrate-1.11.0b1.dist-info → ibm_watsonx_orchestrate-1.12.0.dist-info}/WHEEL +0 -0
  56. {ibm_watsonx_orchestrate-1.11.0b1.dist-info → ibm_watsonx_orchestrate-1.12.0.dist-info}/entry_points.txt +0 -0
  57. {ibm_watsonx_orchestrate-1.11.0b1.dist-info → ibm_watsonx_orchestrate-1.12.0.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,369 @@
1
+ import importlib.resources as resources
2
+ import logging
3
+ import os
4
+ import platform
5
+ import subprocess
6
+ import sys
7
+ import tempfile
8
+ from pathlib import Path
9
+ from urllib.parse import urlparse
10
+
11
+ from dotenv import dotenv_values
12
+
13
+ from ibm_watsonx_orchestrate.cli.commands.server.types import WatsonXAIEnvConfig, ModelGatewayEnvConfig
14
+ from ibm_watsonx_orchestrate.cli.config import USER_ENV_CACHE_HEADER, Config
15
+ from ibm_watsonx_orchestrate.client.utils import is_arm_architecture
16
+
17
+ logger = logging.getLogger(__name__)
18
+
19
+
20
+ class EnvService:
21
+
22
+ __ALWAYS_UNSET: set[str] = {
23
+ "WO_API_KEY",
24
+ "WO_INSTANCE",
25
+ "DOCKER_IAM_KEY",
26
+ "WO_DEVELOPER_EDITION_SOURCE",
27
+ "WATSONX_SPACE_ID",
28
+ "WATSONX_APIKEY",
29
+ "WO_USERNAME",
30
+ "WO_PASSWORD",
31
+ }
32
+
33
+ __NON_SECRET_ENV_ITEMS: set[str] = {
34
+ "WO_DEVELOPER_EDITION_SOURCE",
35
+ "WO_INSTANCE",
36
+ "USE_SAAS_ML_TOOLS_RUNTIME",
37
+ "AUTHORIZATION_URL",
38
+ "OPENSOURCE_REGISTRY_PROXY",
39
+ "SAAS_WDU_RUNTIME",
40
+ "LATEST_ENV_FILE",
41
+ }
42
+
43
+ def __init__ (self, config: Config):
44
+ self.__config = config
45
+
46
+ def get_compose_file (self) -> Path:
47
+ custom_compose_path = self.__get_compose_file_path()
48
+ return Path(custom_compose_path) if custom_compose_path else self.__get_default_compose_file()
49
+
50
+ def __get_compose_file_path (self) -> str:
51
+ return self.__config.read(USER_ENV_CACHE_HEADER, "DOCKER_COMPOSE_FILE_PATH")
52
+
53
+ @staticmethod
54
+ def __get_default_compose_file () -> Path:
55
+ with resources.as_file(
56
+ resources.files("ibm_watsonx_orchestrate.docker").joinpath("compose-lite.yml")
57
+ ) as compose_file:
58
+ return compose_file
59
+
60
+ @staticmethod
61
+ def get_default_env_file () -> Path:
62
+ with resources.as_file(
63
+ resources.files("ibm_watsonx_orchestrate.docker").joinpath("default.env")
64
+ ) as env_file:
65
+ return env_file
66
+
67
+ @staticmethod
68
+ def read_env_file (env_path: Path | str) -> dict:
69
+ return dotenv_values(str(env_path))
70
+
71
+ def get_user_env (self, user_env_file: Path | str, fallback_to_persisted_env: bool = True) -> dict:
72
+ if user_env_file is not None and isinstance(user_env_file, str):
73
+ user_env_file = Path(user_env_file)
74
+
75
+ user_env = self.read_env_file(user_env_file) if user_env_file is not None else {}
76
+
77
+ if fallback_to_persisted_env is True and not user_env:
78
+ user_env = self.__get_persisted_user_env() or {}
79
+
80
+ return user_env
81
+
82
+ @staticmethod
83
+ def get_dev_edition_source_core(env_dict: dict | None) -> str:
84
+ if not env_dict:
85
+ return "myibm"
86
+
87
+ source = env_dict.get("WO_DEVELOPER_EDITION_SOURCE")
88
+
89
+ if source:
90
+ return source
91
+ if env_dict.get("WO_INSTANCE"):
92
+ return "orchestrate"
93
+ return "myibm"
94
+
95
+ def get_dev_edition_source(self, user_env_file: str):
96
+ return self.get_dev_edition_source_core(self.get_user_env(user_env_file))
97
+
98
+ @staticmethod
99
+ def merge_env (default_env_path: Path, user_env_path: Path | None) -> dict:
100
+ merged = dotenv_values(str(default_env_path))
101
+
102
+ if user_env_path is not None:
103
+ user_env = dotenv_values(str(user_env_path))
104
+ merged.update(user_env)
105
+
106
+ return merged
107
+
108
+ @staticmethod
109
+ def __get_default_registry_env_vars_by_dev_edition_source (default_env: dict, user_env: dict, source: str) -> dict[str, str]:
110
+ component_registry_var_names = {key for key in default_env if key.endswith("_REGISTRY")} | {'REGISTRY_URL'}
111
+
112
+ registry_url = user_env.get("REGISTRY_URL", None)
113
+ if not registry_url:
114
+ if source == "internal":
115
+ registry_url = "us.icr.io/watson-orchestrate-private"
116
+ elif source == "myibm":
117
+ registry_url = "cp.icr.io/cp/wxo-lite"
118
+ elif source == "orchestrate":
119
+ # extract the hostname from the WO_INSTANCE URL, and replace the "api." prefix with "registry." to construct the registry URL per region
120
+ wo_url = user_env.get("WO_INSTANCE")
121
+
122
+ if not wo_url:
123
+ raise ValueError(
124
+ "WO_INSTANCE is required in the environment file if the developer edition source is set to 'orchestrate'.")
125
+
126
+ parsed = urlparse(wo_url)
127
+ hostname = parsed.hostname
128
+
129
+ registry_url = f"registry.{hostname[4:]}/cp/wxo-lite"
130
+ else:
131
+ raise ValueError(
132
+ f"Unknown value for developer edition source: {source}. Must be one of ['internal', 'myibm', 'orchestrate']."
133
+ )
134
+
135
+ result = {name: registry_url for name in component_registry_var_names}
136
+ return result
137
+
138
+ @staticmethod
139
+ def prepare_clean_env (env_file: Path) -> None:
140
+ """Remove env vars so terminal definitions don't override"""
141
+ keys_from_file = set(dotenv_values(str(env_file)).keys())
142
+ keys_to_unset = keys_from_file | EnvService.__ALWAYS_UNSET
143
+ for key in keys_to_unset:
144
+ os.environ.pop(key, None)
145
+
146
+ @staticmethod
147
+ def write_merged_env_file (merged_env: dict, target_path: str = None) -> Path:
148
+ if target_path:
149
+ file = open(target_path, "w")
150
+ else:
151
+ file = tempfile.NamedTemporaryFile(mode="w", delete=False, suffix=".env")
152
+
153
+ with file:
154
+ for key, val in merged_env.items():
155
+ file.write(f"{key}={val}\n")
156
+ return Path(file.name)
157
+
158
+ def persist_user_env (self, env: dict, include_secrets: bool = False) -> None:
159
+ if include_secrets:
160
+ persistable_env = env
161
+ else:
162
+ persistable_env = {k: env[k] for k in EnvService.__NON_SECRET_ENV_ITEMS if k in env}
163
+
164
+ self.__config.save(
165
+ {
166
+ USER_ENV_CACHE_HEADER: persistable_env
167
+ }
168
+ )
169
+
170
+ def __get_persisted_user_env (self) -> dict | None:
171
+ user_env = self.__config.get(USER_ENV_CACHE_HEADER) if self.__config.get(USER_ENV_CACHE_HEADER) else None
172
+ return user_env
173
+
174
+ def set_compose_file_path_in_env (self, path: str = None) -> None:
175
+ self.__config.save(
176
+ {
177
+ USER_ENV_CACHE_HEADER: {
178
+ "DOCKER_COMPOSE_FILE_PATH": path
179
+ }
180
+ }
181
+ )
182
+
183
+ @staticmethod
184
+ def __get_dbtag_from_architecture (merged_env_dict: dict) -> str:
185
+ """Detects system architecture and returns the corresponding DBTAG."""
186
+ arm64_tag = merged_env_dict.get("ARM64DBTAG")
187
+ amd_tag = merged_env_dict.get("AMDDBTAG")
188
+
189
+ if is_arm_architecture():
190
+ return arm64_tag
191
+ else:
192
+ return amd_tag
193
+
194
+ @staticmethod
195
+ def __apply_server_env_dict_defaults (provided_env_dict: dict) -> dict:
196
+
197
+ env_dict = provided_env_dict.copy()
198
+
199
+ env_dict['DBTAG'] = EnvService.__get_dbtag_from_architecture(merged_env_dict=env_dict)
200
+
201
+ model_config = None
202
+ try:
203
+ use_model_proxy = env_dict.get("USE_SAAS_ML_TOOLS_RUNTIME")
204
+ if not use_model_proxy or use_model_proxy.lower() != 'true':
205
+ model_config = WatsonXAIEnvConfig.model_validate(env_dict)
206
+ except ValueError:
207
+ pass
208
+
209
+ # If no watsonx ai detials are found, try build model gateway config
210
+ if not model_config:
211
+ try:
212
+ model_config = ModelGatewayEnvConfig.model_validate(env_dict)
213
+ except ValueError as e:
214
+ pass
215
+
216
+ if not model_config:
217
+ logger.error(
218
+ "Missing required model access environment variables. Please set Watson Orchestrate credentials 'WO_INSTANCE' and 'WO_API_KEY'. For CPD, set 'WO_INSTANCE', 'WO_USERNAME' and either 'WO_API_KEY' or 'WO_PASSWORD'. Alternatively, you can set WatsonX AI credentials directly using 'WATSONX_SPACE_ID' and 'WATSONX_APIKEY'")
219
+ sys.exit(1)
220
+
221
+ env_dict.update(model_config.model_dump(exclude_none=True))
222
+
223
+ return env_dict
224
+
225
+ @staticmethod
226
+ def auto_configure_callback_ip (merged_env_dict: dict) -> dict:
227
+ """
228
+ Automatically detect and configure CALLBACK_HOST_URL if it's empty.
229
+
230
+ Args:
231
+ merged_env_dict: The merged environment dictionary
232
+
233
+ Returns:
234
+ Updated environment dictionary with CALLBACK_HOST_URL set
235
+ """
236
+ callback_url = merged_env_dict.get('CALLBACK_HOST_URL', '').strip()
237
+
238
+ # Only auto-configure if CALLBACK_HOST_URL is empty
239
+ if not callback_url:
240
+ logger.info("Auto-detecting local IP address for async tool callbacks...")
241
+
242
+ system = platform.system()
243
+ ip = None
244
+
245
+ try:
246
+ if system in ("Linux", "Darwin"):
247
+ result = subprocess.run(["ifconfig"], capture_output=True, text=True, check=True)
248
+ lines = result.stdout.splitlines()
249
+
250
+ for line in lines:
251
+ line = line.strip()
252
+ # Unix ifconfig output format: "inet 192.168.1.100 netmask 0xffffff00 broadcast 192.168.1.255"
253
+ if line.startswith("inet ") and "127.0.0.1" not in line:
254
+ candidate_ip = line.split()[1]
255
+ # Validate IP is not loopback or link-local
256
+ if (candidate_ip and
257
+ not candidate_ip.startswith("127.") and
258
+ not candidate_ip.startswith("169.254")):
259
+ ip = candidate_ip
260
+ break
261
+
262
+ elif system == "Windows":
263
+ result = subprocess.run(["ipconfig"], capture_output=True, text=True, check=True)
264
+ lines = result.stdout.splitlines()
265
+
266
+ for line in lines:
267
+ line = line.strip()
268
+ # Windows ipconfig output format: " IPv4 Address. . . . . . . . . . . : 192.168.1.100"
269
+ if "IPv4 Address" in line and ":" in line:
270
+ candidate_ip = line.split(":")[-1].strip()
271
+ # Validate IP is not loopback or link-local
272
+ if (candidate_ip and
273
+ not candidate_ip.startswith("127.") and
274
+ not candidate_ip.startswith("169.254")):
275
+ ip = candidate_ip
276
+ break
277
+
278
+ else:
279
+ logger.warning(f"Unsupported platform: {system}")
280
+ ip = None
281
+
282
+ except Exception as e:
283
+ logger.debug(f"IP detection failed on {system}: {e}")
284
+ ip = None
285
+
286
+ if ip:
287
+ callback_url = f"http://{ip}:4321"
288
+ merged_env_dict['CALLBACK_HOST_URL'] = callback_url
289
+ logger.info(f"Auto-configured CALLBACK_HOST_URL to: {callback_url}")
290
+ else:
291
+ # Fallback for localhost
292
+ callback_url = "http://host.docker.internal:4321"
293
+ merged_env_dict['CALLBACK_HOST_URL'] = callback_url
294
+ logger.info(f"Using Docker internal URL: {callback_url}")
295
+ logger.info("For external tools, consider using ngrok or similar tunneling service.")
296
+ else:
297
+ logger.info(f"Using existing CALLBACK_HOST_URL: {callback_url}")
298
+
299
+ return merged_env_dict
300
+
301
+ @staticmethod
302
+ def apply_llm_api_key_defaults (env_dict: dict) -> None:
303
+ llm_value = env_dict.get("WATSONX_APIKEY")
304
+ if llm_value:
305
+ env_dict.setdefault("ASSISTANT_LLM_API_KEY", llm_value)
306
+ env_dict.setdefault("ASSISTANT_EMBEDDINGS_API_KEY", llm_value)
307
+ env_dict.setdefault("ROUTING_LLM_API_KEY", llm_value)
308
+ env_dict.setdefault("BAM_API_KEY", llm_value)
309
+ env_dict.setdefault("WXAI_API_KEY", llm_value)
310
+ space_value = env_dict.get("WATSONX_SPACE_ID")
311
+ if space_value:
312
+ env_dict.setdefault("ASSISTANT_LLM_SPACE_ID", space_value)
313
+ env_dict.setdefault("ASSISTANT_EMBEDDINGS_SPACE_ID", space_value)
314
+ env_dict.setdefault("ROUTING_LLM_SPACE_ID", space_value)
315
+
316
+ @staticmethod
317
+ def __drop_auth_routes (env_dict: dict) -> dict:
318
+ auth_url_key = "AUTHORIZATION_URL"
319
+ env_dict_copy = env_dict.copy()
320
+
321
+ auth_url = env_dict_copy.get(auth_url_key)
322
+ if not auth_url:
323
+ return env_dict_copy
324
+
325
+ parsed_url = urlparse(auth_url)
326
+ new_url = f"{parsed_url.scheme}://{parsed_url.netloc}"
327
+ env_dict_copy[auth_url_key] = new_url
328
+
329
+ return env_dict_copy
330
+
331
+ @staticmethod
332
+ def prepare_server_env_vars_minimal (user_env: dict = {}) -> dict:
333
+ default_env = EnvService.read_env_file(EnvService.get_default_env_file())
334
+ dev_edition_source = EnvService.get_dev_edition_source_core(user_env)
335
+ default_registry_vars = EnvService.__get_default_registry_env_vars_by_dev_edition_source(default_env, user_env,
336
+ source=dev_edition_source)
337
+
338
+ # Update the default environment with the default registry variables only if they are not already set
339
+ for key in default_registry_vars:
340
+ if key not in default_env or not default_env[key]:
341
+ default_env[key] = default_registry_vars[key]
342
+
343
+ # Merge the default environment with the user environment
344
+ merged_env_dict = {
345
+ **default_env,
346
+ **user_env,
347
+ }
348
+
349
+ return merged_env_dict
350
+
351
+ @staticmethod
352
+ def prepare_server_env_vars (user_env: dict = {}, should_drop_auth_routes: bool = False) -> dict:
353
+ merged_env_dict = EnvService.prepare_server_env_vars_minimal(user_env)
354
+
355
+ merged_env_dict = EnvService.__apply_server_env_dict_defaults(merged_env_dict)
356
+
357
+ if should_drop_auth_routes:
358
+ # NOTE: this is only needed in the case of co-pilot as of now.
359
+ merged_env_dict = EnvService.__drop_auth_routes(merged_env_dict)
360
+
361
+ # Auto-configure callback IP for async tools
362
+ merged_env_dict = EnvService.auto_configure_callback_ip(merged_env_dict)
363
+
364
+ EnvService.apply_llm_api_key_defaults(merged_env_dict)
365
+
366
+ return merged_env_dict
367
+
368
+ def define_saas_wdu_runtime (self, value: str = "none") -> None:
369
+ self.__config.write(USER_ENV_CACHE_HEADER, "SAAS_WDU_RUNTIME", value)
@@ -10,9 +10,13 @@ yaml.constructor.SafeConstructor.yaml_constructors[u'tag:yaml.org,2002:timestamp
10
10
  def yaml_safe_load(file : BinaryIO) -> dict:
11
11
  return yaml.safe_load(file)
12
12
 
13
- def sanatize_app_id(app_id: str) -> str:
14
- sanatize_pattern = re.compile(r"[^a-zA-Z0-9]+")
15
- return re.sub(sanatize_pattern,'_', app_id)
13
+ def sanitize_app_id(app_id: str) -> str:
14
+ sanitize_pattern = re.compile(r"[^a-zA-Z0-9]+")
15
+ return re.sub(sanitize_pattern,'_', app_id)
16
+
17
+ def sanitize_catalog_label(label: str) -> str:
18
+ sanitize_pattern = re.compile(r"[^a-zA-Z0-9]+")
19
+ return re.sub(sanitize_pattern,'_', label)
16
20
 
17
21
  def check_file_in_zip(file_path: str, zip_file: zipfile.ZipFile) -> bool:
18
22
  return any(x.startswith("%s/" % file_path.rstrip("/")) for x in zip_file.namelist())
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ibm-watsonx-orchestrate
3
- Version: 1.11.0b1
3
+ Version: 1.12.0
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.1
14
+ Requires-Dist: ibm-watsonx-orchestrate-evaluation-framework==1.1.3
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
@@ -1,75 +1,81 @@
1
- ibm_watsonx_orchestrate/__init__.py,sha256=0L3LsRlSfdOw83yNdcW-8ikL4uUoiKXwa9yVRPKWRug,428
1
+ ibm_watsonx_orchestrate/__init__.py,sha256=y6GXYSKlMPiM-MKMqxpp0VajD95AmYBcPdSnVgKgBKY,426
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
5
5
  ibm_watsonx_orchestrate/agent_builder/agents/assistant_agent.py,sha256=NnWThJ2N8HUOD9IDL6ZhtTKyLMHSacJCpxDNityRmgY,1051
6
6
  ibm_watsonx_orchestrate/agent_builder/agents/external_agent.py,sha256=7HzEFjd7JiiRTgvA1RVA3M0-Mr42FTQnOtGMII5ufk0,1045
7
- ibm_watsonx_orchestrate/agent_builder/agents/types.py,sha256=02HUrEh-v9-iuljPbZKhfxX2rXR4SvltOzV91jvM-1Q,13957
7
+ ibm_watsonx_orchestrate/agent_builder/agents/types.py,sha256=1DBafY3-TF_wvmmlUYlFt-XhnDQLxWhDuG_q_RZvN6g,14553
8
8
  ibm_watsonx_orchestrate/agent_builder/agents/webchat_customizations/__init__.py,sha256=5TXa8UqKUAlDo4hTbE5S9OPEkQhxXhPJHJC4pEe8U00,92
9
9
  ibm_watsonx_orchestrate/agent_builder/agents/webchat_customizations/prompts.py,sha256=jNVF_jgz1Dmt7-RxAceAS0XWXk_fx9h3sS_fGrvZT28,941
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
- ibm_watsonx_orchestrate/agent_builder/connections/connections.py,sha256=ozRTZ1Y10YbipE6oegI8QIP31fWqUaBUFoHAo-WTY3g,5547
13
- ibm_watsonx_orchestrate/agent_builder/connections/types.py,sha256=cfM2L4VscC-0muDwqq5EhCKKQxwWyHmA-rQBE9LE7r0,11244
12
+ ibm_watsonx_orchestrate/agent_builder/connections/connections.py,sha256=fBFNlied7Gq1tYIkeFhA-AQuAmNcPYSu7Lnuce5v34A,5547
13
+ ibm_watsonx_orchestrate/agent_builder/connections/types.py,sha256=ys-AT0NC8V5aUA-XsySH43ZSrQglxT6DfZui7a1dg-U,11714
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=xXt822LTGAgSso0lckeKoiouoyOiPlrD0AvQpn821IY,8977
16
+ ibm_watsonx_orchestrate/agent_builder/knowledge_bases/types.py,sha256=4gvzIwSxO9Py4hCZJRs7zOsPusXRcFswqjDGYyqbiXQ,8994
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=bWKrKeBMByjhEvkXieJUYOxVr1Px6mk8v4GsvjRrvo8,9812
21
- ibm_watsonx_orchestrate/agent_builder/toolkits/base_toolkit.py,sha256=KXRPgBK-F9Qa6IYqEslkN3ANj3cmZoZQnlSiy_-iXCk,1054
20
+ ibm_watsonx_orchestrate/agent_builder/models/types.py,sha256=NHcq5mRV4pfNHql8E8fghC9F8IbOTQ3sKqFQDxFQWKo,9828
21
+ ibm_watsonx_orchestrate/agent_builder/toolkits/base_toolkit.py,sha256=uJASxkwgYpnXRfzMTeQo_I9fPewAldSDyFFmZzlTFlM,1074
22
22
  ibm_watsonx_orchestrate/agent_builder/toolkits/types.py,sha256=RGkS01_fqbs-7YFFZbuxHv64AHdaav2jm0RDKsVMb4c,986
23
- ibm_watsonx_orchestrate/agent_builder/tools/__init__.py,sha256=adkYX0wgB-RKFCUBw6LPJhNVelUjUdsxipGPk2ghLns,479
24
- ibm_watsonx_orchestrate/agent_builder/tools/base_tool.py,sha256=0vwMIAyKyB8v1QmNrubLy8Al58g3qT78EUgrmOjegoI,1220
23
+ ibm_watsonx_orchestrate/agent_builder/tools/__init__.py,sha256=R07j4zERCBX22ILsGBl3qRw0poaVSONPnMZ_69bAFDw,519
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
- ibm_watsonx_orchestrate/agent_builder/tools/openapi_tool.py,sha256=h9ma18GUQHt88UIakd6QZHic822bAXzYokh6sfqAMZk,19410
26
+ ibm_watsonx_orchestrate/agent_builder/tools/langflow_tool.py,sha256=beozS44KQkjy3hjUn17Sy1xoPZyviu7o3_ez4KGtJgU,6843
27
+ ibm_watsonx_orchestrate/agent_builder/tools/openapi_tool.py,sha256=haAN5t4YMGrVM788UdMxfMWUctOe6_3szGxsRF3KPr8,19730
27
28
  ibm_watsonx_orchestrate/agent_builder/tools/python_tool.py,sha256=cdgu-v1oRR9RUbMNKEklOzO1z3nNZpDZPSMwnJEvuIY,12533
28
- ibm_watsonx_orchestrate/agent_builder/tools/types.py,sha256=3nJ5IxI3k_2GH0KQpZ17Uq4VN2WshCIExc6TuPIz3lw,8258
29
+ ibm_watsonx_orchestrate/agent_builder/tools/types.py,sha256=8Esn77LZSBNTiKOpvRXF35LUFnfydyvZ-oxAQJyt1wE,8931
29
30
  ibm_watsonx_orchestrate/agent_builder/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
30
31
  ibm_watsonx_orchestrate/agent_builder/voice_configurations/__init__.py,sha256=W3-T8PH_KuONsCQPILQAvW2Nz25p7dp9AZbWHWGJXhA,37
31
32
  ibm_watsonx_orchestrate/agent_builder/voice_configurations/types.py,sha256=lSS1yiDzVAMkEdOwcI4_1DUuRnu_6oc8XupQtoE4Fvs,3989
32
33
  ibm_watsonx_orchestrate/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
33
- ibm_watsonx_orchestrate/cli/config.py,sha256=iXjDxymWhAmLSUu6eh7zJR20dYZDzbxcU5VoBdh3VIw,8318
34
+ ibm_watsonx_orchestrate/cli/config.py,sha256=ZcuOhd-zXZQ6N0yMM3DLpz9SKHywiB1djk6SrAqGDOk,8435
34
35
  ibm_watsonx_orchestrate/cli/init_helper.py,sha256=qxnKdFcPtGsV_6RqP_IuLshRxgB004SxzDAkBTExA-4,1675
35
- ibm_watsonx_orchestrate/cli/main.py,sha256=Jrp0d40-RAtpzsGnf45dpPxJi3d7snod5BCnFMh4foU,3384
36
+ ibm_watsonx_orchestrate/cli/main.py,sha256=5AuoVVDHzgNZ6Y2ZR4bSF1cs7AhQRyd8n7S41o8lK4w,3618
36
37
  ibm_watsonx_orchestrate/cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
37
38
  ibm_watsonx_orchestrate/cli/commands/agents/agents_command.py,sha256=mWVojmtxslXL-eGMs7NUNBV_DudmQKeNnTaE9V9jjfU,9832
38
- ibm_watsonx_orchestrate/cli/commands/agents/agents_controller.py,sha256=ZawqJS6qF82IKIFAx0xJbQsAfYSHM-6UBdNtbXU7quk,65618
39
+ ibm_watsonx_orchestrate/cli/commands/agents/agents_controller.py,sha256=WYuDR6aCbOsDxkFH6v0GPtXw6ButkDXD-abdnGi8kMM,66303
39
40
  ibm_watsonx_orchestrate/cli/commands/channels/channels_command.py,sha256=fVIFhPUTPdxsxIE10nWL-W5wvBR-BS8V8D6r__J8R98,822
40
41
  ibm_watsonx_orchestrate/cli/commands/channels/channels_controller.py,sha256=WjQxwJujvo28SsWgfJSXIpkcgniKcskJ2arL4MOz0Ys,455
41
42
  ibm_watsonx_orchestrate/cli/commands/channels/types.py,sha256=hMFvWPr7tAmDrhBqtzfkCsrubX3lsU6lapTSOFsUbHM,475
42
43
  ibm_watsonx_orchestrate/cli/commands/channels/webchat/channels_webchat_command.py,sha256=vPCr6z1n1yzGDjTlM4f3_9MiuVRzNmXbvUifm6XyQi8,1103
43
44
  ibm_watsonx_orchestrate/cli/commands/channels/webchat/channels_webchat_controller.py,sha256=CGfmKsCBX4E3HMZ8C0IXD-DHQNwe96V1Y_BxUZM2us0,8557
44
45
  ibm_watsonx_orchestrate/cli/commands/chat/chat_command.py,sha256=Q9vg2Z5Fsunu6GQFY_TIsNRhUCa0SSGSPnK4jxSGK34,1581
45
- ibm_watsonx_orchestrate/cli/commands/connections/connections_command.py,sha256=lwPhDPemDvFU-j7QUj8E07hsnzLBUJDNcyhQDzxs3S8,12442
46
- ibm_watsonx_orchestrate/cli/commands/connections/connections_controller.py,sha256=_i1gaR2Nuy9gPLJZTJWoVnRvg9vKcwyg2UoiK5Azsw4,26390
46
+ ibm_watsonx_orchestrate/cli/commands/connections/connections_command.py,sha256=yHT6hBaoA42iz_XGpbqTYIOc5oDFVBR1dVaV3XZnY3w,12948
47
+ ibm_watsonx_orchestrate/cli/commands/connections/connections_controller.py,sha256=Am-yoP8y_cqslLZOiWuMHJqBK0b_fmOUxn1Z9DkZrAA,30764
47
48
  ibm_watsonx_orchestrate/cli/commands/copilot/copilot_command.py,sha256=IxasApIyQYWRMKPXKa38ZPVkUvOc4chggSmSGjgQGXc,2345
48
- ibm_watsonx_orchestrate/cli/commands/copilot/copilot_controller.py,sha256=9n4tIf4W9FkuNIMhGQ-i0OpdH-jZF1pxjg8Kk9yKcus,19144
49
- ibm_watsonx_orchestrate/cli/commands/copilot/copilot_server_controller.py,sha256=AcBE97qNYsRN0ftY_E-AAjKFyVea4fHtU5eB2HsB42I,5619
50
- ibm_watsonx_orchestrate/cli/commands/environment/environment_command.py,sha256=SUyz2RJoh5dToXRkXRwkUMjT_3OmrxSJFb-osiF2Tw4,3828
51
- ibm_watsonx_orchestrate/cli/commands/environment/environment_controller.py,sha256=oHZ7LONtPg3-SSnU_rRZryLi8N2mplz5h-LGg4XjzD4,10261
49
+ ibm_watsonx_orchestrate/cli/commands/copilot/copilot_controller.py,sha256=SC2Tjq6r-tHIiyPBMajsxdMIY3BQpRWpkYGZS2XbJyU,18981
50
+ ibm_watsonx_orchestrate/cli/commands/copilot/copilot_server_controller.py,sha256=9MXS5uE3esKp3IYILVty7COFcr9iJ90axkAqPVaJ1NE,3874
51
+ ibm_watsonx_orchestrate/cli/commands/environment/environment_command.py,sha256=1CO0UfxSem0NafNGNCBXswC-P93MVYIA-YJewjKgdNc,4186
52
+ ibm_watsonx_orchestrate/cli/commands/environment/environment_controller.py,sha256=z3m4khZfHNpv1dRsDfRW0cteLvhAeDEbxh-fOZduSpQ,10479
52
53
  ibm_watsonx_orchestrate/cli/commands/environment/types.py,sha256=X6jEnyBdxakromA7FhQ5btZMj9kwGcwRSFz8vpD65jA,224
53
- ibm_watsonx_orchestrate/cli/commands/evaluations/evaluations_command.py,sha256=IkEEkpFB9kD6MDLeItoJbQzfmSWuEVOkZ42Ddjt9bKI,19750
54
- ibm_watsonx_orchestrate/cli/commands/evaluations/evaluations_controller.py,sha256=c4dw2ckiO689Zh9jXkrQe4GisJStEhAZoTBbdlOzRyE,11315
54
+ ibm_watsonx_orchestrate/cli/commands/evaluations/evaluations_command.py,sha256=0ET6tXMkeupT8K5hNGQBgLOhlV8YAshqH3bp9A8vgDk,21930
55
+ ibm_watsonx_orchestrate/cli/commands/evaluations/evaluations_controller.py,sha256=avA5Guyyhqw9x0IAp-I9vVyEaS3X5U77Ag4xBw1k8l0,11348
55
56
  ibm_watsonx_orchestrate/cli/commands/knowledge_bases/knowledge_bases_command.py,sha256=hOzRcGVoqq7dTc4bSregKxH-kYbrVqaFdhBLawqnRNo,2668
56
57
  ibm_watsonx_orchestrate/cli/commands/knowledge_bases/knowledge_bases_controller.py,sha256=d9RSBy2S2nn8vWrghovGb1owe7Zu8LywOm0nIdzlXiU,11567
57
58
  ibm_watsonx_orchestrate/cli/commands/login/login_command.py,sha256=xArMiojoozg7Exn6HTpbTcjDO2idZRA-y0WV-_Ic1Sk,651
58
- ibm_watsonx_orchestrate/cli/commands/models/model_provider_mapper.py,sha256=mbvBR5o9M7W6OpTZyd6TtSEOIXq07dPYz4hv5zDrsd0,8129
59
+ ibm_watsonx_orchestrate/cli/commands/models/model_provider_mapper.py,sha256=ldAMx0Vz5cf_ngADzdMrku7twmVmIT4EQ43YrPzgSKk,8855
59
60
  ibm_watsonx_orchestrate/cli/commands/models/models_command.py,sha256=PW-PIM5Nq0qdCopWjANGBWEuEoA3NLTFThYrN8ggGCI,6425
60
- ibm_watsonx_orchestrate/cli/commands/models/models_controller.py,sha256=eZSYQUg9TL_-8lgcPVpKIx7MtOE7K_NCvZW9Y9YsFA0,18466
61
- ibm_watsonx_orchestrate/cli/commands/server/server_command.py,sha256=cMy_GGYXbug5A6IGoddUzBUCmunySCI8BC-ebRL6p4A,46489
62
- ibm_watsonx_orchestrate/cli/commands/server/types.py,sha256=lOrPLzadXJ3pVnIVsQRb0keXckFBGMDD3Holjfge9GI,4412
61
+ ibm_watsonx_orchestrate/cli/commands/models/models_controller.py,sha256=wcy16LPZy3n1VLPqAusyfmw0ubpANDgTKvQSz9Ng36Y,18450
62
+ ibm_watsonx_orchestrate/cli/commands/partners/partners_command.py,sha256=YpTlKKinQw1QdM4yXYjSrMtoAcwc1b9GoO6Wv1NmgKc,385
63
+ ibm_watsonx_orchestrate/cli/commands/partners/partners_controller.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
64
+ ibm_watsonx_orchestrate/cli/commands/partners/offering/partners_offering_command.py,sha256=X6u5zGwKYY1Uc2szaVHCIyMlFJBzp8o8JgVZUxcZPd8,1727
65
+ ibm_watsonx_orchestrate/cli/commands/partners/offering/partners_offering_controller.py,sha256=4qIaMwUHcSsPDDqXHS0vuwktyFD18sQyFabbBhr8vjY,19229
66
+ 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=cMjaAXEPMN-OkenqIbckPisPV093rabOxkLKmNiyxTc,28956
68
+ ibm_watsonx_orchestrate/cli/commands/server/types.py,sha256=DGLopPbLFf5yH5-hzsFf5Uaw158QHwkTAcwydbUmZ3Q,4416
63
69
  ibm_watsonx_orchestrate/cli/commands/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
64
70
  ibm_watsonx_orchestrate/cli/commands/settings/settings_command.py,sha256=CzXRkd-97jXyS6LtaaNtMah-aZu0919dYl-mDwzGThc,344
65
71
  ibm_watsonx_orchestrate/cli/commands/settings/observability/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
66
72
  ibm_watsonx_orchestrate/cli/commands/settings/observability/observability_command.py,sha256=TAkpKwoqocsShSgEeR6LzHCzJx16VDQ6cYsbpljxeqI,372
67
73
  ibm_watsonx_orchestrate/cli/commands/settings/observability/langfuse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
68
74
  ibm_watsonx_orchestrate/cli/commands/settings/observability/langfuse/langfuse_command.py,sha256=Wa0L8E44EdxH9LdOvmnluLk_ApJVfTLauNOC1kV4W8k,6515
69
- ibm_watsonx_orchestrate/cli/commands/toolkit/toolkit_command.py,sha256=ABW_KAxTUbAqLOpZrZz0228oOHBghi2aQU0x3rVrmf4,5679
70
- ibm_watsonx_orchestrate/cli/commands/toolkit/toolkit_controller.py,sha256=3lLfu7xlSm2l9zENM4NLxmMy3Im08jQLQBpkuxjUGn0,13027
71
- ibm_watsonx_orchestrate/cli/commands/tools/tools_command.py,sha256=Cuo1ZvlfsymojqbadCqdwwS0HUjaWpe2XQrV70g61_s,3943
72
- ibm_watsonx_orchestrate/cli/commands/tools/tools_controller.py,sha256=_iXQx_Ycno4bpgI0HuJNsf2yYNP_8o6AOCUlBavBHEE,40720
75
+ ibm_watsonx_orchestrate/cli/commands/toolkit/toolkit_command.py,sha256=dgmfI3PA04By3W526BEOZp0jJE5eVoxEUMbPG0JxUlE,5653
76
+ ibm_watsonx_orchestrate/cli/commands/toolkit/toolkit_controller.py,sha256=lo9xahKQiPhm4xh97O_twkzLO0GhXDzAi1rZT0ybQpA,13027
77
+ ibm_watsonx_orchestrate/cli/commands/tools/tools_command.py,sha256=1RXndNL8Ztl6YEVl4rW6sg0m0hE9d0RhT2Oac45ui2M,3945
78
+ ibm_watsonx_orchestrate/cli/commands/tools/tools_controller.py,sha256=nq-cmGfwqscOwtaUlm1feI-eUp1kIDG96XcABX1a3QU,49492
73
79
  ibm_watsonx_orchestrate/cli/commands/tools/types.py,sha256=_md0GEa_cTH17NO_moWDY_LNdFvyEFQ1UVB9_FltYiA,173
74
80
  ibm_watsonx_orchestrate/cli/commands/voice_configurations/voice_configurations_command.py,sha256=q4KHWQ-LZbp31e2ytihX1OuyAPS4-nRinmc-eMXC0l0,1783
75
81
  ibm_watsonx_orchestrate/cli/commands/voice_configurations/voice_configurations_controller.py,sha256=JbAc_CY0woHY8u7qrnOcb9O2FgECzkzeMirxFhRoep8,5884
@@ -81,7 +87,7 @@ ibm_watsonx_orchestrate/client/client_errors.py,sha256=72MKCNZbKoo2QXyY0RicLhP3r
81
87
  ibm_watsonx_orchestrate/client/credentials.py,sha256=gDVeeQZDdbbjJiO1EI61yx2oRgTQctxA2ZesSDHI4DA,3786
82
88
  ibm_watsonx_orchestrate/client/local_service_instance.py,sha256=dt7vfLnjgt7mT8wSq8SJZndNTwsPzhb0XDhcnPUPFpU,3524
83
89
  ibm_watsonx_orchestrate/client/service_instance.py,sha256=20yPs5bfAGN7TKUwMHZgsV2p0vzHr57pZD_rjc-5X80,5861
84
- ibm_watsonx_orchestrate/client/utils.py,sha256=oKCS5jPQ6Hh5Hk7AFD1Tn7GrkkG4Za1GCKEoQ15vr8w,5950
90
+ ibm_watsonx_orchestrate/client/utils.py,sha256=DBeW4AHjrvkOfTDSsTtCbKVopd2F5XPqktRtIoz2ods,6612
85
91
  ibm_watsonx_orchestrate/client/agents/agent_client.py,sha256=ObAoh5g4zvB1mZiA6xotvs4b1FGE1r92kkb2C7juGn8,6890
86
92
  ibm_watsonx_orchestrate/client/agents/assistant_agent_client.py,sha256=1JQN0E4T_uz5V0LM-LD1ahNu2KCeFBjXAr8WCiP9mkE,1745
87
93
  ibm_watsonx_orchestrate/client/agents/external_agent_client.py,sha256=iQ44XBdC4rYfS-zFn4St1xC5y5gf5SNqKHzMNQcFDZc,1808
@@ -89,7 +95,7 @@ ibm_watsonx_orchestrate/client/analytics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5
89
95
  ibm_watsonx_orchestrate/client/analytics/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
90
96
  ibm_watsonx_orchestrate/client/analytics/llm/analytics_llm_client.py,sha256=0YS_BCpmf5oGFawpZkJ38cuz5ArhKsZIbSydWRd194s,1340
91
97
  ibm_watsonx_orchestrate/client/connections/__init__.py,sha256=J7TOyVg38h71AlaJjlFs5fOuAXTceHvELtOJ9oz4Mvg,207
92
- ibm_watsonx_orchestrate/client/connections/connections_client.py,sha256=0bM-8qAsoysMmaAkyeJLt9XK7JXEjp-v4ROJo-7l9-M,8866
98
+ ibm_watsonx_orchestrate/client/connections/connections_client.py,sha256=6XiXaX6rlsXDjkAyj4mnN1YXY3DFAwQtWtOKVs8s9qg,8970
93
99
  ibm_watsonx_orchestrate/client/connections/utils.py,sha256=f6HsiDI6cycOqfYN6P4uZ3SQds83xlh83zTUioZPeYk,2618
94
100
  ibm_watsonx_orchestrate/client/copilot/cpe/copilot_cpe_client.py,sha256=-grsFXdxY8Cy2DbsWa1Akc93d-TRLJJYCdMDkCfmG3g,2102
95
101
  ibm_watsonx_orchestrate/client/knowledge_bases/knowledge_base_client.py,sha256=XEsN65Pz3UAc8w_Pbqzhy6qfCyQqqNtT7NnubsA00Mo,2061
@@ -98,11 +104,11 @@ ibm_watsonx_orchestrate/client/model_policies/model_policies_client.py,sha256=Dd
98
104
  ibm_watsonx_orchestrate/client/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
99
105
  ibm_watsonx_orchestrate/client/models/models_client.py,sha256=ZvP3iPgUFw_SXp41kJuzWQDsgQOF5oqJURH7dFEnPz8,2164
100
106
  ibm_watsonx_orchestrate/client/toolkit/toolkit_client.py,sha256=TLFNS39EeBD_t4Y-rX9sGp4sWBDr--mE5qVtHq8Q2hk,3121
101
- ibm_watsonx_orchestrate/client/tools/tempus_client.py,sha256=24fKDZUOVHBW-Vj4mubnpnUmab5LgGn8u5hOVyJaozI,1804
102
- ibm_watsonx_orchestrate/client/tools/tool_client.py,sha256=d3i3alVwa0TCN72w9sWOrM20GCbNmnpTnqEOJVbBIFM,1994
107
+ ibm_watsonx_orchestrate/client/tools/tempus_client.py,sha256=iD7Hkzn_LdnFivAzGSVKsuuoQpNCFSg2z6qGmQXCDoM,1954
108
+ ibm_watsonx_orchestrate/client/tools/tool_client.py,sha256=kYwQp-ym9dYQDOFSTnXNyeh8wzl39LpBJqHSNT9EKT0,2113
103
109
  ibm_watsonx_orchestrate/client/voice_configurations/voice_configurations_client.py,sha256=M5xIPLiVNpP-zxQw8CTNT9AiBjeXXmJiNaE142e2A3E,2682
104
- ibm_watsonx_orchestrate/docker/compose-lite.yml,sha256=xtf0jQXF_cEyENHzrA11FOfOFVm3Mjc7hOS4JNZ4l2I,45891
105
- ibm_watsonx_orchestrate/docker/default.env,sha256=vMWE1HvDFLUMHLioh7LnHMkVyropSu9gf-FHfKsV3-U,6307
110
+ ibm_watsonx_orchestrate/docker/compose-lite.yml,sha256=niF_ir68D_YdjrZWGUOy8eNLV-K5PX_xVWhdZEC2Crk,48041
111
+ ibm_watsonx_orchestrate/docker/default.env,sha256=eR-j22xztFZV4pEpXFupbNTUXd4nv2z8B6rKbAUkR50,6372
106
112
  ibm_watsonx_orchestrate/docker/proxy-config-single.yaml,sha256=WEbK4ENFuTCYhzRu_QblWp1_GMARgZnx5vReQafkIG8,308
107
113
  ibm_watsonx_orchestrate/docker/start-up.sh,sha256=LTtwHp0AidVgjohis2LXGvZnkFQStOiUAxgGABOyeUI,1811
108
114
  ibm_watsonx_orchestrate/docker/sdk/ibm_watsonx_orchestrate-0.6.0-py3-none-any.whl,sha256=Hi3-owh5OM0Jz2ihX9nLoojnr7Ky1TV-GelyqLcewLE,2047417
@@ -110,24 +116,29 @@ ibm_watsonx_orchestrate/docker/sdk/ibm_watsonx_orchestrate-0.6.0.tar.gz,sha256=e
110
116
  ibm_watsonx_orchestrate/docker/tempus/common-config.yaml,sha256=Zo3F36F5DV4VO_vUg1RG-r4WhcukVh79J2fXhGl6j0A,22
111
117
  ibm_watsonx_orchestrate/flow_builder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
112
118
  ibm_watsonx_orchestrate/flow_builder/data_map.py,sha256=LinePFgb5mBnrvNmPkFe3rq5oYJZSjcgmaEGpE6dVwc,586
113
- ibm_watsonx_orchestrate/flow_builder/node.py,sha256=U7-cYYhe7Gj_j6U0dw1ufaPROvXmFo30ZI8s7eTXZlk,9940
114
- ibm_watsonx_orchestrate/flow_builder/types.py,sha256=BRjSuqt5LXEzBs1XPERiAP6XiVLGvQHEtE3tTuiJLks,69181
119
+ ibm_watsonx_orchestrate/flow_builder/node.py,sha256=Y5hzVkbWNWaYp6zSbLW4Qbg4r1deLAs-X3HEFoZ9vzk,10338
120
+ ibm_watsonx_orchestrate/flow_builder/types.py,sha256=3mpLKOVgQBwWBVJAfF7GQF2wPZKYwDniJCUnaJypYTA,70606
115
121
  ibm_watsonx_orchestrate/flow_builder/utils.py,sha256=8q1jr5i_TzoJpoQxmLiO0g5Uv03BLbTUaRfw8_0VWIY,11931
116
122
  ibm_watsonx_orchestrate/flow_builder/flows/__init__.py,sha256=iRYV0_eXgBBGhuNnvg-mUyPUyCIw5BiallPOp27bzYM,1083
117
123
  ibm_watsonx_orchestrate/flow_builder/flows/constants.py,sha256=-TGneZyjA4YiAtJJK7OmmjDHYQC4mw2e98MPAZqiB50,324
118
- ibm_watsonx_orchestrate/flow_builder/flows/decorators.py,sha256=lr4qSWq5PWqlGFf4fzUQZCVQDHBYflrYwZ24S89Aq80,2794
124
+ ibm_watsonx_orchestrate/flow_builder/flows/decorators.py,sha256=07yaaDXLrwmj0v9lhZli8UmnKVpIuF6x1t3JbPVj0F8,3247
119
125
  ibm_watsonx_orchestrate/flow_builder/flows/events.py,sha256=VyaBm0sADwr15LWfKbcBQS1M80NKqzYDj3UlW3OpOf4,2984
120
- ibm_watsonx_orchestrate/flow_builder/flows/flow.py,sha256=UmqNjmenPC5SnpZSgnW9edSm-fSp6Akoid7o9O_WXt4,64922
126
+ ibm_watsonx_orchestrate/flow_builder/flows/flow.py,sha256=wPCpDT-RFJZsiDYNPLteWQRpSQl86urEbCi6UurCqfg,67946
127
+ ibm_watsonx_orchestrate/langflow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
128
+ ibm_watsonx_orchestrate/langflow/langflow_utils.py,sha256=UIWN28WvaYNhV-Ph_x0HSqV7jbL8lQlaUBdYeELqXJo,5765
129
+ ibm_watsonx_orchestrate/langflow/lfx_deps.py,sha256=Bgbo8IQEX_TblGLmw1tnA0DP7Xm4SFRncPp4TGbqY1o,1396
121
130
  ibm_watsonx_orchestrate/run/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
122
131
  ibm_watsonx_orchestrate/run/connections.py,sha256=9twXkNeUx83fP_qYUbJRtumE-wzPPNN2v-IY_8hGndM,1820
123
132
  ibm_watsonx_orchestrate/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
133
+ ibm_watsonx_orchestrate/utils/docker_utils.py,sha256=yDaeMToD7PSptuzCguEN8zPDyvPlwDR3ORutffldbuM,11355
134
+ ibm_watsonx_orchestrate/utils/environment.py,sha256=MBNhZsGuhL7-9HL-0ln6RwgiqfXXZqvSCyHcIQypuc8,14549
124
135
  ibm_watsonx_orchestrate/utils/exceptions.py,sha256=MjpoGuk7lMziPT2Zo7X-jgGlm0M22mTZF4Y8EHb3KPM,631
125
- ibm_watsonx_orchestrate/utils/utils.py,sha256=U7z_2iASoFiZ2zM0a_2Mc2Y-P5oOT7hOwuurzC9Z3N8,721
136
+ ibm_watsonx_orchestrate/utils/utils.py,sha256=X7kV4VgLEA82IdD5QNY90gdk_BZ6WcxqLLe6X8Q6DQU,868
126
137
  ibm_watsonx_orchestrate/utils/logging/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
127
138
  ibm_watsonx_orchestrate/utils/logging/logger.py,sha256=FzeGnidXAjC7yHrvIaj4KZPeaBBSCniZFlwgr5yV3oA,1037
128
139
  ibm_watsonx_orchestrate/utils/logging/logging.yaml,sha256=9_TKfuFr1barnOKP0fZT5D6MhddiwsXVTFjtRbcOO5w,314
129
- ibm_watsonx_orchestrate-1.11.0b1.dist-info/METADATA,sha256=TogHbMod2ge18w7EChDjmcmtuQXiR9FCQnl-hqlPsFc,1363
130
- ibm_watsonx_orchestrate-1.11.0b1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
131
- ibm_watsonx_orchestrate-1.11.0b1.dist-info/entry_points.txt,sha256=SfIT02-Jen5e99OcLhzbcM9Bdyf8SGVOCtnSplgZdQI,69
132
- ibm_watsonx_orchestrate-1.11.0b1.dist-info/licenses/LICENSE,sha256=Shgxx7hTdCOkiVRmfGgp_1ISISrwQD7m2f0y8Hsapl4,1083
133
- ibm_watsonx_orchestrate-1.11.0b1.dist-info/RECORD,,
140
+ ibm_watsonx_orchestrate-1.12.0.dist-info/METADATA,sha256=DfbuUZ_rgHIgnCiDdyw2WoAecsiBOLuX2nUuLwvScfc,1361
141
+ ibm_watsonx_orchestrate-1.12.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
142
+ ibm_watsonx_orchestrate-1.12.0.dist-info/entry_points.txt,sha256=SfIT02-Jen5e99OcLhzbcM9Bdyf8SGVOCtnSplgZdQI,69
143
+ ibm_watsonx_orchestrate-1.12.0.dist-info/licenses/LICENSE,sha256=Shgxx7hTdCOkiVRmfGgp_1ISISrwQD7m2f0y8Hsapl4,1083
144
+ ibm_watsonx_orchestrate-1.12.0.dist-info/RECORD,,