ibm-watsonx-orchestrate 1.9.0b1__py3-none-any.whl → 1.10.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 +2 -2
- ibm_watsonx_orchestrate/agent_builder/models/types.py +5 -0
- ibm_watsonx_orchestrate/agent_builder/tools/python_tool.py +19 -7
- ibm_watsonx_orchestrate/agent_builder/tools/types.py +5 -3
- ibm_watsonx_orchestrate/agent_builder/voice_configurations/__init__.py +1 -0
- ibm_watsonx_orchestrate/agent_builder/voice_configurations/types.py +98 -0
- ibm_watsonx_orchestrate/cli/commands/agents/agents_command.py +20 -0
- ibm_watsonx_orchestrate/cli/commands/agents/agents_controller.py +170 -1
- ibm_watsonx_orchestrate/cli/commands/connections/connections_controller.py +5 -2
- ibm_watsonx_orchestrate/cli/commands/copilot/copilot_controller.py +103 -20
- ibm_watsonx_orchestrate/cli/commands/knowledge_bases/knowledge_bases_controller.py +19 -12
- ibm_watsonx_orchestrate/cli/commands/models/model_provider_mapper.py +17 -13
- ibm_watsonx_orchestrate/cli/commands/server/server_command.py +17 -4
- ibm_watsonx_orchestrate/cli/commands/tools/tools_controller.py +6 -1
- ibm_watsonx_orchestrate/cli/commands/voice_configurations/voice_configurations_command.py +58 -0
- ibm_watsonx_orchestrate/cli/commands/voice_configurations/voice_configurations_controller.py +173 -0
- ibm_watsonx_orchestrate/cli/main.py +2 -0
- ibm_watsonx_orchestrate/client/agents/agent_client.py +64 -1
- ibm_watsonx_orchestrate/client/connections/connections_client.py +14 -2
- ibm_watsonx_orchestrate/client/copilot/cpe/copilot_cpe_client.py +5 -3
- ibm_watsonx_orchestrate/client/voice_configurations/voice_configurations_client.py +75 -0
- ibm_watsonx_orchestrate/docker/compose-lite.yml +23 -2
- ibm_watsonx_orchestrate/docker/default.env +16 -12
- ibm_watsonx_orchestrate/flow_builder/flows/__init__.py +2 -2
- ibm_watsonx_orchestrate/flow_builder/flows/flow.py +29 -24
- ibm_watsonx_orchestrate/flow_builder/types.py +109 -17
- ibm_watsonx_orchestrate/flow_builder/utils.py +7 -3
- {ibm_watsonx_orchestrate-1.9.0b1.dist-info → ibm_watsonx_orchestrate-1.10.0b0.dist-info}/METADATA +1 -1
- {ibm_watsonx_orchestrate-1.9.0b1.dist-info → ibm_watsonx_orchestrate-1.10.0b0.dist-info}/RECORD +34 -29
- {ibm_watsonx_orchestrate-1.9.0b1.dist-info → ibm_watsonx_orchestrate-1.10.0b0.dist-info}/WHEEL +0 -0
- {ibm_watsonx_orchestrate-1.9.0b1.dist-info → ibm_watsonx_orchestrate-1.10.0b0.dist-info}/entry_points.txt +0 -0
- {ibm_watsonx_orchestrate-1.9.0b1.dist-info → ibm_watsonx_orchestrate-1.10.0b0.dist-info}/licenses/LICENSE +0 -0
@@ -5,11 +5,14 @@ import numbers
|
|
5
5
|
import inspect
|
6
6
|
import logging
|
7
7
|
from typing import (
|
8
|
-
Any, Callable, Self, cast, Literal, List, NamedTuple, Optional, Sequence, Union
|
8
|
+
Annotated, Any, Callable, Self, cast, Literal, List, NamedTuple, Optional, Sequence, Union, NewType
|
9
9
|
)
|
10
|
+
from typing_extensions import Doc
|
10
11
|
|
11
12
|
import docstring_parser
|
12
|
-
from pydantic import BaseModel, Field
|
13
|
+
from pydantic import BaseModel, Field, GetCoreSchemaHandler, GetJsonSchemaHandler, RootModel
|
14
|
+
from pydantic_core import core_schema
|
15
|
+
from pydantic.json_schema import JsonSchemaValue
|
13
16
|
|
14
17
|
from langchain_core.tools.base import create_schema_from_function
|
15
18
|
from langchain_core.utils.json_schema import dereference_refs
|
@@ -86,7 +89,11 @@ def _to_json_from_input_schema(schema: Union[ToolRequestBody, SchemaRef]) -> dic
|
|
86
89
|
model_spec["properties"] = {}
|
87
90
|
for prop_name, prop_schema in request_body.properties.items():
|
88
91
|
model_spec["properties"][prop_name] = _to_json_from_json_schema(prop_schema)
|
89
|
-
model_spec["required"] = request_body.required
|
92
|
+
model_spec["required"] = request_body.required if request_body.required else []
|
93
|
+
if schema.model_extra:
|
94
|
+
for k, v in schema.model_extra.items():
|
95
|
+
model_spec[k] = v
|
96
|
+
|
90
97
|
elif isinstance(schema, SchemaRef):
|
91
98
|
model_spec["$ref"] = schema.ref
|
92
99
|
|
@@ -182,7 +189,10 @@ class LanguageCode(StrEnum):
|
|
182
189
|
en = auto()
|
183
190
|
fr = auto()
|
184
191
|
|
185
|
-
class
|
192
|
+
class DocProcCommonNodeSpec(NodeSpec):
|
193
|
+
enable_hw: bool | None = Field(description="Boolean value indicating if hand-written feature is enabled.", title="Enable handwritten", default=False)
|
194
|
+
|
195
|
+
class DocExtSpec(DocProcCommonNodeSpec):
|
186
196
|
version : str = Field(description="A version of the spec")
|
187
197
|
config : DocExtConfig
|
188
198
|
|
@@ -196,14 +206,63 @@ class DocExtSpec(NodeSpec):
|
|
196
206
|
model_spec["config"] = self.config.model_dump()
|
197
207
|
return model_spec
|
198
208
|
|
209
|
+
class DocProcField(BaseModel):
|
210
|
+
description: str = Field(description="A description of the field to extract from the document.")
|
211
|
+
example: str = Field(description="An example of the field to extract from the document.", default='')
|
212
|
+
default: Optional[str] = Field(description="A default value for the field to extract from the document.", default='')
|
213
|
+
|
214
|
+
class DocProcTable(BaseModel):
|
215
|
+
type: Literal["array"]
|
216
|
+
description: str = Field(description="A description of the table to extract from the document.")
|
217
|
+
columns: dict[str,DocProcField] = Field(description="The columns to extract from the table. These are the keys in the table extraction result.")
|
218
|
+
|
219
|
+
class DocProcKVPSchema(BaseModel):
|
220
|
+
document_type: str = Field(description="A label for the kind of documents we want to extract")
|
221
|
+
document_description: str = Field(description="A description of the kind of documents we want to extractI. This is used to select which schema to use for extraction.")
|
222
|
+
fields: dict[str, DocProcField | DocProcTable] = Field(description="The fields to extract from the document. These are the keys in the KVP extraction result.")
|
223
|
+
|
224
|
+
class DocProcBoundingBox(BaseModel):
|
225
|
+
x: float = Field(description="The x coordinate of the bounding box.")
|
226
|
+
y: float = Field(description="The y coordinate of the bounding box.")
|
227
|
+
width: float = Field(description="The width of the bounding box.")
|
228
|
+
height: float = Field(description="The height of the bounding box.")
|
229
|
+
page_number: int = Field(description="The page number of the bounding box in the document.")
|
230
|
+
|
231
|
+
class KVPBaseEntry(BaseModel):
|
232
|
+
id: str = Field(description="A unique identifier.")
|
233
|
+
raw_text: str = Field(description="The raw text.")
|
234
|
+
normalized_text: Optional[str] = Field(description="The normalized text.", default=None)
|
235
|
+
confidence_score: Optional[float] = Field(description="The confidence score.", default=None)
|
236
|
+
bbox: Optional[DocProcBoundingBox] = Field(description="The bounding box in the document.", default=None)
|
237
|
+
|
238
|
+
class DocProcKey(KVPBaseEntry):
|
239
|
+
semantic_label: str = Field(description="A semantic label for the key.")
|
240
|
+
|
241
|
+
class DocProcValue(KVPBaseEntry):
|
242
|
+
pass
|
243
|
+
|
244
|
+
class DocProcKVP(BaseModel):
|
245
|
+
id: str = Field(description="A unique identifier for the key-value pair.")
|
246
|
+
type: Literal["key_value","only_value"]
|
247
|
+
key: DocProcKey = Field(description="The key of the key-value pair.")
|
248
|
+
value: DocProcValue = Field(description="The value of the key-value pair.")
|
249
|
+
group_id: Optional[str] = Field(default=None, description="The group id of the key-value pair. This is used to group key-value pairs together.")
|
250
|
+
table_id: Optional[str] = Field(default=None, description="The table id of the key-value pair. This is used to group key-value pairs together in a table.")
|
251
|
+
table_name: Optional[str] = Field(default=None, description="The name of the table the key-value pair belongs to. This is used to group key-value pairs together in a table.")
|
252
|
+
table_row_index: Optional[int] = Field(default=None, description="The index of the row in the table the key-value pair belongs to. This is used to group key-value pairs together in a table.")
|
253
|
+
|
199
254
|
class DocProcTask(StrEnum):
|
200
255
|
'''
|
201
256
|
Possible names for the Document processing task parameter
|
202
257
|
'''
|
203
258
|
text_extraction = auto()
|
204
259
|
|
205
|
-
class DocProcSpec(
|
260
|
+
class DocProcSpec(DocProcCommonNodeSpec):
|
206
261
|
task: DocProcTask = Field(description='The document processing operation name', default=DocProcTask.text_extraction)
|
262
|
+
kvp_schema: List[DocProcKVPSchema] | None = Field(
|
263
|
+
title='KVP schemas',
|
264
|
+
description="Optional list of key-value pair schemas to use for extraction.",
|
265
|
+
default=None)
|
207
266
|
|
208
267
|
def __init__(self, **data):
|
209
268
|
super().__init__(**data)
|
@@ -777,34 +836,67 @@ class LanguageCode(StrEnum):
|
|
777
836
|
fr = auto()
|
778
837
|
en_hw = auto()
|
779
838
|
|
780
|
-
|
839
|
+
|
840
|
+
class File(str):
|
841
|
+
@classmethod
|
842
|
+
def __get_pydantic_core_schema__(
|
843
|
+
cls, source_type: Any, handler: GetCoreSchemaHandler
|
844
|
+
) -> core_schema.CoreSchema:
|
845
|
+
return core_schema.no_info_wrap_validator_function(
|
846
|
+
cls.validate,
|
847
|
+
core_schema.str_schema(),
|
848
|
+
serialization=core_schema.plain_serializer_function_ser_schema(lambda v: str(v))
|
849
|
+
)
|
850
|
+
|
851
|
+
@classmethod
|
852
|
+
def validate(cls, value: Any) -> "File":
|
853
|
+
if not isinstance(value, str):
|
854
|
+
raise TypeError("File must be a document reference (string)")
|
855
|
+
return cls(value)
|
856
|
+
|
857
|
+
@classmethod
|
858
|
+
def __get_pydantic_json_schema__(
|
859
|
+
cls, core_schema: core_schema.CoreSchema, handler: GetJsonSchemaHandler
|
860
|
+
) -> JsonSchemaValue:
|
861
|
+
return {
|
862
|
+
"type": "string",
|
863
|
+
"title": "Document reference",
|
864
|
+
"format": "binary",
|
865
|
+
"description": "Either an ID or a URL identifying the document to be used.",
|
866
|
+
"wrap_data": False,
|
867
|
+
"required": []
|
868
|
+
}
|
869
|
+
|
870
|
+
class DocExtInput(BaseModel):
|
871
|
+
document_ref: bytes | File = Field(description="Either an ID or a URL identifying the document to be used.", title='Document reference', default=None, json_schema_extra={"format": "binary"})
|
872
|
+
|
873
|
+
|
874
|
+
class DocProcInput(BaseModel):
|
781
875
|
'''
|
782
876
|
This class represents the input of a Document processing task.
|
783
877
|
|
784
878
|
Attributes:
|
785
879
|
document_ref (bytes|str): This is either a URL to the location of the document bytes or an ID that we use to resolve the location of the document
|
786
880
|
language (LanguageCode): Optional language code used when processing the input document
|
881
|
+
kvp_schemas (List[DocProcKVPSchema]): Optional list of key-value pair schemas to use for extraction. If not provided or None, no KVPs will be extracted. If an empty list is provided, we will use the internal schemas to extract KVPS.
|
787
882
|
'''
|
788
883
|
# This is declared as bytes but the runtime will understand if a URL is send in as input.
|
789
884
|
# We need to use bytes here for Chat-with-doc to recognize the input as a File.
|
790
|
-
document_ref: bytes |
|
791
|
-
|
792
|
-
title='
|
793
|
-
|
794
|
-
|
795
|
-
language: Optional[LanguageCode] = Field(
|
796
|
-
description='Optional language code of the document, defaults to "en"',
|
797
|
-
title='Document language code',
|
798
|
-
default=LanguageCode.en)
|
799
|
-
|
885
|
+
document_ref: bytes | File = Field(description="Either an ID or a URL identifying the document to be used.", title='Document reference', default=None, json_schema_extra={"format": "binary"})
|
886
|
+
kvp_schemas: Optional[List[DocProcKVPSchema]] = Field(
|
887
|
+
title='KVP schemas',
|
888
|
+
description="Optional list of key-value pair schemas to use for extraction.",
|
889
|
+
default=None)
|
800
890
|
|
801
891
|
class TextExtractionResponse(BaseModel):
|
802
892
|
'''
|
803
893
|
The text extraction operation response.
|
804
894
|
Attributes:
|
805
895
|
text (str): the text extracted from the input document.
|
896
|
+
kvps (Optional[list[DocProcKVP]]): A list of key-value pairs extracted from the document. If no KVPs were extracted, this will be None.
|
806
897
|
'''
|
807
|
-
text
|
898
|
+
text: str = Field(description='The text extracted from the input document', title='text')
|
899
|
+
kvps: Optional[list[DocProcKVP]] = Field(description="A list of key-value pairs extracted from the document.", default=None)
|
808
900
|
|
809
901
|
|
810
902
|
class DecisionsCondition(BaseModel):
|
@@ -89,9 +89,13 @@ def _get_tool_request_body(schema_obj: JsonSchemaObject) -> ToolRequestBody:
|
|
89
89
|
request_obj = ToolRequestBody(type='object', properties=schema_obj.properties, required=schema_obj.required)
|
90
90
|
if schema_obj.model_extra:
|
91
91
|
request_obj.__pydantic_extra__ = schema_obj.model_extra
|
92
|
-
else:
|
93
|
-
|
94
|
-
|
92
|
+
else:
|
93
|
+
if schema_obj.wrap_data:
|
94
|
+
# we need to wrap a simple type with an object
|
95
|
+
request_obj = ToolRequestBody(type='object', properties={}, required=[])
|
96
|
+
request_obj.properties["data"] = schema_obj
|
97
|
+
else:
|
98
|
+
request_obj = ToolRequestBody(type=schema_obj.type, title=schema_obj.title, description=schema_obj.description, format=schema_obj.format)
|
95
99
|
if schema_obj.model_extra:
|
96
100
|
request_obj.__pydantic_extra__ = schema_obj.model_extra
|
97
101
|
|
{ibm_watsonx_orchestrate-1.9.0b1.dist-info → ibm_watsonx_orchestrate-1.10.0b0.dist-info}/RECORD
RENAMED
@@ -1,10 +1,10 @@
|
|
1
|
-
ibm_watsonx_orchestrate/__init__.py,sha256=
|
1
|
+
ibm_watsonx_orchestrate/__init__.py,sha256=CE0F2w_9jm2X8mCofA2JwrXdBnhedrW0zMrgrGnZNy8,429
|
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
|
5
5
|
ibm_watsonx_orchestrate/agent_builder/agents/assistant_agent.py,sha256=NnWThJ2N8HUOD9IDL6ZhtTKyLMHSacJCpxDNityRmgY,1051
|
6
6
|
ibm_watsonx_orchestrate/agent_builder/agents/external_agent.py,sha256=7HzEFjd7JiiRTgvA1RVA3M0-Mr42FTQnOtGMII5ufk0,1045
|
7
|
-
ibm_watsonx_orchestrate/agent_builder/agents/types.py,sha256=
|
7
|
+
ibm_watsonx_orchestrate/agent_builder/agents/types.py,sha256=al_nz27cPqD1QLnamMgd8mkgUiATECaEptKttlkf0wU,13108
|
8
8
|
ibm_watsonx_orchestrate/agent_builder/agents/webchat_customizations/__init__.py,sha256=5TXa8UqKUAlDo4hTbE5S9OPEkQhxXhPJHJC4pEe8U00,92
|
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
|
@@ -13,27 +13,29 @@ ibm_watsonx_orchestrate/agent_builder/connections/connections.py,sha256=CD3QHI4d
|
|
13
13
|
ibm_watsonx_orchestrate/agent_builder/connections/types.py,sha256=YOOlXXNKVxTZ6tK2ceeytWXUApZjwfi4mgdYwXoiqOk,9532
|
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
|
16
|
-
ibm_watsonx_orchestrate/agent_builder/knowledge_bases/types.py,sha256=
|
16
|
+
ibm_watsonx_orchestrate/agent_builder/knowledge_bases/types.py,sha256=ILnIwjK-RqIUr9CeRRobIPg6qE1Sl4Br-qCMPvbHIVs,6985
|
17
17
|
ibm_watsonx_orchestrate/agent_builder/model_policies/__init__.py,sha256=alJEjlneWlGpadmvOVlDjq5wulytKOmpkq3849fhKNc,131
|
18
18
|
ibm_watsonx_orchestrate/agent_builder/model_policies/types.py,sha256=a6f9HP2OlZIe36k_PDRmFtefz2Ms2KBpzJ_jz8ggYbk,882
|
19
19
|
ibm_watsonx_orchestrate/agent_builder/models/__init__.py,sha256=R5nTbyMBzahONdp5-bJFp-rbtTDnp2184k6doZqt67w,31
|
20
|
-
ibm_watsonx_orchestrate/agent_builder/models/types.py,sha256=
|
20
|
+
ibm_watsonx_orchestrate/agent_builder/models/types.py,sha256=bWKrKeBMByjhEvkXieJUYOxVr1Px6mk8v4GsvjRrvo8,9812
|
21
21
|
ibm_watsonx_orchestrate/agent_builder/toolkits/base_toolkit.py,sha256=KXRPgBK-F9Qa6IYqEslkN3ANj3cmZoZQnlSiy_-iXCk,1054
|
22
22
|
ibm_watsonx_orchestrate/agent_builder/toolkits/types.py,sha256=yY-V4Hqct91-Rs4rJ3rY9OhzKkSMdOT63o224o-U9eg,959
|
23
23
|
ibm_watsonx_orchestrate/agent_builder/tools/__init__.py,sha256=adkYX0wgB-RKFCUBw6LPJhNVelUjUdsxipGPk2ghLns,479
|
24
24
|
ibm_watsonx_orchestrate/agent_builder/tools/base_tool.py,sha256=0vwMIAyKyB8v1QmNrubLy8Al58g3qT78EUgrmOjegoI,1220
|
25
25
|
ibm_watsonx_orchestrate/agent_builder/tools/flow_tool.py,sha256=DJWYVmIjw1O_cbzPpwU0a_vIZGvo0mj8UsjW9zkKMlA,2589
|
26
26
|
ibm_watsonx_orchestrate/agent_builder/tools/openapi_tool.py,sha256=h9ma18GUQHt88UIakd6QZHic822bAXzYokh6sfqAMZk,19410
|
27
|
-
ibm_watsonx_orchestrate/agent_builder/tools/python_tool.py,sha256=
|
28
|
-
ibm_watsonx_orchestrate/agent_builder/tools/types.py,sha256=
|
27
|
+
ibm_watsonx_orchestrate/agent_builder/tools/python_tool.py,sha256=cdgu-v1oRR9RUbMNKEklOzO1z3nNZpDZPSMwnJEvuIY,12533
|
28
|
+
ibm_watsonx_orchestrate/agent_builder/tools/types.py,sha256=m2t4uXNp0DVwVFzd0Jf_se8tz6V8FzM5fYgFs7AlvHU,8251
|
29
29
|
ibm_watsonx_orchestrate/agent_builder/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
30
|
+
ibm_watsonx_orchestrate/agent_builder/voice_configurations/__init__.py,sha256=W3-T8PH_KuONsCQPILQAvW2Nz25p7dp9AZbWHWGJXhA,37
|
31
|
+
ibm_watsonx_orchestrate/agent_builder/voice_configurations/types.py,sha256=lSS1yiDzVAMkEdOwcI4_1DUuRnu_6oc8XupQtoE4Fvs,3989
|
30
32
|
ibm_watsonx_orchestrate/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
31
33
|
ibm_watsonx_orchestrate/cli/config.py,sha256=iXjDxymWhAmLSUu6eh7zJR20dYZDzbxcU5VoBdh3VIw,8318
|
32
34
|
ibm_watsonx_orchestrate/cli/init_helper.py,sha256=qxnKdFcPtGsV_6RqP_IuLshRxgB004SxzDAkBTExA-4,1675
|
33
|
-
ibm_watsonx_orchestrate/cli/main.py,sha256=
|
35
|
+
ibm_watsonx_orchestrate/cli/main.py,sha256=Jrp0d40-RAtpzsGnf45dpPxJi3d7snod5BCnFMh4foU,3384
|
34
36
|
ibm_watsonx_orchestrate/cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
35
|
-
ibm_watsonx_orchestrate/cli/commands/agents/agents_command.py,sha256=
|
36
|
-
ibm_watsonx_orchestrate/cli/commands/agents/agents_controller.py,sha256=
|
37
|
+
ibm_watsonx_orchestrate/cli/commands/agents/agents_command.py,sha256=sC3kRKO5ZvDGUSy5CBnS3C-qU6bG9kxG-u42KcpVYuQ,9574
|
38
|
+
ibm_watsonx_orchestrate/cli/commands/agents/agents_controller.py,sha256=W1xeg4UQZ5fEudlvYfppw9PyfwTcQq-woWpHPZorUPc,55704
|
37
39
|
ibm_watsonx_orchestrate/cli/commands/channels/channels_command.py,sha256=fVIFhPUTPdxsxIE10nWL-W5wvBR-BS8V8D6r__J8R98,822
|
38
40
|
ibm_watsonx_orchestrate/cli/commands/channels/channels_controller.py,sha256=WjQxwJujvo28SsWgfJSXIpkcgniKcskJ2arL4MOz0Ys,455
|
39
41
|
ibm_watsonx_orchestrate/cli/commands/channels/types.py,sha256=hMFvWPr7tAmDrhBqtzfkCsrubX3lsU6lapTSOFsUbHM,475
|
@@ -41,9 +43,9 @@ ibm_watsonx_orchestrate/cli/commands/channels/webchat/channels_webchat_command.p
|
|
41
43
|
ibm_watsonx_orchestrate/cli/commands/channels/webchat/channels_webchat_controller.py,sha256=CGfmKsCBX4E3HMZ8C0IXD-DHQNwe96V1Y_BxUZM2us0,8557
|
42
44
|
ibm_watsonx_orchestrate/cli/commands/chat/chat_command.py,sha256=Q9vg2Z5Fsunu6GQFY_TIsNRhUCa0SSGSPnK4jxSGK34,1581
|
43
45
|
ibm_watsonx_orchestrate/cli/commands/connections/connections_command.py,sha256=bZBzaaVMFmGY4Guk-JCknZqd8HvXY5L-FirxpxddQfc,10497
|
44
|
-
ibm_watsonx_orchestrate/cli/commands/connections/connections_controller.py,sha256=
|
46
|
+
ibm_watsonx_orchestrate/cli/commands/connections/connections_controller.py,sha256=diwoXiyh5VKmUv0E0KEx2WJnWyNWQnvpjw-Wff05t68,22395
|
45
47
|
ibm_watsonx_orchestrate/cli/commands/copilot/copilot_command.py,sha256=IxasApIyQYWRMKPXKa38ZPVkUvOc4chggSmSGjgQGXc,2345
|
46
|
-
ibm_watsonx_orchestrate/cli/commands/copilot/copilot_controller.py,sha256=
|
48
|
+
ibm_watsonx_orchestrate/cli/commands/copilot/copilot_controller.py,sha256=SC2Tjq6r-tHIiyPBMajsxdMIY3BQpRWpkYGZS2XbJyU,18981
|
47
49
|
ibm_watsonx_orchestrate/cli/commands/copilot/copilot_server_controller.py,sha256=AcBE97qNYsRN0ftY_E-AAjKFyVea4fHtU5eB2HsB42I,5619
|
48
50
|
ibm_watsonx_orchestrate/cli/commands/environment/environment_command.py,sha256=xwq7gdyjMtl2RYAnLAahGk2wDetr9BStt8yu7JkeBhk,3768
|
49
51
|
ibm_watsonx_orchestrate/cli/commands/environment/environment_controller.py,sha256=oHZ7LONtPg3-SSnU_rRZryLi8N2mplz5h-LGg4XjzD4,10261
|
@@ -51,12 +53,12 @@ ibm_watsonx_orchestrate/cli/commands/environment/types.py,sha256=X6jEnyBdxakromA
|
|
51
53
|
ibm_watsonx_orchestrate/cli/commands/evaluations/evaluations_command.py,sha256=nOVxeZSTp1bfV_l_06B6x6wfNeusNAr5KImJYkwGWx8,14298
|
52
54
|
ibm_watsonx_orchestrate/cli/commands/evaluations/evaluations_controller.py,sha256=dZEAD0rIS9DQjWD2-i6367RjNd2PWB3Fm_DDk25toBg,7855
|
53
55
|
ibm_watsonx_orchestrate/cli/commands/knowledge_bases/knowledge_bases_command.py,sha256=hOzRcGVoqq7dTc4bSregKxH-kYbrVqaFdhBLawqnRNo,2668
|
54
|
-
ibm_watsonx_orchestrate/cli/commands/knowledge_bases/knowledge_bases_controller.py,sha256=
|
56
|
+
ibm_watsonx_orchestrate/cli/commands/knowledge_bases/knowledge_bases_controller.py,sha256=AyGc2JudpHaSf0ktHSVRkPVsaejWL8KH7Dv0XgEGZ1U,10531
|
55
57
|
ibm_watsonx_orchestrate/cli/commands/login/login_command.py,sha256=xArMiojoozg7Exn6HTpbTcjDO2idZRA-y0WV-_Ic1Sk,651
|
56
|
-
ibm_watsonx_orchestrate/cli/commands/models/model_provider_mapper.py,sha256=
|
58
|
+
ibm_watsonx_orchestrate/cli/commands/models/model_provider_mapper.py,sha256=mbvBR5o9M7W6OpTZyd6TtSEOIXq07dPYz4hv5zDrsd0,8129
|
57
59
|
ibm_watsonx_orchestrate/cli/commands/models/models_command.py,sha256=PW-PIM5Nq0qdCopWjANGBWEuEoA3NLTFThYrN8ggGCI,6425
|
58
60
|
ibm_watsonx_orchestrate/cli/commands/models/models_controller.py,sha256=eZSYQUg9TL_-8lgcPVpKIx7MtOE7K_NCvZW9Y9YsFA0,18466
|
59
|
-
ibm_watsonx_orchestrate/cli/commands/server/server_command.py,sha256=
|
61
|
+
ibm_watsonx_orchestrate/cli/commands/server/server_command.py,sha256=VhNfBPVXtTjMt-wKLtlXhWu5YB9TQ7BTnBrxWUDZdU4,43636
|
60
62
|
ibm_watsonx_orchestrate/cli/commands/server/types.py,sha256=UCrgGErbSVBnOzesfjrIii4tTCuVfWemYz5AKGZX0oA,4213
|
61
63
|
ibm_watsonx_orchestrate/cli/commands/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
62
64
|
ibm_watsonx_orchestrate/cli/commands/settings/settings_command.py,sha256=CzXRkd-97jXyS6LtaaNtMah-aZu0919dYl-mDwzGThc,344
|
@@ -67,8 +69,10 @@ ibm_watsonx_orchestrate/cli/commands/settings/observability/langfuse/langfuse_co
|
|
67
69
|
ibm_watsonx_orchestrate/cli/commands/toolkit/toolkit_command.py,sha256=KI96Yexq4ZkM-VxcW88oMszjnOxbdU7quSxFtvf_ry4,4367
|
68
70
|
ibm_watsonx_orchestrate/cli/commands/toolkit/toolkit_controller.py,sha256=3Jykp5-DzMM_At8kYJto171V6LesaqKdsk2nfg1TRpk,11949
|
69
71
|
ibm_watsonx_orchestrate/cli/commands/tools/tools_command.py,sha256=Cuo1ZvlfsymojqbadCqdwwS0HUjaWpe2XQrV70g61_s,3943
|
70
|
-
ibm_watsonx_orchestrate/cli/commands/tools/tools_controller.py,sha256=
|
72
|
+
ibm_watsonx_orchestrate/cli/commands/tools/tools_controller.py,sha256=_iXQx_Ycno4bpgI0HuJNsf2yYNP_8o6AOCUlBavBHEE,40720
|
71
73
|
ibm_watsonx_orchestrate/cli/commands/tools/types.py,sha256=_md0GEa_cTH17NO_moWDY_LNdFvyEFQ1UVB9_FltYiA,173
|
74
|
+
ibm_watsonx_orchestrate/cli/commands/voice_configurations/voice_configurations_command.py,sha256=q4KHWQ-LZbp31e2ytihX1OuyAPS4-nRinmc-eMXC0l0,1783
|
75
|
+
ibm_watsonx_orchestrate/cli/commands/voice_configurations/voice_configurations_controller.py,sha256=JbAc_CY0woHY8u7qrnOcb9O2FgECzkzeMirxFhRoep8,5884
|
72
76
|
ibm_watsonx_orchestrate/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
73
77
|
ibm_watsonx_orchestrate/client/base_api_client.py,sha256=cSbQb7-K9KoMeFLEIiYGho4cQqf8TcPyYklju9X4cC4,5214
|
74
78
|
ibm_watsonx_orchestrate/client/base_service_instance.py,sha256=sM_r7bln9BpgEOhaJMdFI9-je3T7GLQxLduk-in0oRY,235
|
@@ -78,16 +82,16 @@ ibm_watsonx_orchestrate/client/credentials.py,sha256=gDVeeQZDdbbjJiO1EI61yx2oRgT
|
|
78
82
|
ibm_watsonx_orchestrate/client/local_service_instance.py,sha256=dt7vfLnjgt7mT8wSq8SJZndNTwsPzhb0XDhcnPUPFpU,3524
|
79
83
|
ibm_watsonx_orchestrate/client/service_instance.py,sha256=fp3Lc4yQf4zTkxVS5WnIAkrHT0xG_a5i44qcLeQkaa4,6600
|
80
84
|
ibm_watsonx_orchestrate/client/utils.py,sha256=MUw11r0_wYv3RdF6-1BmSxcwYNF6q2_Urte7tMYTKVA,5836
|
81
|
-
ibm_watsonx_orchestrate/client/agents/agent_client.py,sha256=
|
85
|
+
ibm_watsonx_orchestrate/client/agents/agent_client.py,sha256=ObAoh5g4zvB1mZiA6xotvs4b1FGE1r92kkb2C7juGn8,6890
|
82
86
|
ibm_watsonx_orchestrate/client/agents/assistant_agent_client.py,sha256=1JQN0E4T_uz5V0LM-LD1ahNu2KCeFBjXAr8WCiP9mkE,1745
|
83
87
|
ibm_watsonx_orchestrate/client/agents/external_agent_client.py,sha256=iQ44XBdC4rYfS-zFn4St1xC5y5gf5SNqKHzMNQcFDZc,1808
|
84
88
|
ibm_watsonx_orchestrate/client/analytics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
85
89
|
ibm_watsonx_orchestrate/client/analytics/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
86
90
|
ibm_watsonx_orchestrate/client/analytics/llm/analytics_llm_client.py,sha256=0YS_BCpmf5oGFawpZkJ38cuz5ArhKsZIbSydWRd194s,1340
|
87
91
|
ibm_watsonx_orchestrate/client/connections/__init__.py,sha256=J7TOyVg38h71AlaJjlFs5fOuAXTceHvELtOJ9oz4Mvg,207
|
88
|
-
ibm_watsonx_orchestrate/client/connections/connections_client.py,sha256=
|
92
|
+
ibm_watsonx_orchestrate/client/connections/connections_client.py,sha256=UQMHxPDP9qqVUGoAAaCafcp2kMazeJsCNPn2NgrOQcI,8134
|
89
93
|
ibm_watsonx_orchestrate/client/connections/utils.py,sha256=f6HsiDI6cycOqfYN6P4uZ3SQds83xlh83zTUioZPeYk,2618
|
90
|
-
ibm_watsonx_orchestrate/client/copilot/cpe/copilot_cpe_client.py,sha256
|
94
|
+
ibm_watsonx_orchestrate/client/copilot/cpe/copilot_cpe_client.py,sha256=-grsFXdxY8Cy2DbsWa1Akc93d-TRLJJYCdMDkCfmG3g,2102
|
91
95
|
ibm_watsonx_orchestrate/client/knowledge_bases/knowledge_base_client.py,sha256=YjC16dcL_l0jd-6yZ6uH8anlL4yaIv9f-7Y_urPuXWM,2201
|
92
96
|
ibm_watsonx_orchestrate/client/model_policies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
93
97
|
ibm_watsonx_orchestrate/client/model_policies/model_policies_client.py,sha256=Ddjraesv1MRPhZebB0PdBL0zgdsoWmnYpWTUci_6XFI,2258
|
@@ -96,8 +100,9 @@ ibm_watsonx_orchestrate/client/models/models_client.py,sha256=ZvP3iPgUFw_SXp41kJ
|
|
96
100
|
ibm_watsonx_orchestrate/client/toolkit/toolkit_client.py,sha256=TLFNS39EeBD_t4Y-rX9sGp4sWBDr--mE5qVtHq8Q2hk,3121
|
97
101
|
ibm_watsonx_orchestrate/client/tools/tempus_client.py,sha256=24fKDZUOVHBW-Vj4mubnpnUmab5LgGn8u5hOVyJaozI,1804
|
98
102
|
ibm_watsonx_orchestrate/client/tools/tool_client.py,sha256=d3i3alVwa0TCN72w9sWOrM20GCbNmnpTnqEOJVbBIFM,1994
|
99
|
-
ibm_watsonx_orchestrate/
|
100
|
-
ibm_watsonx_orchestrate/docker/
|
103
|
+
ibm_watsonx_orchestrate/client/voice_configurations/voice_configurations_client.py,sha256=M5xIPLiVNpP-zxQw8CTNT9AiBjeXXmJiNaE142e2A3E,2682
|
104
|
+
ibm_watsonx_orchestrate/docker/compose-lite.yml,sha256=LdAwhDdslZ5SHxV5CGRjJliEeAfuk6N8a_Xv-4QWSNc,44133
|
105
|
+
ibm_watsonx_orchestrate/docker/default.env,sha256=13lliXku5OQsZo2vRPEv6ev0k6GpVRErRQKWNY_o6IY,6234
|
101
106
|
ibm_watsonx_orchestrate/docker/proxy-config-single.yaml,sha256=WEbK4ENFuTCYhzRu_QblWp1_GMARgZnx5vReQafkIG8,308
|
102
107
|
ibm_watsonx_orchestrate/docker/start-up.sh,sha256=LTtwHp0AidVgjohis2LXGvZnkFQStOiUAxgGABOyeUI,1811
|
103
108
|
ibm_watsonx_orchestrate/docker/sdk/ibm_watsonx_orchestrate-0.6.0-py3-none-any.whl,sha256=Hi3-owh5OM0Jz2ihX9nLoojnr7Ky1TV-GelyqLcewLE,2047417
|
@@ -106,13 +111,13 @@ ibm_watsonx_orchestrate/docker/tempus/common-config.yaml,sha256=Zo3F36F5DV4VO_vU
|
|
106
111
|
ibm_watsonx_orchestrate/flow_builder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
107
112
|
ibm_watsonx_orchestrate/flow_builder/data_map.py,sha256=1brmWWFERDsNG2XGais-5-r58LKUUwBtqwdaLQIFRhE,503
|
108
113
|
ibm_watsonx_orchestrate/flow_builder/node.py,sha256=l9J9bMyrvU5yKT2W0G9M-KM5rrfCeuG8jcANegQkrL8,5971
|
109
|
-
ibm_watsonx_orchestrate/flow_builder/types.py,sha256=
|
110
|
-
ibm_watsonx_orchestrate/flow_builder/utils.py,sha256=
|
111
|
-
ibm_watsonx_orchestrate/flow_builder/flows/__init__.py,sha256=
|
114
|
+
ibm_watsonx_orchestrate/flow_builder/types.py,sha256=muKjxiRQgjhgYqUHsumvy43ICuzzINyhdNKEnMBpBe4,44208
|
115
|
+
ibm_watsonx_orchestrate/flow_builder/utils.py,sha256=8q1jr5i_TzoJpoQxmLiO0g5Uv03BLbTUaRfw8_0VWIY,11931
|
116
|
+
ibm_watsonx_orchestrate/flow_builder/flows/__init__.py,sha256=jbCklY7l08KG8cbFihAnUWXSQKLLoTU6Mk_BmA4VksU,1041
|
112
117
|
ibm_watsonx_orchestrate/flow_builder/flows/constants.py,sha256=-TGneZyjA4YiAtJJK7OmmjDHYQC4mw2e98MPAZqiB50,324
|
113
118
|
ibm_watsonx_orchestrate/flow_builder/flows/decorators.py,sha256=lr4qSWq5PWqlGFf4fzUQZCVQDHBYflrYwZ24S89Aq80,2794
|
114
119
|
ibm_watsonx_orchestrate/flow_builder/flows/events.py,sha256=VyaBm0sADwr15LWfKbcBQS1M80NKqzYDj3UlW3OpOf4,2984
|
115
|
-
ibm_watsonx_orchestrate/flow_builder/flows/flow.py,sha256=
|
120
|
+
ibm_watsonx_orchestrate/flow_builder/flows/flow.py,sha256=WPAdXML0o9RuHZE0ajBBOrorS6YmJd8RhV3-FMbDifM,57304
|
116
121
|
ibm_watsonx_orchestrate/run/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
117
122
|
ibm_watsonx_orchestrate/run/connections.py,sha256=K-65GXPA8GEsVmRdPfMe_LB2G9RfXQUr95wvRUOhkS4,1828
|
118
123
|
ibm_watsonx_orchestrate/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -121,8 +126,8 @@ ibm_watsonx_orchestrate/utils/utils.py,sha256=U7z_2iASoFiZ2zM0a_2Mc2Y-P5oOT7hOwu
|
|
121
126
|
ibm_watsonx_orchestrate/utils/logging/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
122
127
|
ibm_watsonx_orchestrate/utils/logging/logger.py,sha256=FzeGnidXAjC7yHrvIaj4KZPeaBBSCniZFlwgr5yV3oA,1037
|
123
128
|
ibm_watsonx_orchestrate/utils/logging/logging.yaml,sha256=9_TKfuFr1barnOKP0fZT5D6MhddiwsXVTFjtRbcOO5w,314
|
124
|
-
ibm_watsonx_orchestrate-1.
|
125
|
-
ibm_watsonx_orchestrate-1.
|
126
|
-
ibm_watsonx_orchestrate-1.
|
127
|
-
ibm_watsonx_orchestrate-1.
|
128
|
-
ibm_watsonx_orchestrate-1.
|
129
|
+
ibm_watsonx_orchestrate-1.10.0b0.dist-info/METADATA,sha256=j9LQ4nwtXYKwZJGT48LSfws9sC84DZ9tHXHki4E-a9s,1363
|
130
|
+
ibm_watsonx_orchestrate-1.10.0b0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
131
|
+
ibm_watsonx_orchestrate-1.10.0b0.dist-info/entry_points.txt,sha256=SfIT02-Jen5e99OcLhzbcM9Bdyf8SGVOCtnSplgZdQI,69
|
132
|
+
ibm_watsonx_orchestrate-1.10.0b0.dist-info/licenses/LICENSE,sha256=Shgxx7hTdCOkiVRmfGgp_1ISISrwQD7m2f0y8Hsapl4,1083
|
133
|
+
ibm_watsonx_orchestrate-1.10.0b0.dist-info/RECORD,,
|
{ibm_watsonx_orchestrate-1.9.0b1.dist-info → ibm_watsonx_orchestrate-1.10.0b0.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|
File without changes
|