ibm-watsonx-orchestrate 1.10.0b1__py3-none-any.whl → 1.10.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ibm_watsonx_orchestrate/__init__.py +1 -3
- ibm_watsonx_orchestrate/agent_builder/connections/connections.py +5 -2
- ibm_watsonx_orchestrate/docker/default.env +6 -6
- {ibm_watsonx_orchestrate-1.10.0b1.dist-info → ibm_watsonx_orchestrate-1.10.2.dist-info}/METADATA +1 -1
- {ibm_watsonx_orchestrate-1.10.0b1.dist-info → ibm_watsonx_orchestrate-1.10.2.dist-info}/RECORD +8 -8
- {ibm_watsonx_orchestrate-1.10.0b1.dist-info → ibm_watsonx_orchestrate-1.10.2.dist-info}/WHEEL +0 -0
- {ibm_watsonx_orchestrate-1.10.0b1.dist-info → ibm_watsonx_orchestrate-1.10.2.dist-info}/entry_points.txt +0 -0
- {ibm_watsonx_orchestrate-1.10.0b1.dist-info → ibm_watsonx_orchestrate-1.10.2.dist-info}/licenses/LICENSE +0 -0
@@ -1,5 +1,6 @@
|
|
1
1
|
import os
|
2
2
|
import logging
|
3
|
+
from copy import deepcopy
|
3
4
|
from typing import List
|
4
5
|
from ibm_watsonx_orchestrate.agent_builder.connections.types import (
|
5
6
|
BasicAuthCredentials,
|
@@ -67,7 +68,8 @@ def _clean_env_vars(vars: dict[str:str], requirements: List[str], app_id: str) -
|
|
67
68
|
return required_env_vars
|
68
69
|
|
69
70
|
def _build_credentials_model(credentials_type: type[CREDENTIALS], vars: dict[str,str], base_prefix: str) -> type[CREDENTIALS]:
|
70
|
-
|
71
|
+
requirements_lut = deepcopy(connection_type_requirements_mapping)
|
72
|
+
requirements = requirements_lut[credentials_type]
|
71
73
|
|
72
74
|
if requirements:
|
73
75
|
requirements.append("url")
|
@@ -101,7 +103,8 @@ def _get_credentials_model(connection_type: ConnectionSecurityScheme, app_id: st
|
|
101
103
|
|
102
104
|
credentials_type = CONNECTION_TYPE_CREDENTIAL_MAPPING[connection_type]
|
103
105
|
|
104
|
-
|
106
|
+
requirements_lut = deepcopy(connection_type_requirements_mapping)
|
107
|
+
requirements = requirements_lut.get(credentials_type)
|
105
108
|
if requirements:
|
106
109
|
variables = _clean_env_vars(vars=variables, requirements=requirements, app_id=app_id)
|
107
110
|
|
@@ -58,10 +58,10 @@ REGISTRY_URL=
|
|
58
58
|
|
59
59
|
|
60
60
|
|
61
|
-
SERVER_TAG=
|
61
|
+
SERVER_TAG=29-08-2025-59ef405
|
62
62
|
SERVER_REGISTRY=
|
63
63
|
|
64
|
-
WORKER_TAG=
|
64
|
+
WORKER_TAG=29-08-2025-cf32b2d
|
65
65
|
WORKER_REGISTRY=
|
66
66
|
|
67
67
|
AI_GATEWAY_TAG=20-08-2025-9ed6d40
|
@@ -78,7 +78,7 @@ AMDDBTAG=29-07-2025-9f3661b
|
|
78
78
|
ARM64DBTAG=29-07-2025-9f3661b
|
79
79
|
|
80
80
|
UI_REGISTRY=
|
81
|
-
UITAG=
|
81
|
+
UITAG=29-08-2025
|
82
82
|
|
83
83
|
CM_REGISTRY=
|
84
84
|
CM_TAG=24-07-2025
|
@@ -86,13 +86,13 @@ CM_TAG=24-07-2025
|
|
86
86
|
TRM_TAG=19-08-2025-fe105eb0b950ff304f712a1a5b9fa3cba92d09da
|
87
87
|
TRM_REGISTRY=
|
88
88
|
|
89
|
-
TR_TAG=
|
89
|
+
TR_TAG=25-08-2025-58ae475
|
90
90
|
TR_REGISTRY=
|
91
91
|
|
92
|
-
BUILDER_TAG=
|
92
|
+
BUILDER_TAG=27-08-2025-7432aca
|
93
93
|
BUILDER_REGISTRY=
|
94
94
|
|
95
|
-
FLOW_RUNTIME_TAG=18-08-2025-
|
95
|
+
FLOW_RUNTIME_TAG=18-08-2025-v3
|
96
96
|
FLOW_RUMTIME_REGISTRY=
|
97
97
|
|
98
98
|
|
{ibm_watsonx_orchestrate-1.10.0b1.dist-info → ibm_watsonx_orchestrate-1.10.2.dist-info}/RECORD
RENAMED
@@ -1,4 +1,4 @@
|
|
1
|
-
ibm_watsonx_orchestrate/__init__.py,sha256=
|
1
|
+
ibm_watsonx_orchestrate/__init__.py,sha256=Yw6V_GiiZzezrqa6CMFIeF1aBRVLiIyWocIwdhygDf8,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=W0uya81fQPrYZFaO_tlsxBL56Bfpw0xrqdxQJhAZ6XI,983
|
@@ -9,7 +9,7 @@ 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=B9FwmBbdJxFj3KmJ87Fc78TbzxOr1MIVhaHPJePOGSQ,716
|
12
|
-
ibm_watsonx_orchestrate/agent_builder/connections/connections.py,sha256=
|
12
|
+
ibm_watsonx_orchestrate/agent_builder/connections/connections.py,sha256=ozRTZ1Y10YbipE6oegI8QIP31fWqUaBUFoHAo-WTY3g,5547
|
13
13
|
ibm_watsonx_orchestrate/agent_builder/connections/types.py,sha256=OGuFEQhc1dj8GVjHuT_V3coCC_YtBGqQ68qGy96m6EQ,9587
|
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
|
@@ -102,7 +102,7 @@ ibm_watsonx_orchestrate/client/tools/tempus_client.py,sha256=24fKDZUOVHBW-Vj4mub
|
|
102
102
|
ibm_watsonx_orchestrate/client/tools/tool_client.py,sha256=d3i3alVwa0TCN72w9sWOrM20GCbNmnpTnqEOJVbBIFM,1994
|
103
103
|
ibm_watsonx_orchestrate/client/voice_configurations/voice_configurations_client.py,sha256=M5xIPLiVNpP-zxQw8CTNT9AiBjeXXmJiNaE142e2A3E,2682
|
104
104
|
ibm_watsonx_orchestrate/docker/compose-lite.yml,sha256=wylLRS6iGEfMitfoXuT2tVuSiWej0HLAE5k-6Onl-kI,45671
|
105
|
-
ibm_watsonx_orchestrate/docker/default.env,sha256=
|
105
|
+
ibm_watsonx_orchestrate/docker/default.env,sha256=3YsCo8vWsI0jte2d86OOWegFB37WGT_xWnRoZjvabfQ,6235
|
106
106
|
ibm_watsonx_orchestrate/docker/proxy-config-single.yaml,sha256=WEbK4ENFuTCYhzRu_QblWp1_GMARgZnx5vReQafkIG8,308
|
107
107
|
ibm_watsonx_orchestrate/docker/start-up.sh,sha256=LTtwHp0AidVgjohis2LXGvZnkFQStOiUAxgGABOyeUI,1811
|
108
108
|
ibm_watsonx_orchestrate/docker/sdk/ibm_watsonx_orchestrate-0.6.0-py3-none-any.whl,sha256=Hi3-owh5OM0Jz2ihX9nLoojnr7Ky1TV-GelyqLcewLE,2047417
|
@@ -126,8 +126,8 @@ ibm_watsonx_orchestrate/utils/utils.py,sha256=U7z_2iASoFiZ2zM0a_2Mc2Y-P5oOT7hOwu
|
|
126
126
|
ibm_watsonx_orchestrate/utils/logging/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
127
127
|
ibm_watsonx_orchestrate/utils/logging/logger.py,sha256=FzeGnidXAjC7yHrvIaj4KZPeaBBSCniZFlwgr5yV3oA,1037
|
128
128
|
ibm_watsonx_orchestrate/utils/logging/logging.yaml,sha256=9_TKfuFr1barnOKP0fZT5D6MhddiwsXVTFjtRbcOO5w,314
|
129
|
-
ibm_watsonx_orchestrate-1.10.
|
130
|
-
ibm_watsonx_orchestrate-1.10.
|
131
|
-
ibm_watsonx_orchestrate-1.10.
|
132
|
-
ibm_watsonx_orchestrate-1.10.
|
133
|
-
ibm_watsonx_orchestrate-1.10.
|
129
|
+
ibm_watsonx_orchestrate-1.10.2.dist-info/METADATA,sha256=VMkkqqfSLDuOKILngVu8E37vHUNobCf5dk73Fc4Smdc,1361
|
130
|
+
ibm_watsonx_orchestrate-1.10.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
131
|
+
ibm_watsonx_orchestrate-1.10.2.dist-info/entry_points.txt,sha256=SfIT02-Jen5e99OcLhzbcM9Bdyf8SGVOCtnSplgZdQI,69
|
132
|
+
ibm_watsonx_orchestrate-1.10.2.dist-info/licenses/LICENSE,sha256=Shgxx7hTdCOkiVRmfGgp_1ISISrwQD7m2f0y8Hsapl4,1083
|
133
|
+
ibm_watsonx_orchestrate-1.10.2.dist-info/RECORD,,
|
{ibm_watsonx_orchestrate-1.10.0b1.dist-info → ibm_watsonx_orchestrate-1.10.2.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|
File without changes
|