ibm-watsonx-orchestrate 1.1.0__py3-none-any.whl → 1.3.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.
- ibm_watsonx_orchestrate/__init__.py +1 -1
- ibm_watsonx_orchestrate/agent_builder/agents/types.py +4 -1
- ibm_watsonx_orchestrate/agent_builder/knowledge_bases/knowledge_base.py +16 -3
- ibm_watsonx_orchestrate/agent_builder/knowledge_bases/knowledge_base_requests.py +4 -20
- ibm_watsonx_orchestrate/agent_builder/knowledge_bases/types.py +4 -13
- ibm_watsonx_orchestrate/agent_builder/tools/openapi_tool.py +4 -12
- ibm_watsonx_orchestrate/agent_builder/tools/types.py +18 -5
- ibm_watsonx_orchestrate/cli/commands/agents/agents_controller.py +2 -0
- ibm_watsonx_orchestrate/cli/commands/knowledge_bases/knowledge_bases_command.py +2 -2
- ibm_watsonx_orchestrate/cli/commands/knowledge_bases/knowledge_bases_controller.py +63 -38
- ibm_watsonx_orchestrate/cli/commands/toolkit/toolkit_command.py +71 -0
- ibm_watsonx_orchestrate/cli/commands/toolkit/toolkit_controller.py +212 -0
- ibm_watsonx_orchestrate/cli/commands/tools/tools_controller.py +49 -21
- ibm_watsonx_orchestrate/cli/init_helper.py +43 -0
- ibm_watsonx_orchestrate/cli/main.py +7 -3
- ibm_watsonx_orchestrate/client/connections/connections_client.py +13 -13
- ibm_watsonx_orchestrate/client/toolkit/toolkit_client.py +81 -0
- ibm_watsonx_orchestrate/docker/compose-lite.yml +1 -0
- ibm_watsonx_orchestrate/docker/default.env +7 -7
- {ibm_watsonx_orchestrate-1.1.0.dist-info → ibm_watsonx_orchestrate-1.3.0.dist-info}/METADATA +3 -2
- {ibm_watsonx_orchestrate-1.1.0.dist-info → ibm_watsonx_orchestrate-1.3.0.dist-info}/RECORD +24 -20
- {ibm_watsonx_orchestrate-1.1.0.dist-info → ibm_watsonx_orchestrate-1.3.0.dist-info}/WHEEL +0 -0
- {ibm_watsonx_orchestrate-1.1.0.dist-info → ibm_watsonx_orchestrate-1.3.0.dist-info}/entry_points.txt +0 -0
- {ibm_watsonx_orchestrate-1.1.0.dist-info → ibm_watsonx_orchestrate-1.3.0.dist-info}/licenses/LICENSE +0 -0
@@ -49,18 +49,18 @@ EVENT_BROKER_TTL="-1"
|
|
49
49
|
# THE VALUES FOR REGISTRY_URL AND *_REGISTRY ARE NOT SET HERE; THEY ARE EITHER PROVIDED BY THE USER OR DETERMINED AT RUNTIME BASED ON WO_DEVELOPER_EDITION_SOURCE.
|
50
50
|
REGISTRY_URL=
|
51
51
|
|
52
|
-
SERVER_TAG=
|
52
|
+
SERVER_TAG=06-05-2025
|
53
53
|
SERVER_REGISTRY=
|
54
54
|
|
55
|
-
WORKER_TAG=
|
55
|
+
WORKER_TAG=06-05-2025
|
56
56
|
WORKER_REGISTRY=
|
57
57
|
|
58
58
|
DB_REGISTRY=
|
59
59
|
# If you build multiarch set all three of these to the same, we have a pr against main
|
60
60
|
# to not have this separation, but we can merge it later
|
61
|
-
DBTAG=
|
62
|
-
AMDDBTAG=
|
63
|
-
ARM64DBTAG=
|
61
|
+
DBTAG=02-05-2025
|
62
|
+
AMDDBTAG=02-05-2025
|
63
|
+
ARM64DBTAG=02-05-2025
|
64
64
|
|
65
65
|
UI_REGISTRY=
|
66
66
|
UITAG=01-05-2025
|
@@ -68,10 +68,10 @@ UITAG=01-05-2025
|
|
68
68
|
CM_REGISTRY=
|
69
69
|
CM_TAG=30-04-2025
|
70
70
|
|
71
|
-
TRM_TAG=
|
71
|
+
TRM_TAG=02-05-2025
|
72
72
|
TRM_REGISTRY=
|
73
73
|
|
74
|
-
TR_TAG=
|
74
|
+
TR_TAG=02-05-2025
|
75
75
|
TR_REGISTRY=
|
76
76
|
|
77
77
|
BUILDER_REGISTRY=
|
{ibm_watsonx_orchestrate-1.1.0.dist-info → ibm_watsonx_orchestrate-1.3.0.dist-info}/METADATA
RENAMED
@@ -1,12 +1,13 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: ibm-watsonx-orchestrate
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.3.0
|
4
4
|
Summary: IBM watsonx.orchestrate SDK
|
5
5
|
Author-email: IBM <support@ibm.com>
|
6
6
|
License: MIT License
|
7
7
|
License-File: LICENSE
|
8
8
|
Requires-Python: <3.14,>=3.11
|
9
9
|
Requires-Dist: certifi>=2024.8.30
|
10
|
+
Requires-Dist: click<8.2.0,>=8.0.0
|
10
11
|
Requires-Dist: docstring-parser<1.0,>=0.16
|
11
12
|
Requires-Dist: httpx<1.0.0,>=0.28.1
|
12
13
|
Requires-Dist: ibm-cloud-sdk-core>=3.22.0
|
@@ -19,7 +20,7 @@ Requires-Dist: pydantic<3.0.0,>=2.10.3
|
|
19
20
|
Requires-Dist: pyjwt<3.0.0,>=2.10.1
|
20
21
|
Requires-Dist: python-dotenv>=1.0.0
|
21
22
|
Requires-Dist: pyyaml<7.0.0,>=6.0.2
|
22
|
-
Requires-Dist: requests>=2.32.
|
23
|
+
Requires-Dist: requests>=2.32.0
|
23
24
|
Requires-Dist: rich<14.0.0,>=13.9.4
|
24
25
|
Requires-Dist: typer<1.0.0,>=0.15.1
|
25
26
|
Requires-Dist: urllib3>=2.2.3
|
@@ -1,29 +1,30 @@
|
|
1
|
-
ibm_watsonx_orchestrate/__init__.py,sha256=
|
1
|
+
ibm_watsonx_orchestrate/__init__.py,sha256=XJ9WS7nzsAN21mj071hX_RBsdj2aieSG6Ku29C-3IDg,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=v4G0MGh11eOCkUJP_4AMOcFgzW14oE41G3iFp7G2vvw,376
|
4
4
|
ibm_watsonx_orchestrate/agent_builder/agents/agent.py,sha256=PcBg2dRi-IOzvl24u8fa3B0jLaM5hzgkpTS8k56L9Ag,919
|
5
5
|
ibm_watsonx_orchestrate/agent_builder/agents/assistant_agent.py,sha256=U1cKr22umcWCMgI4G3r5JZXHPfWYbCbiTydH4YZy_Og,987
|
6
6
|
ibm_watsonx_orchestrate/agent_builder/agents/external_agent.py,sha256=LQM-DfOg2ajzrEur_F-aSrqKqaX4TbeajRe9YWz6s7E,981
|
7
|
-
ibm_watsonx_orchestrate/agent_builder/agents/types.py,sha256=
|
7
|
+
ibm_watsonx_orchestrate/agent_builder/agents/types.py,sha256=MXELtLji7oXU7AL_pHSNfLOGzSWFn4RjWu7_ghgxA60,8777
|
8
8
|
ibm_watsonx_orchestrate/agent_builder/connections/__init__.py,sha256=T7rgkNrG5wx-DfZVb7ree5hw_fCV0FbxVFxvr0bnxdw,722
|
9
9
|
ibm_watsonx_orchestrate/agent_builder/connections/connections.py,sha256=DImRGTXiky1KEVxM_5RmeLom74Lej9bBD8cXafkV6FY,4501
|
10
10
|
ibm_watsonx_orchestrate/agent_builder/connections/types.py,sha256=znSOdikTv_yIZaVDwoHwOSPu6b9hajj8miCMKOBmi2w,9280
|
11
|
-
ibm_watsonx_orchestrate/agent_builder/knowledge_bases/knowledge_base.py,sha256=
|
12
|
-
ibm_watsonx_orchestrate/agent_builder/knowledge_bases/knowledge_base_requests.py,sha256=
|
13
|
-
ibm_watsonx_orchestrate/agent_builder/knowledge_bases/types.py,sha256=
|
11
|
+
ibm_watsonx_orchestrate/agent_builder/knowledge_bases/knowledge_base.py,sha256=_KuGF0RZpKpwdt31rzjlTjrhGRFz2RtLzleNkhMNX4k,1831
|
12
|
+
ibm_watsonx_orchestrate/agent_builder/knowledge_bases/knowledge_base_requests.py,sha256=mRow0rf5EHeJCCsTrONeTq10jShs_yIBQjpgDY_mTrI,1641
|
13
|
+
ibm_watsonx_orchestrate/agent_builder/knowledge_bases/types.py,sha256=63uuNHjOBFp6R-tbTl5IYhCNfIH4xp81gX4zC7mO7U4,6957
|
14
14
|
ibm_watsonx_orchestrate/agent_builder/tools/__init__.py,sha256=adkYX0wgB-RKFCUBw6LPJhNVelUjUdsxipGPk2ghLns,479
|
15
15
|
ibm_watsonx_orchestrate/agent_builder/tools/base_tool.py,sha256=unJBOJUY8DAq3T3YX5d1H5KehJUCjObAdpGLVoWIfzw,1156
|
16
|
-
ibm_watsonx_orchestrate/agent_builder/tools/openapi_tool.py,sha256=
|
16
|
+
ibm_watsonx_orchestrate/agent_builder/tools/openapi_tool.py,sha256=uEc3dWJhYoDIwNbZFaQMP_pAEdX0Nx-g9qvLzW3vBTg,14596
|
17
17
|
ibm_watsonx_orchestrate/agent_builder/tools/python_tool.py,sha256=gh38bToYRnoqmsoR7pHCwqQTI6ENbxOPOV5aVSqECrg,8359
|
18
|
-
ibm_watsonx_orchestrate/agent_builder/tools/types.py,sha256=
|
18
|
+
ibm_watsonx_orchestrate/agent_builder/tools/types.py,sha256=LcMEWTUYx_bAKK_gA8Uav-hSU5qsKl4_lJ7oWYgdfLc,5813
|
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
22
|
ibm_watsonx_orchestrate/cli/config.py,sha256=C_iSP6WSb5SO6cVPTueQ9lEX16gYOLXD12cKXD6w_KQ,8168
|
23
|
-
ibm_watsonx_orchestrate/cli/
|
23
|
+
ibm_watsonx_orchestrate/cli/init_helper.py,sha256=Lb0bj6b8EaeBxkfGyrBBvc581ORg_S5-tHcXWQ-mBmE,1466
|
24
|
+
ibm_watsonx_orchestrate/cli/main.py,sha256=noyKaoJzXig4gNavxNRdEe9mknBqJdt4kS5o7kDljjo,2616
|
24
25
|
ibm_watsonx_orchestrate/cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
25
26
|
ibm_watsonx_orchestrate/cli/commands/agents/agents_command.py,sha256=GVHM1wv28zGzOcc__3BXHt0Y5NXZuOr7PH8exwVqn-o,6640
|
26
|
-
ibm_watsonx_orchestrate/cli/commands/agents/agents_controller.py,sha256=
|
27
|
+
ibm_watsonx_orchestrate/cli/commands/agents/agents_controller.py,sha256=JHfLoskqXFT6bgt68AvoSaCptZq5SXXsXFQ1hBCMpjk,28080
|
27
28
|
ibm_watsonx_orchestrate/cli/commands/channels/channels_command.py,sha256=fVIFhPUTPdxsxIE10nWL-W5wvBR-BS8V8D6r__J8R98,822
|
28
29
|
ibm_watsonx_orchestrate/cli/commands/channels/channels_controller.py,sha256=WjQxwJujvo28SsWgfJSXIpkcgniKcskJ2arL4MOz0Ys,455
|
29
30
|
ibm_watsonx_orchestrate/cli/commands/channels/types.py,sha256=h8gA3EM7k5X08sk8T9b5siL-XL9uUE-hl_jS-0PDBHA,254
|
@@ -35,8 +36,8 @@ ibm_watsonx_orchestrate/cli/commands/connections/connections_controller.py,sha25
|
|
35
36
|
ibm_watsonx_orchestrate/cli/commands/environment/environment_command.py,sha256=E-9uD2mXiWzxGRnP10bZN4YIt6NfCJdUFZWGXPP-l_o,2688
|
36
37
|
ibm_watsonx_orchestrate/cli/commands/environment/environment_controller.py,sha256=F1ef-VlYV-X97du8AlrluOhV0o50S3IBjqffk7Tw-yU,7534
|
37
38
|
ibm_watsonx_orchestrate/cli/commands/environment/types.py,sha256=BEHkzhsXoWWZsJrK6klv7Bgt2L3FFqzjNGqSbpdoHs8,159
|
38
|
-
ibm_watsonx_orchestrate/cli/commands/knowledge_bases/knowledge_bases_command.py,sha256=
|
39
|
-
ibm_watsonx_orchestrate/cli/commands/knowledge_bases/knowledge_bases_controller.py,sha256=
|
39
|
+
ibm_watsonx_orchestrate/cli/commands/knowledge_bases/knowledge_bases_command.py,sha256=B-9cgqwdR6nyJdEkZHO0_-VqtM89Oy6w5P6ONKPpLgw,3089
|
40
|
+
ibm_watsonx_orchestrate/cli/commands/knowledge_bases/knowledge_bases_controller.py,sha256=aTtkMdKKc7xxns-FEkqSUKPReMwo539akQUA1TVD0hk,9093
|
40
41
|
ibm_watsonx_orchestrate/cli/commands/login/login_command.py,sha256=xArMiojoozg7Exn6HTpbTcjDO2idZRA-y0WV-_Ic1Sk,651
|
41
42
|
ibm_watsonx_orchestrate/cli/commands/models/models_command.py,sha256=lxh0YpATogJRroHItwVuHmsZlHctVzWw_dEWkJlbwOI,4893
|
42
43
|
ibm_watsonx_orchestrate/cli/commands/server/server_command.py,sha256=fleb0JwH1PJ67M4ArL5l4vxoJAK1mtsIRFjHWSsKenI,28774
|
@@ -46,8 +47,10 @@ ibm_watsonx_orchestrate/cli/commands/settings/observability/__init__.py,sha256=4
|
|
46
47
|
ibm_watsonx_orchestrate/cli/commands/settings/observability/observability_command.py,sha256=TAkpKwoqocsShSgEeR6LzHCzJx16VDQ6cYsbpljxeqI,372
|
47
48
|
ibm_watsonx_orchestrate/cli/commands/settings/observability/langfuse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
48
49
|
ibm_watsonx_orchestrate/cli/commands/settings/observability/langfuse/langfuse_command.py,sha256=Wa0L8E44EdxH9LdOvmnluLk_ApJVfTLauNOC1kV4W8k,6515
|
50
|
+
ibm_watsonx_orchestrate/cli/commands/toolkit/toolkit_command.py,sha256=hsVazoC25DUHtCFt3nmzkF5Eai59-tnNIJR51Emjk0E,2494
|
51
|
+
ibm_watsonx_orchestrate/cli/commands/toolkit/toolkit_controller.py,sha256=QRVyfXJAOHA4D5pgVcq7m4TnKwSSwwtyns3_rKc1Jcc,8499
|
49
52
|
ibm_watsonx_orchestrate/cli/commands/tools/tools_command.py,sha256=2GK5AKwEYXsOZaASG15J8yNIPakI0NYkSXBTkeuHj6s,3343
|
50
|
-
ibm_watsonx_orchestrate/cli/commands/tools/tools_controller.py,sha256=
|
53
|
+
ibm_watsonx_orchestrate/cli/commands/tools/tools_controller.py,sha256=vv55WxliARWpq42c7OJWr3_1sFw3d-uL2lsiCQgAxt8,27591
|
51
54
|
ibm_watsonx_orchestrate/cli/commands/tools/types.py,sha256=_md0GEa_cTH17NO_moWDY_LNdFvyEFQ1UVB9_FltYiA,173
|
52
55
|
ibm_watsonx_orchestrate/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
53
56
|
ibm_watsonx_orchestrate/client/base_api_client.py,sha256=0ozLUudIrQH0RTdKaX0Y5c35FRNZPTemaAp71AsoMsQ,4410
|
@@ -65,12 +68,13 @@ ibm_watsonx_orchestrate/client/analytics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5
|
|
65
68
|
ibm_watsonx_orchestrate/client/analytics/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
66
69
|
ibm_watsonx_orchestrate/client/analytics/llm/analytics_llm_client.py,sha256=OSw9X5us_K7Pgstn8XCcl3sfS12USNyCW04QgymUAaY,1479
|
67
70
|
ibm_watsonx_orchestrate/client/connections/__init__.py,sha256=u821r2ZiYXLYNTknxdBYgc7glwTXsrQBd3z1I81f3ro,184
|
68
|
-
ibm_watsonx_orchestrate/client/connections/connections_client.py,sha256=
|
71
|
+
ibm_watsonx_orchestrate/client/connections/connections_client.py,sha256=D-e-qssnkxrjLKtdhPiIJTA3Ii1PXUbQKZhvBP_muHc,7006
|
69
72
|
ibm_watsonx_orchestrate/client/connections/utils.py,sha256=XqgYoiehiqIZ-LnduIAiJ9DIIF7IR7QvkKTc9784Ii0,1326
|
70
73
|
ibm_watsonx_orchestrate/client/knowledge_bases/knowledge_base_client.py,sha256=U-pG_H0I8992f0V13Li_e1dksKp54MrYX3X9bvr-09w,2181
|
74
|
+
ibm_watsonx_orchestrate/client/toolkit/toolkit_client.py,sha256=1ZcOcjULV8xXqEVQpuDx_Nhh3dOFC2DA-RXMddl-wH0,2974
|
71
75
|
ibm_watsonx_orchestrate/client/tools/tool_client.py,sha256=pEKOBH488YbLVc71ucucX0rr8YoulvDCxejuyWd0K8s,1588
|
72
|
-
ibm_watsonx_orchestrate/docker/compose-lite.yml,sha256=
|
73
|
-
ibm_watsonx_orchestrate/docker/default.env,sha256=
|
76
|
+
ibm_watsonx_orchestrate/docker/compose-lite.yml,sha256=Br6wNrRNYVYeIpc4q_Usc-ENK0RzccE-67GSlYhwggw,24688
|
77
|
+
ibm_watsonx_orchestrate/docker/default.env,sha256=o9a7HthHweDxVnVeV8CSkbnMdBV4RTjmYEdR1DRb_9w,4609
|
74
78
|
ibm_watsonx_orchestrate/docker/start-up.sh,sha256=LTtwHp0AidVgjohis2LXGvZnkFQStOiUAxgGABOyeUI,1811
|
75
79
|
ibm_watsonx_orchestrate/docker/sdk/ibm_watsonx_orchestrate-0.6.0-py3-none-any.whl,sha256=Hi3-owh5OM0Jz2ihX9nLoojnr7Ky1TV-GelyqLcewLE,2047417
|
76
80
|
ibm_watsonx_orchestrate/docker/sdk/ibm_watsonx_orchestrate-0.6.0.tar.gz,sha256=e5T-q7XPAtiCyQljwZp6kk3Q_4Tg6y5sijHTkscmqqQ,2025466
|
@@ -82,8 +86,8 @@ ibm_watsonx_orchestrate/utils/utils.py,sha256=3JWk1J9A04yVZeetE3TQH82I53Sn20KvU_
|
|
82
86
|
ibm_watsonx_orchestrate/utils/logging/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
83
87
|
ibm_watsonx_orchestrate/utils/logging/logger.py,sha256=FzeGnidXAjC7yHrvIaj4KZPeaBBSCniZFlwgr5yV3oA,1037
|
84
88
|
ibm_watsonx_orchestrate/utils/logging/logging.yaml,sha256=9_TKfuFr1barnOKP0fZT5D6MhddiwsXVTFjtRbcOO5w,314
|
85
|
-
ibm_watsonx_orchestrate-1.
|
86
|
-
ibm_watsonx_orchestrate-1.
|
87
|
-
ibm_watsonx_orchestrate-1.
|
88
|
-
ibm_watsonx_orchestrate-1.
|
89
|
-
ibm_watsonx_orchestrate-1.
|
89
|
+
ibm_watsonx_orchestrate-1.3.0.dist-info/METADATA,sha256=yDn1eqeaMjYBKiboVcXTtcjFB30oJEic0DORySbot4I,1286
|
90
|
+
ibm_watsonx_orchestrate-1.3.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
91
|
+
ibm_watsonx_orchestrate-1.3.0.dist-info/entry_points.txt,sha256=SfIT02-Jen5e99OcLhzbcM9Bdyf8SGVOCtnSplgZdQI,69
|
92
|
+
ibm_watsonx_orchestrate-1.3.0.dist-info/licenses/LICENSE,sha256=Shgxx7hTdCOkiVRmfGgp_1ISISrwQD7m2f0y8Hsapl4,1083
|
93
|
+
ibm_watsonx_orchestrate-1.3.0.dist-info/RECORD,,
|
File without changes
|
{ibm_watsonx_orchestrate-1.1.0.dist-info → ibm_watsonx_orchestrate-1.3.0.dist-info}/entry_points.txt
RENAMED
File without changes
|
{ibm_watsonx_orchestrate-1.1.0.dist-info → ibm_watsonx_orchestrate-1.3.0.dist-info}/licenses/LICENSE
RENAMED
File without changes
|