ibm-watsonx-orchestrate 1.0.0__py3-none-any.whl → 1.0.1__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,24 +5,10 @@
5
5
 
6
6
  pkg_name = "ibm-watsonx-orchestrate"
7
7
 
8
- __version__ = "1.0.0"
8
+ __version__ = "1.0.1"
9
9
 
10
10
 
11
-
12
- try:
13
- from importlib.metadata import version
14
-
15
- ver = version(pkg_name)
16
-
17
- except (ModuleNotFoundError, AttributeError):
18
- from importlib_metadata import version as imp_lib_ver
19
-
20
- ver = imp_lib_ver(pkg_name)
21
-
22
- from ibm_watsonx_orchestrate.client.client import Client
23
11
  from ibm_watsonx_orchestrate.utils.logging.logger import setup_logging
24
12
 
25
- Client.version = ver
26
- __version__ = ver
27
13
  setup_logging()
28
14
 
@@ -31,6 +31,8 @@ from ibm_watsonx_orchestrate.client.connections import get_connections_client, g
31
31
  from ibm_watsonx_orchestrate.client.utils import instantiate_client
32
32
  from ibm_watsonx_orchestrate.utils.utils import sanatize_app_id
33
33
 
34
+ from ibm_watsonx_orchestrate import __version__
35
+
34
36
  logger = logging.getLogger(__name__)
35
37
 
36
38
  __supported_characters_pattern = re.compile("^(\\w|_)+$")
@@ -489,7 +491,7 @@ class ToolsController:
489
491
  cfg = Config()
490
492
  registry_type = cfg.read(PYTHON_REGISTRY_HEADER, PYTHON_REGISTRY_TYPE_OPT) or DEFAULT_CONFIG_FILE_CONTENT[PYTHON_REGISTRY_HEADER][PYTHON_REGISTRY_TYPE_OPT]
491
493
 
492
- version = importlib.import_module('ibm_watsonx_orchestrate').__version__
494
+ version = __version__
493
495
  if registry_type == RegistryType.LOCAL:
494
496
  requirements.append(f"/packages/ibm_watsonx_orchestrate-0.6.0-py3-none-any.whl\n")
495
497
  elif registry_type == RegistryType.PYPI:
