ibm-watsonx-orchestrate 1.6.0__py3-none-any.whl → 1.6.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,7 +5,7 @@
5
5
 
6
6
  pkg_name = "ibm-watsonx-orchestrate"
7
7
 
8
- __version__ = "1.6.0"
8
+ __version__ = "1.6.1"
9
9
 
10
10
 
11
11
 
@@ -8,6 +8,7 @@ from ibm_watsonx_orchestrate.agent_builder.connections.types import (
8
8
  OAuth2TokenCredentials,
9
9
  KeyValueConnectionCredentials,
10
10
  ConnectionType,
11
+ ConnectionSecurityScheme,
11
12
  CREDENTIALS,
12
13
  CONNECTION_TYPE_CREDENTIAL_MAPPING
13
14
  )
@@ -26,6 +27,18 @@ connection_type_requirements_mapping = {
26
27
  KeyValueConnectionCredentials: None
27
28
  }
28
29
 
30
+ connection_type_security_schema_map = {
31
+ ConnectionType.API_KEY_AUTH: ConnectionSecurityScheme.API_KEY_AUTH,
32
+ ConnectionType.BASIC_AUTH: ConnectionSecurityScheme.BASIC_AUTH,
33
+ ConnectionType.BEARER_TOKEN: ConnectionSecurityScheme.BEARER_TOKEN,
34
+ ConnectionType.KEY_VALUE: ConnectionSecurityScheme.KEY_VALUE,
35
+ ConnectionType.OAUTH2_AUTH_CODE: ConnectionSecurityScheme.OAUTH2,
36
+ ConnectionType.OAUTH2_CLIENT_CREDS: ConnectionSecurityScheme.OAUTH2,
37
+ ConnectionType.OAUTH_ON_BEHALF_OF_FLOW: ConnectionSecurityScheme.OAUTH2,
38
+ # ConnectionType.OAUTH2_IMPLICIT: ConnectionSecurityScheme.OAUTH2,
39
+ # ConnectionType.OAUTH2_PASSWORD: ConnectionSecurityScheme.OAUTH2
40
+ }
41
+
29
42
  def _clean_env_vars(vars: dict[str:str], requirements: List[str], app_id: str) -> dict[str,str]:
30
43
  base_prefix = _PREFIX_TEMPLATE.format(app_id=app_id)
31
44
 
