ibm-watsonx-orchestrate 1.3.0__py3-none-any.whl → 1.5.0b0__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 +2 -1
- ibm_watsonx_orchestrate/agent_builder/agents/types.py +2 -0
- ibm_watsonx_orchestrate/agent_builder/knowledge_bases/types.py +10 -2
- ibm_watsonx_orchestrate/agent_builder/toolkits/base_toolkit.py +32 -0
- ibm_watsonx_orchestrate/agent_builder/toolkits/types.py +42 -0
- ibm_watsonx_orchestrate/agent_builder/tools/openapi_tool.py +10 -1
- ibm_watsonx_orchestrate/agent_builder/tools/python_tool.py +4 -2
- ibm_watsonx_orchestrate/agent_builder/tools/types.py +2 -1
- ibm_watsonx_orchestrate/cli/commands/agents/agents_command.py +29 -0
- ibm_watsonx_orchestrate/cli/commands/agents/agents_controller.py +271 -12
- ibm_watsonx_orchestrate/cli/commands/knowledge_bases/knowledge_bases_controller.py +17 -2
- ibm_watsonx_orchestrate/cli/commands/models/env_file_model_provider_mapper.py +180 -0
- ibm_watsonx_orchestrate/cli/commands/models/models_command.py +199 -8
- ibm_watsonx_orchestrate/cli/commands/server/server_command.py +117 -48
- ibm_watsonx_orchestrate/cli/commands/server/types.py +105 -0
- ibm_watsonx_orchestrate/cli/commands/toolkit/toolkit_command.py +55 -7
- ibm_watsonx_orchestrate/cli/commands/toolkit/toolkit_controller.py +123 -42
- ibm_watsonx_orchestrate/cli/commands/tools/tools_command.py +22 -1
- ibm_watsonx_orchestrate/cli/commands/tools/tools_controller.py +197 -12
- ibm_watsonx_orchestrate/client/agents/agent_client.py +4 -1
- ibm_watsonx_orchestrate/client/agents/assistant_agent_client.py +5 -1
- ibm_watsonx_orchestrate/client/agents/external_agent_client.py +5 -1
- ibm_watsonx_orchestrate/client/analytics/llm/analytics_llm_client.py +2 -6
- ibm_watsonx_orchestrate/client/base_api_client.py +5 -2
- ibm_watsonx_orchestrate/client/connections/connections_client.py +3 -9
- ibm_watsonx_orchestrate/client/model_policies/__init__.py +0 -0
- ibm_watsonx_orchestrate/client/model_policies/model_policies_client.py +47 -0
- ibm_watsonx_orchestrate/client/model_policies/types.py +36 -0
- ibm_watsonx_orchestrate/client/models/__init__.py +0 -0
- ibm_watsonx_orchestrate/client/models/models_client.py +46 -0
- ibm_watsonx_orchestrate/client/models/types.py +189 -0
- ibm_watsonx_orchestrate/client/toolkit/toolkit_client.py +20 -6
- ibm_watsonx_orchestrate/client/tools/tempus_client.py +40 -0
- ibm_watsonx_orchestrate/client/tools/tool_client.py +8 -0
- ibm_watsonx_orchestrate/docker/compose-lite.yml +68 -13
- ibm_watsonx_orchestrate/docker/default.env +22 -12
- ibm_watsonx_orchestrate/docker/tempus/common-config.yaml +1 -1
- ibm_watsonx_orchestrate/experimental/flow_builder/__init__.py +0 -0
- ibm_watsonx_orchestrate/experimental/flow_builder/data_map.py +19 -0
- ibm_watsonx_orchestrate/experimental/flow_builder/flows/__init__.py +42 -0
- ibm_watsonx_orchestrate/experimental/flow_builder/flows/constants.py +19 -0
- ibm_watsonx_orchestrate/experimental/flow_builder/flows/decorators.py +144 -0
- ibm_watsonx_orchestrate/experimental/flow_builder/flows/events.py +72 -0
- ibm_watsonx_orchestrate/experimental/flow_builder/flows/flow.py +1310 -0
- ibm_watsonx_orchestrate/experimental/flow_builder/node.py +116 -0
- ibm_watsonx_orchestrate/experimental/flow_builder/resources/flow_status.openapi.yml +66 -0
- ibm_watsonx_orchestrate/experimental/flow_builder/types.py +765 -0
- ibm_watsonx_orchestrate/experimental/flow_builder/utils.py +115 -0
- ibm_watsonx_orchestrate/utils/utils.py +5 -2
- {ibm_watsonx_orchestrate-1.3.0.dist-info → ibm_watsonx_orchestrate-1.5.0b0.dist-info}/METADATA +4 -1
- {ibm_watsonx_orchestrate-1.3.0.dist-info → ibm_watsonx_orchestrate-1.5.0b0.dist-info}/RECORD +54 -32
- {ibm_watsonx_orchestrate-1.3.0.dist-info → ibm_watsonx_orchestrate-1.5.0b0.dist-info}/WHEEL +0 -0
- {ibm_watsonx_orchestrate-1.3.0.dist-info → ibm_watsonx_orchestrate-1.5.0b0.dist-info}/entry_points.txt +0 -0
- {ibm_watsonx_orchestrate-1.3.0.dist-info → ibm_watsonx_orchestrate-1.5.0b0.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,115 @@
|
|
1
|
+
import inspect
|
2
|
+
import json
|
3
|
+
from pathlib import Path
|
4
|
+
import re
|
5
|
+
import logging
|
6
|
+
import importlib.resources
|
7
|
+
import yaml
|
8
|
+
|
9
|
+
from pydantic import BaseModel
|
10
|
+
from typing import types
|
11
|
+
|
12
|
+
from langchain_core.utils.json_schema import dereference_refs
|
13
|
+
import typer
|
14
|
+
|
15
|
+
from ibm_watsonx_orchestrate.agent_builder.connections.types import ConnectionEnvironment, ConnectionPreference, ConnectionSecurityScheme
|
16
|
+
from ibm_watsonx_orchestrate.agent_builder.tools.openapi_tool import create_openapi_json_tools_from_content
|
17
|
+
from ibm_watsonx_orchestrate.agent_builder.tools.types import JsonSchemaObject
|
18
|
+
from ibm_watsonx_orchestrate.cli.commands.connections.connections_controller import add_connection, configure_connection, set_credentials_connection
|
19
|
+
from ibm_watsonx_orchestrate.client.connections.utils import get_connections_client
|
20
|
+
from ibm_watsonx_orchestrate.client.tools.tempus_client import TempusClient
|
21
|
+
from ibm_watsonx_orchestrate.client.utils import instantiate_client, is_local_dev
|
22
|
+
|
23
|
+
logger = logging.getLogger(__name__)
|
24
|
+
|
25
|
+
def get_valid_name(name: str) -> str:
|
26
|
+
|
27
|
+
return re.sub('\\W|^(?=\\d)','_', name)
|
28
|
+
|
29
|
+
def _get_json_schema_obj(parameter_name: str, type_def: type[BaseModel] | None) -> JsonSchemaObject:
|
30
|
+
if not type_def or type_def is None or type_def == inspect._empty:
|
31
|
+
return None
|
32
|
+
|
33
|
+
if issubclass(type_def, BaseModel):
|
34
|
+
input_schema_json = type_def.model_json_schema()
|
35
|
+
input_schema_json = dereference_refs(input_schema_json)
|
36
|
+
input_schema_obj = JsonSchemaObject(**input_schema_json)
|
37
|
+
if input_schema_obj.required is None:
|
38
|
+
input_schema_obj.required = []
|
39
|
+
return input_schema_obj
|
40
|
+
|
41
|
+
if isinstance(type_def, type):
|
42
|
+
schema_type = 'object'
|
43
|
+
if type_def == str:
|
44
|
+
schema_type = 'string'
|
45
|
+
elif type_def == int:
|
46
|
+
schema_type = 'integer'
|
47
|
+
elif type_def == float:
|
48
|
+
schema_type = 'number'
|
49
|
+
elif type_def == bool:
|
50
|
+
schema_type = 'boolean'
|
51
|
+
else:
|
52
|
+
schema_type = 'string'
|
53
|
+
# TODO: inspect the list item type and use that as the item type
|
54
|
+
return JsonSchemaObject(type=schema_type, properties={}, required=[])
|
55
|
+
|
56
|
+
raise ValueError(
|
57
|
+
f"Parameter {parameter_name} must be of type BaseModel or a primitive type.")
|
58
|
+
|
59
|
+
async def import_flow_model(model):
|
60
|
+
|
61
|
+
if not is_local_dev():
|
62
|
+
raise typer.BadParameter(f"Flow tools are only supported in local environment.")
|
63
|
+
|
64
|
+
if model is None:
|
65
|
+
raise typer.BadParameter(f"No model provided.")
|
66
|
+
|
67
|
+
tools = []
|
68
|
+
|
69
|
+
flow_id = model["spec"]["name"]
|
70
|
+
|
71
|
+
tempus_client: TempusClient = instantiate_client(TempusClient)
|
72
|
+
|
73
|
+
flow_open_api = tempus_client.create_update_flow_model(flow_id=flow_id, model=model)
|
74
|
+
|
75
|
+
logger.info(f"Flow model `{flow_id}` deployed successfully.")
|
76
|
+
|
77
|
+
connections_client = get_connections_client()
|
78
|
+
|
79
|
+
app_id = "flow_tools_app"
|
80
|
+
logger.info(f"Creating connection for flow model...")
|
81
|
+
existing_app = connections_client.get(app_id=app_id)
|
82
|
+
if not existing_app:
|
83
|
+
# logger.info(f"Creating app `{app_id}`.")
|
84
|
+
add_connection(app_id=app_id)
|
85
|
+
# else:
|
86
|
+
# logger.info(f"App `{app_id}` already exists.")
|
87
|
+
|
88
|
+
# logger.info(f"Creating connection for app...")
|
89
|
+
configure_connection(
|
90
|
+
type=ConnectionPreference.MEMBER,
|
91
|
+
app_id=app_id,
|
92
|
+
token=connections_client.api_key,
|
93
|
+
environment=ConnectionEnvironment.DRAFT,
|
94
|
+
security_scheme=ConnectionSecurityScheme.BEARER_TOKEN,
|
95
|
+
shared=False
|
96
|
+
)
|
97
|
+
|
98
|
+
set_credentials_connection(app_id=app_id, environment=ConnectionEnvironment.DRAFT, token=connections_client.api_key)
|
99
|
+
|
100
|
+
connections = connections_client.get_draft_by_app_id(app_id=app_id)
|
101
|
+
|
102
|
+
# logger.info(f"Connection `{connections.connection_id}` created successfully.")
|
103
|
+
|
104
|
+
tools = await create_openapi_json_tools_from_content(flow_open_api, connections.connection_id)
|
105
|
+
|
106
|
+
logger.info(f"Generating 'get_flow_status' tool spec...")
|
107
|
+
# Temporary code to deploy a status tool until we have full async support
|
108
|
+
with importlib.resources.open_text('ibm_watsonx_orchestrate.experimental.flow_builder.resources', 'flow_status.openapi.yml', encoding='utf-8') as f:
|
109
|
+
get_status_openapi = f.read()
|
110
|
+
|
111
|
+
get_flow_status_spec = yaml.safe_load(get_status_openapi)
|
112
|
+
tools.extend(await create_openapi_json_tools_from_content(get_flow_status_spec, connections.connection_id))
|
113
|
+
|
114
|
+
|
115
|
+
return tools
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import re
|
2
|
-
|
2
|
+
import zipfile
|
3
3
|
import yaml
|
4
4
|
from typing import BinaryIO
|
5
5
|
|
@@ -12,4 +12,7 @@ def yaml_safe_load(file : BinaryIO) -> dict:
|
|
12
12
|
|
13
13
|
def sanatize_app_id(app_id: str) -> str:
|
14
14
|
sanatize_pattern = re.compile(r"[^a-zA-Z0-9]+")
|
15
|
-
return re.sub(sanatize_pattern,'_', app_id)
|
15
|
+
return re.sub(sanatize_pattern,'_', app_id)
|
16
|
+
|
17
|
+
def check_file_in_zip(file_path: str, zip_file: zipfile.ZipFile) -> bool:
|
18
|
+
return any(x.startswith("%s/" % file_path.rstrip("/")) for x in zip_file.namelist())
|
{ibm_watsonx_orchestrate-1.3.0.dist-info → ibm_watsonx_orchestrate-1.5.0b0.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: ibm-watsonx-orchestrate
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.5.0b0
|
4
4
|
Summary: IBM watsonx.orchestrate SDK
|
5
5
|
Author-email: IBM <support@ibm.com>
|
6
6
|
License: MIT License
|
@@ -14,12 +14,15 @@ Requires-Dist: ibm-cloud-sdk-core>=3.22.0
|
|
14
14
|
Requires-Dist: jsonref==1.1.0
|
15
15
|
Requires-Dist: jsonschema<5.0.0,>=4.23.0
|
16
16
|
Requires-Dist: langchain-community<1.0.0,>=0.3.12
|
17
|
+
Requires-Dist: munch>=4.0.0
|
17
18
|
Requires-Dist: numpy>=1.26.0
|
18
19
|
Requires-Dist: packaging>=24.2
|
19
20
|
Requires-Dist: pydantic<3.0.0,>=2.10.3
|
20
21
|
Requires-Dist: pyjwt<3.0.0,>=2.10.1
|
21
22
|
Requires-Dist: python-dotenv>=1.0.0
|
23
|
+
Requires-Dist: pytz>=2025.2
|
22
24
|
Requires-Dist: pyyaml<7.0.0,>=6.0.2
|
25
|
+
Requires-Dist: redis>=6.0.0
|
23
26
|
Requires-Dist: requests>=2.32.0
|
24
27
|
Requires-Dist: rich<14.0.0,>=13.9.4
|
25
28
|
Requires-Dist: typer<1.0.0,>=0.15.1
|
{ibm_watsonx_orchestrate-1.3.0.dist-info → ibm_watsonx_orchestrate-1.5.0b0.dist-info}/RECORD
RENAMED
@@ -1,21 +1,23 @@
|
|
1
|
-
ibm_watsonx_orchestrate/__init__.py,sha256=
|
1
|
+
ibm_watsonx_orchestrate/__init__.py,sha256=CVO5jVx-PDoZ73vCs4cuFyBQ7XCDJbi0c5pkvEvXamU,428
|
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=iNZNxER9cIP48xazv5wvhFhJ59j33PnAfbZK_wAdOh4,8898
|
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
11
|
ibm_watsonx_orchestrate/agent_builder/knowledge_bases/knowledge_base.py,sha256=_KuGF0RZpKpwdt31rzjlTjrhGRFz2RtLzleNkhMNX4k,1831
|
12
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=
|
13
|
+
ibm_watsonx_orchestrate/agent_builder/knowledge_bases/types.py,sha256=fPkjWhWEnQcZvZSBYDd_El2kF6LVMBnmQhS1dc8LW6s,7641
|
14
|
+
ibm_watsonx_orchestrate/agent_builder/toolkits/base_toolkit.py,sha256=KXRPgBK-F9Qa6IYqEslkN3ANj3cmZoZQnlSiy_-iXCk,1054
|
15
|
+
ibm_watsonx_orchestrate/agent_builder/toolkits/types.py,sha256=yY-V4Hqct91-Rs4rJ3rY9OhzKkSMdOT63o224o-U9eg,959
|
14
16
|
ibm_watsonx_orchestrate/agent_builder/tools/__init__.py,sha256=adkYX0wgB-RKFCUBw6LPJhNVelUjUdsxipGPk2ghLns,479
|
15
17
|
ibm_watsonx_orchestrate/agent_builder/tools/base_tool.py,sha256=unJBOJUY8DAq3T3YX5d1H5KehJUCjObAdpGLVoWIfzw,1156
|
16
|
-
ibm_watsonx_orchestrate/agent_builder/tools/openapi_tool.py,sha256=
|
17
|
-
ibm_watsonx_orchestrate/agent_builder/tools/python_tool.py,sha256=
|
18
|
-
ibm_watsonx_orchestrate/agent_builder/tools/types.py,sha256=
|
18
|
+
ibm_watsonx_orchestrate/agent_builder/tools/openapi_tool.py,sha256=kYrHyvrOQ99T8mwmX4CYjsMfSfAh0OL9SoyBN7EZbJA,14875
|
19
|
+
ibm_watsonx_orchestrate/agent_builder/tools/python_tool.py,sha256=c6c-zyWIG6s4XrvpJpvFcZkNV2AbsucHsS2pZn7aspU,8484
|
20
|
+
ibm_watsonx_orchestrate/agent_builder/tools/types.py,sha256=XrwrI9CWmYqWPqySB63perfSntfQlS6G8zSTpXMFVxM,5856
|
19
21
|
ibm_watsonx_orchestrate/agent_builder/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
20
22
|
ibm_watsonx_orchestrate/agent_builder/utils/pydantic_utils.py,sha256=QEanM6FpkmntvS02whdhWx1d4v6zT_1l9ipEbfTgHs8,7623
|
21
23
|
ibm_watsonx_orchestrate/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -23,8 +25,8 @@ ibm_watsonx_orchestrate/cli/config.py,sha256=C_iSP6WSb5SO6cVPTueQ9lEX16gYOLXD12c
|
|
23
25
|
ibm_watsonx_orchestrate/cli/init_helper.py,sha256=Lb0bj6b8EaeBxkfGyrBBvc581ORg_S5-tHcXWQ-mBmE,1466
|
24
26
|
ibm_watsonx_orchestrate/cli/main.py,sha256=noyKaoJzXig4gNavxNRdEe9mknBqJdt4kS5o7kDljjo,2616
|
25
27
|
ibm_watsonx_orchestrate/cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
26
|
-
ibm_watsonx_orchestrate/cli/commands/agents/agents_command.py,sha256=
|
27
|
-
ibm_watsonx_orchestrate/cli/commands/agents/agents_controller.py,sha256=
|
28
|
+
ibm_watsonx_orchestrate/cli/commands/agents/agents_command.py,sha256=yLDxbyvUQU_eq0JIGb0qZUYAlsSR5fNoFEv_dG6ONxk,7602
|
29
|
+
ibm_watsonx_orchestrate/cli/commands/agents/agents_controller.py,sha256=ouv_EaR5Efq4DNrQVSDOMBrtZUHB-mGbukhPemo3nZI,39900
|
28
30
|
ibm_watsonx_orchestrate/cli/commands/channels/channels_command.py,sha256=fVIFhPUTPdxsxIE10nWL-W5wvBR-BS8V8D6r__J8R98,822
|
29
31
|
ibm_watsonx_orchestrate/cli/commands/channels/channels_controller.py,sha256=WjQxwJujvo28SsWgfJSXIpkcgniKcskJ2arL4MOz0Ys,455
|
30
32
|
ibm_watsonx_orchestrate/cli/commands/channels/types.py,sha256=h8gA3EM7k5X08sk8T9b5siL-XL9uUE-hl_jS-0PDBHA,254
|
@@ -37,23 +39,25 @@ ibm_watsonx_orchestrate/cli/commands/environment/environment_command.py,sha256=E
|
|
37
39
|
ibm_watsonx_orchestrate/cli/commands/environment/environment_controller.py,sha256=F1ef-VlYV-X97du8AlrluOhV0o50S3IBjqffk7Tw-yU,7534
|
38
40
|
ibm_watsonx_orchestrate/cli/commands/environment/types.py,sha256=BEHkzhsXoWWZsJrK6klv7Bgt2L3FFqzjNGqSbpdoHs8,159
|
39
41
|
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=
|
42
|
+
ibm_watsonx_orchestrate/cli/commands/knowledge_bases/knowledge_bases_controller.py,sha256=vLe1PV_qohLMctKl1Rajzyyhb0JfDC_XV_7vIfs_E8A,9595
|
41
43
|
ibm_watsonx_orchestrate/cli/commands/login/login_command.py,sha256=xArMiojoozg7Exn6HTpbTcjDO2idZRA-y0WV-_Ic1Sk,651
|
42
|
-
ibm_watsonx_orchestrate/cli/commands/models/
|
43
|
-
ibm_watsonx_orchestrate/cli/commands/
|
44
|
+
ibm_watsonx_orchestrate/cli/commands/models/env_file_model_provider_mapper.py,sha256=Ixz5TC5BbdoFx8zC5TAqHvDQWlmUI4clQxHN3JegIYI,7700
|
45
|
+
ibm_watsonx_orchestrate/cli/commands/models/models_command.py,sha256=M1E6zFd1_0VytKsjuPZ_eqC8QYIMJjSAAKEpU8Dvec0,12315
|
46
|
+
ibm_watsonx_orchestrate/cli/commands/server/server_command.py,sha256=b_AngUTqGTUbOMpzE8ZQhM4J41gK-oIOhmeby3kOg9s,31973
|
47
|
+
ibm_watsonx_orchestrate/cli/commands/server/types.py,sha256=WaaIKB8IzDdxcetkdtHbupXr4u2VDcSRdHPrxh2oQ3E,4169
|
44
48
|
ibm_watsonx_orchestrate/cli/commands/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
45
49
|
ibm_watsonx_orchestrate/cli/commands/settings/settings_command.py,sha256=CzXRkd-97jXyS6LtaaNtMah-aZu0919dYl-mDwzGThc,344
|
46
50
|
ibm_watsonx_orchestrate/cli/commands/settings/observability/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
47
51
|
ibm_watsonx_orchestrate/cli/commands/settings/observability/observability_command.py,sha256=TAkpKwoqocsShSgEeR6LzHCzJx16VDQ6cYsbpljxeqI,372
|
48
52
|
ibm_watsonx_orchestrate/cli/commands/settings/observability/langfuse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
49
53
|
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=
|
51
|
-
ibm_watsonx_orchestrate/cli/commands/toolkit/toolkit_controller.py,sha256=
|
52
|
-
ibm_watsonx_orchestrate/cli/commands/tools/tools_command.py,sha256=
|
53
|
-
ibm_watsonx_orchestrate/cli/commands/tools/tools_controller.py,sha256=
|
54
|
+
ibm_watsonx_orchestrate/cli/commands/toolkit/toolkit_command.py,sha256=e8YKUr_8CodA5fgYjUKj-Dk856foQ5Iz3I9Jld5pU_o,4193
|
55
|
+
ibm_watsonx_orchestrate/cli/commands/toolkit/toolkit_controller.py,sha256=T7rbkbDbfKDGVi2W7zL6NmmyNkUvlE73XmrHvbR7nzY,11526
|
56
|
+
ibm_watsonx_orchestrate/cli/commands/tools/tools_command.py,sha256=Cuo1ZvlfsymojqbadCqdwwS0HUjaWpe2XQrV70g61_s,3943
|
57
|
+
ibm_watsonx_orchestrate/cli/commands/tools/tools_controller.py,sha256=ZsOIGfWPnurRRmUGGqOnRRfpXLt7Rcb4JsOHJjZlLA8,36492
|
54
58
|
ibm_watsonx_orchestrate/cli/commands/tools/types.py,sha256=_md0GEa_cTH17NO_moWDY_LNdFvyEFQ1UVB9_FltYiA,173
|
55
59
|
ibm_watsonx_orchestrate/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
56
|
-
ibm_watsonx_orchestrate/client/base_api_client.py,sha256=
|
60
|
+
ibm_watsonx_orchestrate/client/base_api_client.py,sha256=5GbL_oL9rSMIuuge-qIjuKs0Hp6U-YW1HSumqPf9J10,4501
|
57
61
|
ibm_watsonx_orchestrate/client/base_service_instance.py,sha256=sM_r7bln9BpgEOhaJMdFI9-je3T7GLQxLduk-in0oRY,235
|
58
62
|
ibm_watsonx_orchestrate/client/client.py,sha256=pgYeXHe4_Makrw0gTyM343DQdrZZB8cjitFHKcbdzuc,2432
|
59
63
|
ibm_watsonx_orchestrate/client/client_errors.py,sha256=72MKCNZbKoo2QXyY0RicLhP3r0ALRjgOEbHOHNSyOYI,11712
|
@@ -61,33 +65,51 @@ ibm_watsonx_orchestrate/client/credentials.py,sha256=ksqfecJkx-XSOkpHksomdBVAKqE
|
|
61
65
|
ibm_watsonx_orchestrate/client/local_service_instance.py,sha256=ilqbcd0R6r0w6H5tMlQf0YRFk8IjbJd9sXwT41iQ5iQ,3440
|
62
66
|
ibm_watsonx_orchestrate/client/service_instance.py,sha256=fkxDhp8jALw2W_1BOMDYlCGgR7pxdnXms5ejre6CkMY,2969
|
63
67
|
ibm_watsonx_orchestrate/client/utils.py,sha256=qvVDrtlzJh-7ADG4SY0Xg38_AcjDRGuG6VgyWdF4NBg,3570
|
64
|
-
ibm_watsonx_orchestrate/client/agents/agent_client.py,sha256=
|
65
|
-
ibm_watsonx_orchestrate/client/agents/assistant_agent_client.py,sha256=
|
66
|
-
ibm_watsonx_orchestrate/client/agents/external_agent_client.py,sha256=
|
68
|
+
ibm_watsonx_orchestrate/client/agents/agent_client.py,sha256=CNRMrjDN2s-nOffi9E5VaAMMKDZdpIy002oESA_JY30,1931
|
69
|
+
ibm_watsonx_orchestrate/client/agents/assistant_agent_client.py,sha256=6AA3sPhoKVH17Qaq0sPae4itjrOAsBhG6y6mt8Eq6fI,1685
|
70
|
+
ibm_watsonx_orchestrate/client/agents/external_agent_client.py,sha256=aBGSQbLtdwBuasl58IISyNFtrCNT5KQ9Qd4wwVTLwWw,1768
|
67
71
|
ibm_watsonx_orchestrate/client/analytics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
68
72
|
ibm_watsonx_orchestrate/client/analytics/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
69
|
-
ibm_watsonx_orchestrate/client/analytics/llm/analytics_llm_client.py,sha256=
|
73
|
+
ibm_watsonx_orchestrate/client/analytics/llm/analytics_llm_client.py,sha256=0YS_BCpmf5oGFawpZkJ38cuz5ArhKsZIbSydWRd194s,1340
|
70
74
|
ibm_watsonx_orchestrate/client/connections/__init__.py,sha256=u821r2ZiYXLYNTknxdBYgc7glwTXsrQBd3z1I81f3ro,184
|
71
|
-
ibm_watsonx_orchestrate/client/connections/connections_client.py,sha256=
|
75
|
+
ibm_watsonx_orchestrate/client/connections/connections_client.py,sha256=WwfwdykWByCItI14ltQVEOCXm1dnwOTW4xIlS4lbois,6820
|
72
76
|
ibm_watsonx_orchestrate/client/connections/utils.py,sha256=XqgYoiehiqIZ-LnduIAiJ9DIIF7IR7QvkKTc9784Ii0,1326
|
73
77
|
ibm_watsonx_orchestrate/client/knowledge_bases/knowledge_base_client.py,sha256=U-pG_H0I8992f0V13Li_e1dksKp54MrYX3X9bvr-09w,2181
|
74
|
-
ibm_watsonx_orchestrate/client/
|
75
|
-
ibm_watsonx_orchestrate/client/
|
76
|
-
ibm_watsonx_orchestrate/
|
77
|
-
ibm_watsonx_orchestrate/
|
78
|
+
ibm_watsonx_orchestrate/client/model_policies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
79
|
+
ibm_watsonx_orchestrate/client/model_policies/model_policies_client.py,sha256=qQhSHgTwVwmPnmLxCYIgnSCML5OlptVbUjlZ1SEDeIk,1398
|
80
|
+
ibm_watsonx_orchestrate/client/model_policies/types.py,sha256=_EpN7IDIxPxO8ZzZmXdBHXUGsg0weusg0ITaSKnfVcE,881
|
81
|
+
ibm_watsonx_orchestrate/client/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
82
|
+
ibm_watsonx_orchestrate/client/models/models_client.py,sha256=vy4dNWULRuRzER2WOqwsFQX1l4hKcTuDpA86TyuDkk8,1251
|
83
|
+
ibm_watsonx_orchestrate/client/models/types.py,sha256=66ArfM01whmzpkr37yJnh1ZWpURY8f4OMpuGbPA5VIg,8175
|
84
|
+
ibm_watsonx_orchestrate/client/toolkit/toolkit_client.py,sha256=TLFNS39EeBD_t4Y-rX9sGp4sWBDr--mE5qVtHq8Q2hk,3121
|
85
|
+
ibm_watsonx_orchestrate/client/tools/tempus_client.py,sha256=Q6h-ynbjU1GBYweeNORgqhsP6nvLE2sKjS7sk7VFZP0,1678
|
86
|
+
ibm_watsonx_orchestrate/client/tools/tool_client.py,sha256=lcu6xhWfSVSC4ZuhWMGr__V9PErEMMPRlocRsFu2ZRE,1959
|
87
|
+
ibm_watsonx_orchestrate/docker/compose-lite.yml,sha256=AQxBjE_FbyPpnE0ZcsnyO4C4f_VACwYx6GX7b2XaYGQ,26541
|
88
|
+
ibm_watsonx_orchestrate/docker/default.env,sha256=It1j1nzfiyU915yMYz8fne3oAwOBBcBDenPjfPQQkPU,5106
|
78
89
|
ibm_watsonx_orchestrate/docker/start-up.sh,sha256=LTtwHp0AidVgjohis2LXGvZnkFQStOiUAxgGABOyeUI,1811
|
79
90
|
ibm_watsonx_orchestrate/docker/sdk/ibm_watsonx_orchestrate-0.6.0-py3-none-any.whl,sha256=Hi3-owh5OM0Jz2ihX9nLoojnr7Ky1TV-GelyqLcewLE,2047417
|
80
91
|
ibm_watsonx_orchestrate/docker/sdk/ibm_watsonx_orchestrate-0.6.0.tar.gz,sha256=e5T-q7XPAtiCyQljwZp6kk3Q_4Tg6y5sijHTkscmqqQ,2025466
|
81
|
-
ibm_watsonx_orchestrate/docker/tempus/common-config.yaml,sha256=
|
92
|
+
ibm_watsonx_orchestrate/docker/tempus/common-config.yaml,sha256=Zo3F36F5DV4VO_vUg1RG-r4WhcukVh79J2fXhGl6j0A,22
|
93
|
+
ibm_watsonx_orchestrate/experimental/flow_builder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
94
|
+
ibm_watsonx_orchestrate/experimental/flow_builder/data_map.py,sha256=1brmWWFERDsNG2XGais-5-r58LKUUwBtqwdaLQIFRhE,503
|
95
|
+
ibm_watsonx_orchestrate/experimental/flow_builder/node.py,sha256=tp_ssBOSDDi8q-ET2bP7xRPwNOLmLUgQ7v9zZZqn9SU,4090
|
96
|
+
ibm_watsonx_orchestrate/experimental/flow_builder/types.py,sha256=SEl4v2jUJtL8hfE5T6p93B-na9_FI_WJk9AKd_TU2V0,27324
|
97
|
+
ibm_watsonx_orchestrate/experimental/flow_builder/utils.py,sha256=XoKzocDzOuUp4q8JkCG0YHni1MkL-ddO-OviF90A4-4,4425
|
98
|
+
ibm_watsonx_orchestrate/experimental/flow_builder/flows/__init__.py,sha256=MkPxvsXyMCd9jE6Vh70j0YEHQIKmwllPd635vmeTyeU,888
|
99
|
+
ibm_watsonx_orchestrate/experimental/flow_builder/flows/constants.py,sha256=XXYtL5Y1OTjj3jKo2zoJiwb7FCUNu_M43fgU8w591TY,322
|
100
|
+
ibm_watsonx_orchestrate/experimental/flow_builder/flows/decorators.py,sha256=krJHviV7rfPlW2TDveKA0XA9yrnaQeQiNpwcxg7SP4o,5441
|
101
|
+
ibm_watsonx_orchestrate/experimental/flow_builder/flows/events.py,sha256=tfTOiBP1MbaTpe89PKeHuo96amrPKOBqYh8cU9M_YdA,2743
|
102
|
+
ibm_watsonx_orchestrate/experimental/flow_builder/flows/flow.py,sha256=_UDDGVshez3PpJXA2t1ISjnvlrQZKO7i6vBDTUg-IFI,51186
|
103
|
+
ibm_watsonx_orchestrate/experimental/flow_builder/resources/flow_status.openapi.yml,sha256=UkQ4FD_ZhvZuMOjrgLm7cx8zJFZD7Ri-MPCe_zktU-8,1664
|
82
104
|
ibm_watsonx_orchestrate/run/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
83
105
|
ibm_watsonx_orchestrate/run/connections.py,sha256=o5TjSqxLG8zLk6UGWCcz_UdylMWZOyUT1o3i1XkL5Uc,1844
|
84
106
|
ibm_watsonx_orchestrate/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
85
|
-
ibm_watsonx_orchestrate/utils/utils.py,sha256=
|
107
|
+
ibm_watsonx_orchestrate/utils/utils.py,sha256=U7z_2iASoFiZ2zM0a_2Mc2Y-P5oOT7hOwuurzC9Z3N8,721
|
86
108
|
ibm_watsonx_orchestrate/utils/logging/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
87
109
|
ibm_watsonx_orchestrate/utils/logging/logger.py,sha256=FzeGnidXAjC7yHrvIaj4KZPeaBBSCniZFlwgr5yV3oA,1037
|
88
110
|
ibm_watsonx_orchestrate/utils/logging/logging.yaml,sha256=9_TKfuFr1barnOKP0fZT5D6MhddiwsXVTFjtRbcOO5w,314
|
89
|
-
ibm_watsonx_orchestrate-1.
|
90
|
-
ibm_watsonx_orchestrate-1.
|
91
|
-
ibm_watsonx_orchestrate-1.
|
92
|
-
ibm_watsonx_orchestrate-1.
|
93
|
-
ibm_watsonx_orchestrate-1.
|
111
|
+
ibm_watsonx_orchestrate-1.5.0b0.dist-info/METADATA,sha256=WulERVXfOWKXr2A35BZQ88aMjQtwlKa2XQBQdRn9wP4,1372
|
112
|
+
ibm_watsonx_orchestrate-1.5.0b0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
113
|
+
ibm_watsonx_orchestrate-1.5.0b0.dist-info/entry_points.txt,sha256=SfIT02-Jen5e99OcLhzbcM9Bdyf8SGVOCtnSplgZdQI,69
|
114
|
+
ibm_watsonx_orchestrate-1.5.0b0.dist-info/licenses/LICENSE,sha256=Shgxx7hTdCOkiVRmfGgp_1ISISrwQD7m2f0y8Hsapl4,1083
|
115
|
+
ibm_watsonx_orchestrate-1.5.0b0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|