@@ -33,7 +33,7 @@ DEFAULT_CONFIG_FILE = "config.yaml"
33
33
  DEFAULT_CONFIG_FILE_CONTENT = {
34
34
  CONTEXT_SECTION_HEADER: {CONTEXT_ACTIVE_ENV_OPT: None},
35
35
  PYTHON_REGISTRY_HEADER: {
36
- PYTHON_REGISTRY_TYPE_OPT: str(RegistryType.TESTPYPI),
36
+ PYTHON_REGISTRY_TYPE_OPT: str(RegistryType.PYPI),
37
37
  PYTHON_REGISTRY_TEST_PACKAGE_VERSION_OVERRIDE_OPT: None
38
38
  },
39
39
  ENVIRONMENTS_SECTION_HEADER: {
@@ -37,7 +37,7 @@ class Credentials:
37
37
  ) -> None:
38
38
  env_credentials = Credentials._get_values_from_env_vars()
39
39
  self.url = url
40
- self.iam_url = iam_url if iam_url is not None else "https://iam.platform.saas.ibm.com"
40
+ self.iam_url = iam_url
41
41
  self.api_key = api_key
42
42
  self.token = token
43
43
  self.local_global_token = None
@@ -1,7 +1,8 @@
1
1
  from ibm_watsonx_orchestrate.client.base_api_client import BaseAPIClient
2
2
  import json
3
3
  from typing_extensions import List
4
- from ibm_watsonx_orchestrate.client.base_api_client import ClientAPIException
4
+ from ibm_watsonx_orchestrate.client.utils import is_local_dev
5
+
5
6
 
6
7
 
7
8
  class KnowledgeBaseClient(BaseAPIClient):
@@ -9,37 +10,41 @@ class KnowledgeBaseClient(BaseAPIClient):
9
10
  Client to handle CRUD operations for Native Knowledge Base endpoint
10
11
  """
11
12
 
13
+ def __init__(self, *args, **kwargs):
14
+ super().__init__(*args, **kwargs)
15
+ self.base_endpoint = "/orchestrate/knowledge-bases" if is_local_dev(self.base_url) else "/knowledge-bases"
16
+
12
17
  def create(self, payload: dict) -> dict:
13
- return self._post_form_data("/api/v1/orchestrate/knowledge-bases/documents", data={ "knowledge_base" : json.dumps(payload) })
18
+ return self._post_form_data(f"{self.base_endpoint}/documents", data={ "knowledge_base" : json.dumps(payload) })
14
19
 
15
20
  def create_built_in(self, payload: dict, files: list) -> dict:
16
- return self._post_form_data("/api/v1/orchestrate/knowledge-bases/documents", data={ "knowledge_base" : json.dumps(payload) }, files=files)
21
+ return self._post_form_data(f"{self.base_endpoint}/documents", data={ "knowledge_base" : json.dumps(payload) }, files=files)
17
22
 
18
23
  def get(self) -> dict:
19
- return self._get("/api/v1/orchestrate/knowledge-bases")
24
+ return self._get(self.base_endpoint)
20
25
 
21
26
  def get_by_name(self, name: str) -> List[dict]:
22
27
  kbs = self.get_by_names([name])
23
28
  return None if len(kbs) == 0 else kbs[0]
24
29
 
25
30
  def get_by_id(self, knowledge_base_id: str) -> dict:
26
- return self._get(f"/api/v1/orchestrate/knowledge-bases/{knowledge_base_id}")
31
+ return self._get(f"{self.base_endpoint}/{knowledge_base_id}")
27
32
 
28
33
  def get_by_names(self, name: List[str]) -> List[dict]:
29
34
  formatted_names = [f"names={x}" for x in name]
30
- return self._get(f"/api/v1/orchestrate/knowledge-bases?{'&'.join(formatted_names)}")
35
+ return self._get(f"{self.base_endpoint}?{'&'.join(formatted_names)}")
31
36
 
32
37
  def status(self, knowledge_base_id: str) -> dict:
33
- return self._get(f"/api/v1/orchestrate/knowledge-bases/{knowledge_base_id}/status")
38
+ return self._get(f"{self.base_endpoint}/{knowledge_base_id}/status")
34
39
 
35
40
  def update(self, knowledge_base_id: str, payload: dict) -> dict:
36
- return self._patch_form_data(f"/api/v1/orchestrate/knowledge-bases/{knowledge_base_id}/documents", data={ "knowledge_base" : json.dumps(payload) })
41
+ return self._patch_form_data(f"{self.base_endpoint}/{knowledge_base_id}/documents", data={ "knowledge_base" : json.dumps(payload) })
37
42
 
38
43
  def update_with_documents(self, knowledge_base_id: str, payload: dict, files: list) -> dict:
39
- return self._patch_form_data(f"/api/v1/orchestrate/knowledge-bases/{knowledge_base_id}/documents", data={ "knowledge_base" : json.dumps(payload) }, files=files)
44
+ return self._patch_form_data(f"{self.base_endpoint}/{knowledge_base_id}/documents", data={ "knowledge_base" : json.dumps(payload) }, files=files)
40
45
 
41
46
  def delete(self, knowledge_base_id: str,) -> dict:
42
- return self._delete(f"/api/v1/orchestrate/knowledge-bases/{knowledge_base_id}")
47
+ return self._delete(f"{self.base_endpoint}/{knowledge_base_id}")
43
48
 
44
49
 
45
50
 
@@ -51,7 +51,8 @@ class ServiceInstance(BaseServiceInstance):
51
51
  try:
52
52
  match auth_type:
53
53
  case EnvironmentAuthType.MCSP:
54
- authenticator = MCSPAuthenticator(apikey=self._credentials.api_key, url=self._credentials.iam_url)
54
+ url = self._credentials.iam_url if self._credentials.iam_url is not None else "https://iam.platform.saas.ibm.com"
55
+ authenticator = MCSPAuthenticator(apikey=self._credentials.api_key, url=url)
55
56
  case EnvironmentAuthType.IBM_CLOUD_IAM:
56
57
  authenticator = IAMAuthenticator(apikey=self._credentials.api_key, url=self._credentials.iam_url)
57
58
  case _:
@@ -3,7 +3,7 @@ services:
3
3
  # Orchestrate Lite dependencies
4
4
  ########################
5
5
  wxo-server-redis:
6
- image: us.icr.io/watson-orchestrate-private/redis:latest
6
+ image: ${OPENSOURCE_REGISTRY_PROXY:-docker.io}/redis:7.2
7
7
  platform: linux/amd64
8
8
  restart: unless-stopped
9
9
  ports:
@@ -103,7 +103,7 @@ services:
103
103
  retries: 5
104
104
 
105
105
  wxo-server-minio:
106
- image: us.icr.io/watson-orchestrate-private/minio/minio:latest
106
+ image: ${OPENSOURCE_REGISTRY_PROXY:-docker.io}/minio/minio:latest
107
107
  platform: linux/amd64
108
108
  ports:
109
109
  - '9000:9000'
@@ -121,7 +121,7 @@ services:
121
121
  - wxo-server-minio-data:/data
122
122
 
123
123
  wxo-server-minio-setup:
124
- image: us.icr.io/watson-orchestrate-private/minio/mc:latest
124
+ image: ${OPENSOURCE_REGISTRY_PROXY:-docker.io}/minio/mc:latest
125
125
  platform: linux/amd64
126
126
  depends_on:
127
127
  wxo-server-minio:
@@ -135,7 +135,7 @@ services:
135
135
  "
136
136
 
137
137
  wxo-milvus-standalone:
138
- image: milvusdb/milvus:v2.5.6
138
+ image: ${OPENSOURCE_REGISTRY_PROXY:-docker.io}/milvusdb/milvus:v2.5.6
139
139
  command: ["milvus", "run", "standalone"]
140
140
  security_opt:
141
141
  - seccomp:unconfined
@@ -211,7 +211,7 @@ services:
211
211
  command: >
212
212
  bash -c "mkdir -p /tmp/certs &&
213
213
  openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout /tmp/certs/key.pem -out /tmp/certs/cert.pem -subj '/CN=localhost' &&
214
- uvicorn --host 0.0.0.0 --port 4322 --ssl-keyfile /tmp/certs/key.pem --ssl-certfile /tmp/certs/cert.pem --log-config /app/config/logs/log_conf.yaml --log-level debug --workers 5 wo_archer.api.main:app &
214
+ uvicorn --host 0.0.0.0 --port 4322 --ssl-keyfile /tmp/certs/key.pem --ssl-certfile /tmp/certs/cert.pem --log-config /app/config/logs/log_conf.yaml --workers 2 --log-level debug wo_archer.api.main:app &
215
215
  (for i in {1..20}; do curl --silent --fail -k https://127.0.0.1:4322/health/alive && echo '[INFO] HTTPS Service ready' && break || echo '[INFO] Waiting for HTTPS service...' && sleep 30; done; curl --silent --fail -k https://127.0.0.1:4322/health/alive || (echo '[ERROR] HTTPS service failed to start' && exit 1) ) &&
216
216
  uvicorn --host 0.0.0.0 --port 4321 --log-config /app/config/logs/log_conf.yaml --log-level debug --workers 5 wo_archer.api.main:app &
217
217
  (for i in {1..20}; do curl --silent --fail -k http://127.0.0.1:4321/health/alive && echo '[INFO] HTTP Service ready' && break || echo '[INFO] Waiting for HTTP service...' && sleep 30; done; curl --silent --fail -k http://127.0.0.1:4321/health/alive || (echo '[ERROR] HTTP service failed to start' && exit 1) ) &&
@@ -435,7 +435,7 @@ services:
435
435
  # LANGFUSE dependencies
436
436
  ########################
437
437
  langfuse-worker:
438
- image: us.icr.io/watson-orchestrate-private/langfuse-worker:3
438
+ image: ${OPENSOURCE_REGISTRY_PROXY:-docker.io}/langfuse/langfuse-worker:3
439
439
  restart: unless-stopped
440
440
  profiles: [langfuse]
441
441
  depends_on: &langfuse-depends-on
@@ -487,7 +487,7 @@ services:
487
487
  REDIS_CONNECTION_STRING: redis://wxo-server-redis:6379/1
488
488
 
489
489
  langfuse-web:
490
- image: us.icr.io/watson-orchestrate-private/langfuse:3
490
+ image: ${OPENSOURCE_REGISTRY_PROXY:-docker.io}/langfuse/langfuse:3
491
491
  restart: unless-stopped
492
492
  depends_on: *langfuse-depends-on
493
493
  profiles: [langfuse]
@@ -500,7 +500,7 @@ services:
500
500
  NEXTAUTH_SECRET: mysecret
501
501
 
502
502
  langfuse-clickhouse:
503
- image: us.icr.io/watson-orchestrate-private/clickhouse-server:latest
503
+ image: ${OPENSOURCE_REGISTRY_PROXY:-docker.io}/clickhouse/clickhouse-server:latest
504
504
  restart: unless-stopped
505
505
  user: "101:101"
506
506
  profiles: [langfuse]
@@ -64,7 +64,7 @@ UI_REGISTRY=watson-orchestrate-private
64
64
  UITAG=29-04-2025
65
65
 
66
66
  CM_REGISTRY=watson-orchestrate-private
67
- CM_TAG=29-04-2025v1
67
+ CM_TAG=30-04-2025
68
68
 
69
69
  TRM_TAG=30-04-2025
70
70
  TRM_REGISTRY=watson-orchestrate-private
@@ -103,10 +103,10 @@ WXO_USER=wxo.archer@ibm.com
103
103
  WXO_PASS=watsonx
104
104
  STREAM_TIMEOUT=120000
105
105
  DEPLOYMENT_PLATFORM=lite-laptop
106
- WXO_BASE_URL=http://host.docker.internal:4321
106
+ WXO_BASE_URL=http://wxo-server:4321
107
107
  RUNTIME_MANAGER_API_KEY="testapikey"
108
- TOOLS_RUNTIME_MANAGER_BASE_URL="http://host.docker.internal:8080"
109
- CONNECTION_SERVICE_BASE_URL="http://host.docker.internal:3001"
108
+ TOOLS_RUNTIME_MANAGER_BASE_URL="http://tools-runtime-manager:8080"
109
+ CONNECTION_SERVICE_BASE_URL="http://wxo-server-connection-manager:3001"
110
110
 
111
111
  #To Prevent warnings
112
112
  VECTOR_STORE_PROVIDER=
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ibm-watsonx-orchestrate
3
- Version: 1.0.0
3
+ Version: 1.0.1
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=BlQMhv5PHK2l1FOEcvljrRuScW9GICW4FnHuWld2p_A,737
1
+ ibm_watsonx_orchestrate/__init__.py,sha256=SrlQDGttogEX9VFQltBr-eZPkFA_rUB44zQv2zVKDN4,424
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=v4G0MGh11eOCkUJP_4AMOcFgzW14oE41G3iFp7G2vvw,376
4
4
  ibm_watsonx_orchestrate/agent_builder/agents/agent.py,sha256=PcBg2dRi-IOzvl24u8fa3B0jLaM5hzgkpTS8k56L9Ag,919
@@ -19,7 +19,7 @@ ibm_watsonx_orchestrate/agent_builder/tools/types.py,sha256=lA_BxWR_vQ0KTGYh3V0L
19
19
  ibm_watsonx_orchestrate/agent_builder/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
20
  ibm_watsonx_orchestrate/agent_builder/utils/pydantic_utils.py,sha256=QEanM6FpkmntvS02whdhWx1d4v6zT_1l9ipEbfTgHs8,7623
21
21
  ibm_watsonx_orchestrate/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
- ibm_watsonx_orchestrate/cli/config.py,sha256=X6VbsGagQO4Fo1D9xROjwAdaHyV_wnXDYRmRrWW73TI,8022
22
+ ibm_watsonx_orchestrate/cli/config.py,sha256=v-Yse4QnjEFrs_sT90tjL86BRsmp1LDn2YJbyikGWQY,8018
23
23
  ibm_watsonx_orchestrate/cli/main.py,sha256=AZtBEb1Dm_gh1uo98AnMo-D_LKhsLIUrRx-xJFnprog,2177
24
24
  ibm_watsonx_orchestrate/cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
25
  ibm_watsonx_orchestrate/cli/commands/agents/agents_command.py,sha256=GVHM1wv28zGzOcc__3BXHt0Y5NXZuOr7PH8exwVqn-o,6640
@@ -47,16 +47,16 @@ ibm_watsonx_orchestrate/cli/commands/settings/observability/observability_comman
47
47
  ibm_watsonx_orchestrate/cli/commands/settings/observability/langfuse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
48
48
  ibm_watsonx_orchestrate/cli/commands/settings/observability/langfuse/langfuse_command.py,sha256=Wa0L8E44EdxH9LdOvmnluLk_ApJVfTLauNOC1kV4W8k,6515
49
49
  ibm_watsonx_orchestrate/cli/commands/tools/tools_command.py,sha256=2GK5AKwEYXsOZaASG15J8yNIPakI0NYkSXBTkeuHj6s,3343
50
- ibm_watsonx_orchestrate/cli/commands/tools/tools_controller.py,sha256=qPY4CL0vUrM4rBryAAdE9DeUaXBSECWIQoNnuOgMVS0,26469
50
+ ibm_watsonx_orchestrate/cli/commands/tools/tools_controller.py,sha256=vjOncBJ3K7hGaEo-SjzURm_DZ_mToTithwuuzkjn82M,26468
51
51
  ibm_watsonx_orchestrate/cli/commands/tools/types.py,sha256=_md0GEa_cTH17NO_moWDY_LNdFvyEFQ1UVB9_FltYiA,173
52
52
  ibm_watsonx_orchestrate/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
53
53
  ibm_watsonx_orchestrate/client/base_api_client.py,sha256=0ozLUudIrQH0RTdKaX0Y5c35FRNZPTemaAp71AsoMsQ,4410
54
54
  ibm_watsonx_orchestrate/client/base_service_instance.py,sha256=sM_r7bln9BpgEOhaJMdFI9-je3T7GLQxLduk-in0oRY,235
55
55
  ibm_watsonx_orchestrate/client/client.py,sha256=pgYeXHe4_Makrw0gTyM343DQdrZZB8cjitFHKcbdzuc,2432
56
56
  ibm_watsonx_orchestrate/client/client_errors.py,sha256=72MKCNZbKoo2QXyY0RicLhP3r0ALRjgOEbHOHNSyOYI,11712
57
- ibm_watsonx_orchestrate/client/credentials.py,sha256=TAgCIum3YRR1Hsow4TRojEXgFA6QBCaIAG2boshEBUw,3702
57
+ ibm_watsonx_orchestrate/client/credentials.py,sha256=ksqfecJkx-XSOkpHksomdBVAKqEpuVGSk65qpfemYFQ,3638
58
58
  ibm_watsonx_orchestrate/client/local_service_instance.py,sha256=ilqbcd0R6r0w6H5tMlQf0YRFk8IjbJd9sXwT41iQ5iQ,3440
59
- ibm_watsonx_orchestrate/client/service_instance.py,sha256=FlE09lKi-wx6--Pg73qvJBnrHuNI92JPqIHziaCgkUA,2857
59
+ ibm_watsonx_orchestrate/client/service_instance.py,sha256=fkxDhp8jALw2W_1BOMDYlCGgR7pxdnXms5ejre6CkMY,2969
60
60
  ibm_watsonx_orchestrate/client/utils.py,sha256=qvVDrtlzJh-7ADG4SY0Xg38_AcjDRGuG6VgyWdF4NBg,3570
61
61
  ibm_watsonx_orchestrate/client/agents/agent_client.py,sha256=2Pt4uIC35uS9EwsjtzF7RIQxx020_gW4_nPNuoe9A-E,1713
62
62
  ibm_watsonx_orchestrate/client/agents/assistant_agent_client.py,sha256=XRiyfYx8mB4OCaQTvvY3Q_taDh7KzEBGgAQnKCPyOvA,1467
@@ -67,10 +67,10 @@ ibm_watsonx_orchestrate/client/analytics/llm/analytics_llm_client.py,sha256=OSw9
67
67
  ibm_watsonx_orchestrate/client/connections/__init__.py,sha256=u821r2ZiYXLYNTknxdBYgc7glwTXsrQBd3z1I81f3ro,184
68
68
  ibm_watsonx_orchestrate/client/connections/connections_client.py,sha256=aenYRfywM0lPlJWipFuy-Dnp2ljmpeP11oaWvPd69sA,7053
69
69
  ibm_watsonx_orchestrate/client/connections/utils.py,sha256=XqgYoiehiqIZ-LnduIAiJ9DIIF7IR7QvkKTc9784Ii0,1326
70
- ibm_watsonx_orchestrate/client/knowledge_bases/knowledge_base_client.py,sha256=0FCpb5dF3WVC1w_7loKXcBswSI-ZyJ52f9UA5Mo9hQw,2134
70
+ ibm_watsonx_orchestrate/client/knowledge_bases/knowledge_base_client.py,sha256=U-pG_H0I8992f0V13Li_e1dksKp54MrYX3X9bvr-09w,2181
71
71
  ibm_watsonx_orchestrate/client/tools/tool_client.py,sha256=pEKOBH488YbLVc71ucucX0rr8YoulvDCxejuyWd0K8s,1588
72
- ibm_watsonx_orchestrate/docker/compose-lite.yml,sha256=7i-5QsbNNeerM2E4XTuqWtO_tWjhMWqMRUQkIBh3N5Y,24491
73
- ibm_watsonx_orchestrate/docker/default.env,sha256=xi_1Kj1TNCUMiL4sNWQt4UMhgXnwsUDellPRKUxms_0,4641
72
+ ibm_watsonx_orchestrate/docker/compose-lite.yml,sha256=T_d2xi20fNX8fwByhkAErXf21BLIWz-F2alsvvWhD9c,24575
73
+ ibm_watsonx_orchestrate/docker/default.env,sha256=0dGbBljxmmxOxEGNP1vgVlQ9dxv9Ii6h_3p0QviEtnY,4639
74
74
  ibm_watsonx_orchestrate/docker/start-up.sh,sha256=LTtwHp0AidVgjohis2LXGvZnkFQStOiUAxgGABOyeUI,1811
75
75
  ibm_watsonx_orchestrate/docker/sdk/ibm_watsonx_orchestrate-0.6.0-py3-none-any.whl,sha256=Hi3-owh5OM0Jz2ihX9nLoojnr7Ky1TV-GelyqLcewLE,2047417
76
76
  ibm_watsonx_orchestrate/docker/sdk/ibm_watsonx_orchestrate-0.6.0.tar.gz,sha256=e5T-q7XPAtiCyQljwZp6kk3Q_4Tg6y5sijHTkscmqqQ,2025466
@@ -82,8 +82,8 @@ ibm_watsonx_orchestrate/utils/utils.py,sha256=3JWk1J9A04yVZeetE3TQH82I53Sn20KvU_
82
82
  ibm_watsonx_orchestrate/utils/logging/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
83
83
  ibm_watsonx_orchestrate/utils/logging/logger.py,sha256=FzeGnidXAjC7yHrvIaj4KZPeaBBSCniZFlwgr5yV3oA,1037
84
84
  ibm_watsonx_orchestrate/utils/logging/logging.yaml,sha256=9_TKfuFr1barnOKP0fZT5D6MhddiwsXVTFjtRbcOO5w,314
85
- ibm_watsonx_orchestrate-1.0.0.dist-info/METADATA,sha256=P9Sf-k0Yh2T6kGL-8wwlsr19cIU2beUz0hvsocaa014,1251
86
- ibm_watsonx_orchestrate-1.0.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
87
- ibm_watsonx_orchestrate-1.0.0.dist-info/entry_points.txt,sha256=SfIT02-Jen5e99OcLhzbcM9Bdyf8SGVOCtnSplgZdQI,69
88
- ibm_watsonx_orchestrate-1.0.0.dist-info/licenses/LICENSE,sha256=Shgxx7hTdCOkiVRmfGgp_1ISISrwQD7m2f0y8Hsapl4,1083
89
- ibm_watsonx_orchestrate-1.0.0.dist-info/RECORD,,
85
+ ibm_watsonx_orchestrate-1.0.1.dist-info/METADATA,sha256=HAjcx8665Xir9Y1n3SkqrK1anhiDNs3bMvIItdHd1dY,1251
86
+ ibm_watsonx_orchestrate-1.0.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
87
+ ibm_watsonx_orchestrate-1.0.1.dist-info/entry_points.txt,sha256=SfIT02-Jen5e99OcLhzbcM9Bdyf8SGVOCtnSplgZdQI,69
88
+ ibm_watsonx_orchestrate-1.0.1.dist-info/licenses/LICENSE,sha256=Shgxx7hTdCOkiVRmfGgp_1ISISrwQD7m2f0y8Hsapl4,1083
89
+ ibm_watsonx_orchestrate-1.0.1.dist-info/RECORD,,