@@ -75,10 +88,10 @@ def _build_credentials_model(credentials_type: type[CREDENTIALS], vars: dict[str
75
88
  )
76
89
 
77
90
 
78
- def _validate_schema_type(requested_type: ConnectionType, expected_type: ConnectionType) -> bool:
91
+ def _validate_schema_type(requested_type: ConnectionSecurityScheme, expected_type: ConnectionSecurityScheme) -> bool:
79
92
  return expected_type == requested_type
80
93
 
81
- def _get_credentials_model(connection_type: ConnectionType, app_id: str) -> type[CREDENTIALS]:
94
+ def _get_credentials_model(connection_type: ConnectionSecurityScheme, app_id: str) -> type[CREDENTIALS]:
82
95
  base_prefix = _PREFIX_TEMPLATE.format(app_id=app_id)
83
96
  variables = {}
84
97
  for key, value in os.environ.items():
@@ -93,7 +106,7 @@ def _get_credentials_model(connection_type: ConnectionType, app_id: str) -> type
93
106
 
94
107
  return _build_credentials_model(credentials_type=credentials_type, vars=variables, base_prefix=base_prefix)
95
108
 
96
- def get_connection_type(app_id: str) -> ConnectionType:
109
+ def get_connection_type(app_id: str) -> ConnectionSecurityScheme:
97
110
  sanitized_app_id = sanatize_app_id(app_id=app_id)
98
111
  expected_schema_key = f"WXO_SECURITY_SCHEMA_{sanitized_app_id}"
99
112
  expected_schema = os.environ.get(expected_schema_key)
@@ -103,7 +116,7 @@ def get_connection_type(app_id: str) -> ConnectionType:
103
116
  logger.error(message)
104
117
  raise ValueError(message)
105
118
 
106
- auth_types = {e.value for e in ConnectionType}
119
+ auth_types = {e.value for e in ConnectionSecurityScheme}
107
120
  if expected_schema not in auth_types:
108
121
  message = f"The expected type '{expected_schema}' cannot be resolved into a valid connection auth type ({', '.join(list(auth_types))})"
109
122
  logger.error(message)
@@ -114,10 +127,11 @@ def get_connection_type(app_id: str) -> ConnectionType:
114
127
  def get_application_connection_credentials(type: ConnectionType, app_id: str) -> CREDENTIALS:
115
128
  sanitized_app_id = sanatize_app_id(app_id=app_id)
116
129
  expected_schema = get_connection_type(app_id=app_id)
130
+ requested_schema = connection_type_security_schema_map.get(type)
117
131
 
118
- if not _validate_schema_type(requested_type=type, expected_type=expected_schema):
119
- message = f"The requested type '{type.__name__}' does not match the type '{expected_schema}' for the connection '{app_id}'"
132
+ if not _validate_schema_type(requested_type=requested_schema, expected_type=expected_schema):
133
+ message = f"The requested type '{requested_schema}' does not match the type '{expected_schema}' for the connection '{app_id}'"
120
134
  logger.error(message)
121
135
  raise ValueError(message)
122
136
 
123
- return _get_credentials_model(connection_type=type, app_id=sanitized_app_id)
137
+ return _get_credentials_model(connection_type=requested_schema, app_id=sanitized_app_id)
@@ -244,15 +244,11 @@ CONNECTION_KIND_OAUTH_TYPE_MAPPING = {
244
244
  }
245
245
 
246
246
  CONNECTION_TYPE_CREDENTIAL_MAPPING = {
247
- ConnectionType.BASIC_AUTH: BasicAuthCredentials,
248
- ConnectionType.BEARER_TOKEN: BearerTokenAuthCredentials,
249
- ConnectionType.API_KEY_AUTH: APIKeyAuthCredentials,
250
- ConnectionType.OAUTH2_AUTH_CODE: OAuth2TokenCredentials,
251
- # ConnectionType.OAUTH2_IMPLICIT: OAuth2TokenCredentials,
252
- # ConnectionType.OAUTH2_PASSWORD: OAuth2TokenCredentials,
253
- ConnectionType.OAUTH2_CLIENT_CREDS: OAuth2TokenCredentials,
254
- ConnectionType.OAUTH_ON_BEHALF_OF_FLOW: OAuth2TokenCredentials,
255
- ConnectionType.KEY_VALUE: KeyValueConnectionCredentials,
247
+ ConnectionSecurityScheme.BASIC_AUTH: BasicAuthCredentials,
248
+ ConnectionSecurityScheme.BEARER_TOKEN: BearerTokenAuthCredentials,
249
+ ConnectionSecurityScheme.API_KEY_AUTH: APIKeyAuthCredentials,
250
+ ConnectionSecurityScheme.OAUTH2: OAuth2TokenCredentials,
251
+ ConnectionSecurityScheme.KEY_VALUE: KeyValueConnectionCredentials,
256
252
  }
257
253
 
258
254
  class IdentityProviderCredentials(BaseModel):
@@ -346,7 +346,7 @@ def add_connection(app_id: str) -> None:
346
346
  status_code = response.status_code
347
347
  try:
348
348
  if status_code == 409:
349
- response_text = f"Failed to create connection. A connection with the App ID '{app_id}' already exists. Please select a diffrent App ID or delete the existing resource."
349
+ response_text = f"Failed to create connection. A connection with the App ID '{app_id}' already exists. Please select a different App ID or delete the existing resource."
350
350
  else:
351
351
  resp = json.loads(response_text)
352
352
  response_text = resp.get('detail')
@@ -167,7 +167,7 @@ def activate(name: str, apikey: str=None, username: str=None, password: str=None
167
167
 
168
168
  def add(name: str, url: str, should_activate: bool=False, iam_url: str=None, type: EnvironmentAuthType=None, insecure: bool=None, verify: str=None) -> None:
169
169
  if name == PROTECTED_ENV_NAME:
170
- logger.error(f"The name '{PROTECTED_ENV_NAME}' is a reserved environment name. Please select a diffrent name or use `orchestrate env activate {PROTECTED_ENV_NAME}` to swap to '{PROTECTED_ENV_NAME}'")
170
+ logger.error(f"The name '{PROTECTED_ENV_NAME}' is a reserved environment name. Please select a different name or use `orchestrate env activate {PROTECTED_ENV_NAME}` to swap to '{PROTECTED_ENV_NAME}'")
171
171
  return
172
172
 
173
173
  cfg = Config()
@@ -102,6 +102,10 @@ def validate_app_ids(kind: ToolKind, **args) -> None:
102
102
  if app_id not in imported_connections:
103
103
  logger.warning(f"No connection found for provided app-id '{app_id}'. Please create the connection using `orchestrate connections add`")
104
104
  else:
105
+ # Validate that the connection is not key_value when the tool in openapi
106
+ if kind != ToolKind.openapi:
107
+ continue
108
+
105
109
  environments = _get_connection_environments()
106
110
 
107
111
  imported_connection = imported_connections.get(app_id)
@@ -110,13 +114,15 @@ def validate_app_ids(kind: ToolKind, **args) -> None:
110
114
  conn = imported_connection.get(conn_environment)
111
115
 
112
116
  if conn is None or conn.security_scheme is None:
113
- logger.error(f"Connection '{app_id}' is not configured in the '{conn_environment}' environment.")
117
+ message = f"Connection '{app_id}' is not configured in the '{conn_environment}' environment."
114
118
  if conn_environment == ConnectionEnvironment.DRAFT:
119
+ logger.error(message)
115
120
  sys.exit(1)
116
- logger.error("If you deploy this tool without setting the live configuration the tool will error during execution.")
121
+ else:
122
+ logger.warning(message + " If you deploy this tool without setting the live configuration the tool will error during execution.")
117
123
  continue
118
124
 
119
- if kind == ToolKind.openapi and conn.security_scheme == ConnectionSecurityScheme.KEY_VALUE:
125
+ if conn.security_scheme == ConnectionSecurityScheme.KEY_VALUE:
120
126
  logger.error(f"Key value application connections can not be bound to an openapi tool")
121
127
  exit(1)
122
128
 
@@ -231,10 +237,12 @@ def validate_python_connections(tool: BaseTool):
231
237
  conn = imported_connection.get(conn_environment)
232
238
  conn_identifier = conn.app_id if conn is not None else connection_id
233
239
  if conn is None or conn.security_scheme is None:
234
- logger.error(f"Connection '{conn_identifier}' is not configured in the '{conn_environment}' environment.")
240
+ message = f"Connection '{conn_identifier}' is not configured in the '{conn_environment}' environment."
235
241
  if conn_environment == ConnectionEnvironment.DRAFT:
242
+ logger.error(message)
236
243
  sys.exit(1)
237
- logger.error("If you deploy this tool without setting the live configuration the tool will error during execution.")
244
+ else:
245
+ logger.warning(message + " If you deploy this tool without setting the live configuration the tool will error during execution.")
238
246
  continue
239
247
 
240
248
  imported_connection_auth_type = get_connection_type(security_scheme=conn.security_scheme, auth_type=conn.auth_type)
@@ -120,7 +120,7 @@ services:
120
120
  TEMPUS_RUNTIME_ENDPOINT: http://wxo-tempus-runtime:9044
121
121
  CONNECTIONS_MANAGER_ENDPOINT: http://wxo-server-connection-manager:3001
122
122
  AGENT_OPS_API_KEY: ${AGENTOPS_API_KEY}
123
- AGENTS_OPS_RUNTIME_ENDPOINT: https://host.docker.internal:8765
123
+ AGENTS_OPS_RUNTIME_ENDPOINT: https://frontend-server:443
124
124
  IS_OBSERVABILITY_FEATURE_ENABLED: "true"
125
125
  ALLOW_INSECURE_TLS: "true"
126
126
  command: 'npm start'
@@ -53,13 +53,13 @@ EVENT_BROKER_TTL="-1"
53
53
  REGISTRY_URL=
54
54
 
55
55
 
56
- SERVER_TAG=27-06-2025
56
+ SERVER_TAG=02-07-2025
57
57
  SERVER_REGISTRY=
58
58
 
59
- WORKER_TAG=27-06-2025
59
+ WORKER_TAG=02-07-2025
60
60
  WORKER_REGISTRY=
61
61
 
62
- AI_GATEWAY_TAG=23-06-2025
62
+ AI_GATEWAY_TAG=01-07-2025
63
63
  AI_GATEWAY_REGISTRY=
64
64
 
65
65
  AGENT_GATEWAY_TAG=23-06-2025
@@ -84,17 +84,17 @@ TRM_REGISTRY=
84
84
  TR_TAG=26-06-2025
85
85
  TR_REGISTRY=
86
86
 
87
- BUILDER_TAG=26-06-2025-a
87
+ BUILDER_TAG=02-07-2025
88
88
  BUILDER_REGISTRY=
89
89
 
90
90
  FLOW_RUNTIME_TAG=23-06-2025
91
91
  FLOW_RUMTIME_REGISTRY=
92
92
 
93
93
 
94
- AGENT_ANALYTICS_TAG=27-06-2025-v2
94
+ AGENT_ANALYTICS_TAG=02-07-2025-v1
95
95
  AGENT_ANALYTICS_REGISTRY=
96
96
 
97
- JAEGER_PROXY_TAG=27-06-2025
97
+ JAEGER_PROXY_TAG=01-07-2025
98
98
  JAEGER_PROXY_REGISTRY=
99
99
 
100
100
  SOCKET_HANDLER_TAG=29-05-2025
@@ -166,7 +166,7 @@ def import_flow_support_tools():
166
166
 
167
167
  if not is_local_dev():
168
168
  # we can't import support tools into non-local environments yet
169
- return
169
+ return []
170
170
 
171
171
  client = instantiate_client(TempusClient)
172
172
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ibm-watsonx-orchestrate
3
- Version: 1.6.0
3
+ Version: 1.6.1
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.22.0
14
- Requires-Dist: ibm-watsonx-orchestrate-evaluation-framework==1.0.5
14
+ Requires-Dist: ibm-watsonx-orchestrate-evaluation-framework==1.0.6
15
15
  Requires-Dist: jsonref==1.1.0
16
16
  Requires-Dist: jsonschema<5.0.0,>=4.23.0
17
17
  Requires-Dist: langchain-community<1.0.0,>=0.3.12
@@ -1,4 +1,4 @@
1
- ibm_watsonx_orchestrate/__init__.py,sha256=KDUTHNK8vHdTV_eRGGNbFaTC8l7NoL3dvb80vaYk8fE,425
1
+ ibm_watsonx_orchestrate/__init__.py,sha256=hbjRBzFqvLz6hJIfodM9EqVSxYwCVIggMpODSAyKZ_4,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
@@ -9,8 +9,8 @@ ibm_watsonx_orchestrate/agent_builder/agents/webchat_customizations/__init__.py,
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=VG45ifpp6B00-ZAGW-dIEHFh18Fx3wbyfUiDDKS74u4,718
12
- ibm_watsonx_orchestrate/agent_builder/connections/connections.py,sha256=DImRGTXiky1KEVxM_5RmeLom74Lej9bBD8cXafkV6FY,4501
13
- ibm_watsonx_orchestrate/agent_builder/connections/types.py,sha256=m4AhHW4HgHqeQEonLaPxwGsnVzSaBSg2M94HZ8zbRsk,9469
12
+ ibm_watsonx_orchestrate/agent_builder/connections/connections.py,sha256=UiqTps0yRTSIFoQ0hS6GbpRMlk3PzZmzXEwHlZTTGO8,5359
13
+ ibm_watsonx_orchestrate/agent_builder/connections/types.py,sha256=Lu_LPHKIo_vuptNixU8Uu_j8d_YT85Fjy9rMNYxnXGA,9253
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=mRow0rf5EHeJCCsTrONeTq10jShs_yIBQjpgDY_mTrI,1641
16
16
  ibm_watsonx_orchestrate/agent_builder/knowledge_bases/types.py,sha256=ttre2pRs_I_KBWSht60zT3dJw8twQml3m92ZkiRAoxs,7994
@@ -42,9 +42,9 @@ ibm_watsonx_orchestrate/cli/commands/channels/webchat/channels_webchat_command.p
42
42
  ibm_watsonx_orchestrate/cli/commands/channels/webchat/channels_webchat_controller.py,sha256=0S1ch8SwkGRtAyy7nAZEjKl92hFkIE9TU71JJ82zdjU,8128
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
- ibm_watsonx_orchestrate/cli/commands/connections/connections_controller.py,sha256=h3iEA52Tv_9id0TBVbcm0McbiLppE4SbsdKtWT5XNyc,22177
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
- ibm_watsonx_orchestrate/cli/commands/environment/environment_controller.py,sha256=bHJ26iz9EF7vvJ2dWf5fGOaddGBFme9OsPmHyNNrtpI,10182
47
+ ibm_watsonx_orchestrate/cli/commands/environment/environment_controller.py,sha256=8f4yH-hmPJFo-wAHA61XjRh_gst7JIIiRBQDFj0dXHs,10183
48
48
  ibm_watsonx_orchestrate/cli/commands/environment/types.py,sha256=qKcgIUfTPJIomLor-utz4qi7YhBMpb1l2DiSvjVSgaA,175
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
@@ -65,7 +65,7 @@ ibm_watsonx_orchestrate/cli/commands/settings/observability/langfuse/langfuse_co
65
65
  ibm_watsonx_orchestrate/cli/commands/toolkit/toolkit_command.py,sha256=e8YKUr_8CodA5fgYjUKj-Dk856foQ5Iz3I9Jld5pU_o,4193
66
66
  ibm_watsonx_orchestrate/cli/commands/toolkit/toolkit_controller.py,sha256=fq48tWNbuYFjrHXyVDmJBT96tww5iMdE2iOYUjr-fUc,11563
67
67
  ibm_watsonx_orchestrate/cli/commands/tools/tools_command.py,sha256=Cuo1ZvlfsymojqbadCqdwwS0HUjaWpe2XQrV70g61_s,3943
68
- ibm_watsonx_orchestrate/cli/commands/tools/tools_controller.py,sha256=tgobereuRf6xIsP8Gh-4pWifvJ9zBdeAkMSmd4owE1M,39195
68
+ ibm_watsonx_orchestrate/cli/commands/tools/tools_controller.py,sha256=z8Q_t6ABrzJ2nnB7YYK7MCzDCWL9Jt2wfkfdDDJ-Pe4,39480
69
69
  ibm_watsonx_orchestrate/cli/commands/tools/types.py,sha256=_md0GEa_cTH17NO_moWDY_LNdFvyEFQ1UVB9_FltYiA,173
70
70
  ibm_watsonx_orchestrate/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
71
71
  ibm_watsonx_orchestrate/client/base_api_client.py,sha256=NklphjtCpSFroBocOp4OiklC0iIF0JzXJjtJhUd8gZ8,4752
@@ -93,8 +93,8 @@ ibm_watsonx_orchestrate/client/models/models_client.py,sha256=ZvP3iPgUFw_SXp41kJ
93
93
  ibm_watsonx_orchestrate/client/toolkit/toolkit_client.py,sha256=TLFNS39EeBD_t4Y-rX9sGp4sWBDr--mE5qVtHq8Q2hk,3121
94
94
  ibm_watsonx_orchestrate/client/tools/tempus_client.py,sha256=24fKDZUOVHBW-Vj4mubnpnUmab5LgGn8u5hOVyJaozI,1804
95
95
  ibm_watsonx_orchestrate/client/tools/tool_client.py,sha256=d3i3alVwa0TCN72w9sWOrM20GCbNmnpTnqEOJVbBIFM,1994
96
- ibm_watsonx_orchestrate/docker/compose-lite.yml,sha256=W6tXCk8dDUzNsUpl6lUqpofRVDk8tnKWGD0UgGqpbck,32862
97
- ibm_watsonx_orchestrate/docker/default.env,sha256=rKmPF66kV0aJzsrWOcdiO0DKRIlvTxQESeuIdSAnRl0,5331
96
+ ibm_watsonx_orchestrate/docker/compose-lite.yml,sha256=TvddzCD2nFAGbu-1Hf2AAhdTORoTsll2ssa1lJVsoZE,32856
97
+ ibm_watsonx_orchestrate/docker/default.env,sha256=5JnLinuQoN3HxaApodke2SO-rI_pDtC2WecpL0s7pek,5329
98
98
  ibm_watsonx_orchestrate/docker/proxy-config-single.yaml,sha256=WEbK4ENFuTCYhzRu_QblWp1_GMARgZnx5vReQafkIG8,308
99
99
  ibm_watsonx_orchestrate/docker/start-up.sh,sha256=LTtwHp0AidVgjohis2LXGvZnkFQStOiUAxgGABOyeUI,1811
100
100
  ibm_watsonx_orchestrate/docker/sdk/ibm_watsonx_orchestrate-0.6.0-py3-none-any.whl,sha256=Hi3-owh5OM0Jz2ihX9nLoojnr7Ky1TV-GelyqLcewLE,2047417
@@ -104,7 +104,7 @@ ibm_watsonx_orchestrate/flow_builder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeu
104
104
  ibm_watsonx_orchestrate/flow_builder/data_map.py,sha256=1brmWWFERDsNG2XGais-5-r58LKUUwBtqwdaLQIFRhE,503
105
105
  ibm_watsonx_orchestrate/flow_builder/node.py,sha256=tp_ssBOSDDi8q-ET2bP7xRPwNOLmLUgQ7v9zZZqn9SU,4090
106
106
  ibm_watsonx_orchestrate/flow_builder/types.py,sha256=KPASSlw55Dzp_8nhFdJUN0UI8_knMzLCK9epVcfP5NY,27689
107
- ibm_watsonx_orchestrate/flow_builder/utils.py,sha256=6v-5Do7_R_mCX0Td5RQO4X8DBWb_HM8HbwkUyGAQOHg,8200
107
+ ibm_watsonx_orchestrate/flow_builder/utils.py,sha256=gKIKtb6hOfImt4cll4LOGgDoEUHubcz-AFq1byCpmaM,8203
108
108
  ibm_watsonx_orchestrate/flow_builder/flows/__init__.py,sha256=UTwpiAlT9Wytn1kK-kgUaY6UYjLKsiaQK0ZdSbKLtM0,897
109
109
  ibm_watsonx_orchestrate/flow_builder/flows/constants.py,sha256=XXYtL5Y1OTjj3jKo2zoJiwb7FCUNu_M43fgU8w591TY,322
110
110
  ibm_watsonx_orchestrate/flow_builder/flows/decorators.py,sha256=k9-r9ly5ih5oHBqjEgrc2vfeVC4LOMKg3YVLacBDubM,2702
@@ -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.0.dist-info/METADATA,sha256=EWjQe6HDCv96kYppOUVNh6RZFSfBanxDq8bSebg90CM,1437
122
- ibm_watsonx_orchestrate-1.6.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
123
- ibm_watsonx_orchestrate-1.6.0.dist-info/entry_points.txt,sha256=SfIT02-Jen5e99OcLhzbcM9Bdyf8SGVOCtnSplgZdQI,69
124
- ibm_watsonx_orchestrate-1.6.0.dist-info/licenses/LICENSE,sha256=Shgxx7hTdCOkiVRmfGgp_1ISISrwQD7m2f0y8Hsapl4,1083
125
- ibm_watsonx_orchestrate-1.6.0.dist-info/RECORD,,
121
+ ibm_watsonx_orchestrate-1.6.1.dist-info/METADATA,sha256=Vmml1CWqIMwZpVL9a-sx5TL_8axQRUT0t-SiyyknD8Q,1437
122
+ ibm_watsonx_orchestrate-1.6.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
123
+ ibm_watsonx_orchestrate-1.6.1.dist-info/entry_points.txt,sha256=SfIT02-Jen5e99OcLhzbcM9Bdyf8SGVOCtnSplgZdQI,69
124
+ ibm_watsonx_orchestrate-1.6.1.dist-info/licenses/LICENSE,sha256=Shgxx7hTdCOkiVRmfGgp_1ISISrwQD7m2f0y8Hsapl4,1083
125
+ ibm_watsonx_orchestrate-1.6.1.dist-info/RECORD,,