ibm-watsonx-orchestrate 1.9.0.dev0__py3-none-any.whl → 1.10.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 -2
- ibm_watsonx_orchestrate/agent_builder/agents/types.py +2 -0
- ibm_watsonx_orchestrate/agent_builder/connections/__init__.py +1 -1
- ibm_watsonx_orchestrate/agent_builder/connections/connections.py +1 -1
- ibm_watsonx_orchestrate/agent_builder/connections/types.py +16 -12
- ibm_watsonx_orchestrate/agent_builder/knowledge_bases/types.py +45 -2
- ibm_watsonx_orchestrate/agent_builder/toolkits/types.py +18 -15
- ibm_watsonx_orchestrate/agent_builder/tools/python_tool.py +1 -1
- ibm_watsonx_orchestrate/agent_builder/tools/types.py +1 -1
- 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_command.py +7 -7
- ibm_watsonx_orchestrate/cli/commands/connections/connections_controller.py +36 -26
- ibm_watsonx_orchestrate/cli/commands/knowledge_bases/knowledge_bases_controller.py +51 -22
- ibm_watsonx_orchestrate/cli/commands/server/server_command.py +110 -16
- ibm_watsonx_orchestrate/cli/commands/toolkit/toolkit_command.py +43 -10
- ibm_watsonx_orchestrate/cli/commands/toolkit/toolkit_controller.py +52 -25
- ibm_watsonx_orchestrate/cli/commands/tools/tools_controller.py +5 -0
- 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 +4 -3
- ibm_watsonx_orchestrate/client/knowledge_bases/knowledge_base_client.py +4 -4
- ibm_watsonx_orchestrate/client/voice_configurations/voice_configurations_client.py +75 -0
- ibm_watsonx_orchestrate/docker/compose-lite.yml +53 -5
- ibm_watsonx_orchestrate/docker/default.env +22 -14
- ibm_watsonx_orchestrate/flow_builder/flows/__init__.py +2 -0
- ibm_watsonx_orchestrate/flow_builder/flows/flow.py +115 -31
- ibm_watsonx_orchestrate/flow_builder/node.py +39 -15
- ibm_watsonx_orchestrate/flow_builder/types.py +114 -25
- ibm_watsonx_orchestrate/run/connections.py +2 -2
- {ibm_watsonx_orchestrate-1.9.0.dev0.dist-info → ibm_watsonx_orchestrate-1.10.0.dist-info}/METADATA +1 -1
- {ibm_watsonx_orchestrate-1.9.0.dev0.dist-info → ibm_watsonx_orchestrate-1.10.0.dist-info}/RECORD +39 -34
- {ibm_watsonx_orchestrate-1.9.0.dev0.dist-info → ibm_watsonx_orchestrate-1.10.0.dist-info}/WHEEL +0 -0
- {ibm_watsonx_orchestrate-1.9.0.dev0.dist-info → ibm_watsonx_orchestrate-1.10.0.dist-info}/entry_points.txt +0 -0
- {ibm_watsonx_orchestrate-1.9.0.dev0.dist-info → ibm_watsonx_orchestrate-1.10.0.dist-info}/licenses/LICENSE +0 -0
@@ -4,12 +4,16 @@ from datetime import date
|
|
4
4
|
import numbers
|
5
5
|
import inspect
|
6
6
|
import logging
|
7
|
+
import uuid
|
8
|
+
import re
|
9
|
+
import time
|
7
10
|
from typing import (
|
8
11
|
Annotated, Any, Callable, Self, cast, Literal, List, NamedTuple, Optional, Sequence, Union, NewType
|
9
12
|
)
|
10
13
|
from typing_extensions import Doc
|
11
14
|
|
12
15
|
import docstring_parser
|
16
|
+
from pydantic import computed_field, field_validator
|
13
17
|
from pydantic import BaseModel, Field, GetCoreSchemaHandler, GetJsonSchemaHandler, RootModel
|
14
18
|
from pydantic_core import core_schema
|
15
19
|
from pydantic.json_schema import JsonSchemaValue
|
@@ -124,7 +128,7 @@ def _to_json_from_output_schema(schema: Union[ToolResponseBody, SchemaRef]) -> d
|
|
124
128
|
return model_spec
|
125
129
|
|
126
130
|
class NodeSpec(BaseModel):
|
127
|
-
kind: Literal["node", "tool", "user", "agent", "flow", "start", "decisions", "prompt", "branch", "wait", "foreach", "loop", "userflow", "end", "docproc" ] = "node"
|
131
|
+
kind: Literal["node", "tool", "user", "agent", "flow", "start", "decisions", "prompt", "timer", "branch", "wait", "foreach", "loop", "userflow", "end", "docproc", "docext", "docclassifier" ] = "node"
|
128
132
|
name: str
|
129
133
|
display_name: str | None = None
|
130
134
|
description: str | None = None
|
@@ -170,7 +174,7 @@ class NodeSpec(BaseModel):
|
|
170
174
|
|
171
175
|
return model_spec
|
172
176
|
|
173
|
-
class
|
177
|
+
class DocExtConfigField(BaseModel):
|
174
178
|
name: str = Field(description="Entity name")
|
175
179
|
type: Literal["string", "date", "number"] = Field(default="string", description="The type of the entity values")
|
176
180
|
description: str = Field(title="Description", description="Description of the entity", default="")
|
@@ -180,18 +184,89 @@ class DocExtConfigEntity(BaseModel):
|
|
180
184
|
examples: list[str] = Field(title="Examples", description="Examples that help the LLM understand the expected entity mentions", default=[])
|
181
185
|
|
182
186
|
class DocExtConfig(BaseModel):
|
183
|
-
domain: str = Field(description="
|
187
|
+
domain: str = Field(description="Domain of the document", default="other")
|
184
188
|
type: str = Field(description="Document type", default="agreement")
|
185
189
|
llm: str = Field(description="The LLM used for the document extraction", default="meta-llama/llama-3-2-11b-vision-instruct")
|
186
|
-
|
190
|
+
fields: list[DocExtConfigField] = Field(default=[])
|
187
191
|
|
188
192
|
class LanguageCode(StrEnum):
|
189
193
|
en = auto()
|
190
194
|
fr = auto()
|
191
195
|
|
196
|
+
class DocProcTask(StrEnum):
|
197
|
+
'''
|
198
|
+
Possible names for the Document processing task parameter
|
199
|
+
'''
|
200
|
+
text_extraction = auto()
|
201
|
+
custom_field_extraction = auto()
|
202
|
+
custom_document_classification = auto()
|
203
|
+
|
204
|
+
class CustomClassOutput(BaseModel):
|
205
|
+
class_name: str = Field(
|
206
|
+
title="Class Name",
|
207
|
+
description="Class Name of the Document",
|
208
|
+
default=[],
|
209
|
+
)
|
210
|
+
|
211
|
+
class DocumentClassificationResponse(BaseModel):
|
212
|
+
custom_class_response: CustomClassOutput = Field(
|
213
|
+
title="Custom Classification",
|
214
|
+
description="The Class extracted by the llm",
|
215
|
+
)
|
216
|
+
|
217
|
+
class DocClassifierClass(BaseModel):
|
218
|
+
class_name: str = Field(title='Class Name', description="The predicted, normalized document class name based on provided name")
|
219
|
+
|
220
|
+
@field_validator("class_name", mode="before")
|
221
|
+
@classmethod
|
222
|
+
def normalize_name(cls, name) -> str:
|
223
|
+
pattern = r'^[a-zA-Z0-9_]{1,29}$'
|
224
|
+
if not re.match(pattern, name):
|
225
|
+
raise ValueError(f"class_name \"{name}\" is not valid. class_name should contain only letters (a-z, A-Z), digits (0-9), and underscores (_)")
|
226
|
+
return name
|
227
|
+
|
228
|
+
@computed_field(description="A uuid for identifying classes, For easy filtering of documents classified in a class", return_type=str)
|
229
|
+
def class_id(self) -> str:
|
230
|
+
return str(uuid.uuid5(uuid.uuid1(), self.class_name + str(time.time())))
|
231
|
+
|
232
|
+
class DocClassifierConfig(BaseModel):
|
233
|
+
domain: str = Field(description="Domain of the document", default="other",title="Domain")
|
234
|
+
type: Literal["class_configuration"] = Field(description="Document type", default="class_configuration",title="Type")
|
235
|
+
llm: str = Field(description="The LLM used for the document classfier", default="watsonx/meta-llama/llama-3-2-11b-vision-instruct",title="LLM")
|
236
|
+
min_confidence: float = Field(description="The minimal confidence acceptable for an extracted field value", default=0.0,le=1.0, ge=0.0 ,title="Minimum Confidence")
|
237
|
+
classes: list[DocClassifierClass] = Field(default=[], description="Classes which are needed to classify provided by user", title="Classes")
|
238
|
+
|
192
239
|
class DocProcCommonNodeSpec(NodeSpec):
|
240
|
+
task: DocProcTask = Field(description='The document processing operation name', default=DocProcTask.text_extraction)
|
193
241
|
enable_hw: bool | None = Field(description="Boolean value indicating if hand-written feature is enabled.", title="Enable handwritten", default=False)
|
194
242
|
|
243
|
+
def __init__(self, **data):
|
244
|
+
super().__init__(**data)
|
245
|
+
|
246
|
+
def to_json(self) -> dict[str, Any]:
|
247
|
+
model_spec = super().to_json()
|
248
|
+
model_spec["task"] = self.task
|
249
|
+
model_spec["enable_hw"] = self.enable_hw
|
250
|
+
|
251
|
+
return model_spec
|
252
|
+
|
253
|
+
|
254
|
+
|
255
|
+
class DocClassifierSpec(DocProcCommonNodeSpec):
|
256
|
+
version : str = Field(description="A version of the spec")
|
257
|
+
config : DocClassifierConfig
|
258
|
+
|
259
|
+
def __init__(self, **data):
|
260
|
+
super().__init__(**data)
|
261
|
+
self.kind = "docclassifier"
|
262
|
+
|
263
|
+
def to_json(self) -> dict[str, Any]:
|
264
|
+
model_spec = super().to_json()
|
265
|
+
model_spec["version"] = self.version
|
266
|
+
model_spec["config"] = self.config.model_dump()
|
267
|
+
model_spec["task"] = DocProcTask.custom_document_classification
|
268
|
+
return model_spec
|
269
|
+
|
195
270
|
class DocExtSpec(DocProcCommonNodeSpec):
|
196
271
|
version : str = Field(description="A version of the spec")
|
197
272
|
config : DocExtConfig
|
@@ -204,6 +279,7 @@ class DocExtSpec(DocProcCommonNodeSpec):
|
|
204
279
|
model_spec = super().to_json()
|
205
280
|
model_spec["version"] = self.version
|
206
281
|
model_spec["config"] = self.config.model_dump()
|
282
|
+
model_spec["task"] = DocProcTask.custom_field_extraction
|
207
283
|
return model_spec
|
208
284
|
|
209
285
|
class DocProcField(BaseModel):
|
@@ -251,19 +327,17 @@ class DocProcKVP(BaseModel):
|
|
251
327
|
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
328
|
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
329
|
|
254
|
-
class
|
255
|
-
|
256
|
-
|
257
|
-
'''
|
258
|
-
text_extraction = auto()
|
330
|
+
class PlainTextReadingOrder(StrEnum):
|
331
|
+
block_structure = auto()
|
332
|
+
simple_line = auto()
|
259
333
|
|
260
334
|
class DocProcSpec(DocProcCommonNodeSpec):
|
261
|
-
|
262
|
-
kvp_schema: List[DocProcKVPSchema] | None = Field(
|
335
|
+
kvp_schemas: List[DocProcKVPSchema] | None = Field(
|
263
336
|
title='KVP schemas',
|
264
337
|
description="Optional list of key-value pair schemas to use for extraction.",
|
265
338
|
default=None)
|
266
|
-
|
339
|
+
plain_text_reading_order : PlainTextReadingOrder = Field(default=PlainTextReadingOrder.block_structure)
|
340
|
+
|
267
341
|
def __init__(self, **data):
|
268
342
|
super().__init__(**data)
|
269
343
|
self.kind = "docproc"
|
@@ -271,8 +345,12 @@ class DocProcSpec(DocProcCommonNodeSpec):
|
|
271
345
|
def to_json(self) -> dict[str, Any]:
|
272
346
|
model_spec = super().to_json()
|
273
347
|
model_spec["task"] = self.task
|
348
|
+
if self.plain_text_reading_order != PlainTextReadingOrder.block_structure:
|
349
|
+
model_spec["plain_text_reading_order"] = self.plain_text_reading_order
|
350
|
+
if self.kvp_schemas is not None:
|
351
|
+
model_spec["kvp_schemas"] = self.kvp_schemas
|
274
352
|
return model_spec
|
275
|
-
|
353
|
+
|
276
354
|
class StartNodeSpec(NodeSpec):
|
277
355
|
def __init__(self, **data):
|
278
356
|
super().__init__(**data)
|
@@ -607,6 +685,18 @@ class PromptNodeSpec(NodeSpec):
|
|
607
685
|
|
608
686
|
return model_spec
|
609
687
|
|
688
|
+
class TimerNodeSpec(NodeSpec):
|
689
|
+
delay: int
|
690
|
+
|
691
|
+
def __init__(self, **kwargs):
|
692
|
+
super().__init__(**kwargs)
|
693
|
+
self.kind = "timer"
|
694
|
+
|
695
|
+
def to_json(self) -> dict[str, Any]:
|
696
|
+
model_spec = super().to_json()
|
697
|
+
if self.delay:
|
698
|
+
model_spec["delay"] = self.delay
|
699
|
+
return model_spec
|
610
700
|
|
611
701
|
class Expression(BaseModel):
|
612
702
|
'''An expression could return a boolean or a value'''
|
@@ -866,24 +956,25 @@ class File(str):
|
|
866
956
|
"wrap_data": False,
|
867
957
|
"required": []
|
868
958
|
}
|
869
|
-
|
870
|
-
|
871
|
-
|
959
|
+
class DocumentProcessingCommonInput(BaseModel):
|
960
|
+
'''
|
961
|
+
This class represents the common input of docext, docproc and docclassifier node
|
872
962
|
|
963
|
+
Attributes:
|
964
|
+
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
|
965
|
+
'''
|
966
|
+
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"})
|
873
967
|
|
874
|
-
class DocProcInput(
|
968
|
+
class DocProcInput(DocumentProcessingCommonInput):
|
875
969
|
'''
|
876
970
|
This class represents the input of a Document processing task.
|
877
971
|
|
878
972
|
Attributes:
|
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
|
880
|
-
language (LanguageCode): Optional language code used when processing the input document
|
881
973
|
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.
|
882
974
|
'''
|
883
975
|
# This is declared as bytes but the runtime will understand if a URL is send in as input.
|
884
976
|
# We need to use bytes here for Chat-with-doc to recognize the input as a File.
|
885
|
-
|
886
|
-
kvp_schemas: Optional[List[DocProcKVPSchema]] = Field(
|
977
|
+
kvp_schemas: Optional[List[DocProcKVPSchema]] | str = Field(
|
887
978
|
title='KVP schemas',
|
888
979
|
description="Optional list of key-value pair schemas to use for extraction.",
|
889
980
|
default=None)
|
@@ -892,11 +983,9 @@ class TextExtractionResponse(BaseModel):
|
|
892
983
|
'''
|
893
984
|
The text extraction operation response.
|
894
985
|
Attributes:
|
895
|
-
|
896
|
-
kvps (Optional[list[DocProcKVP]]): A list of key-value pairs extracted from the document. If no KVPs were extracted, this will be None.
|
986
|
+
output_file_ref (str): The url to the file that contains the extracted text and kvps.
|
897
987
|
'''
|
898
|
-
|
899
|
-
kvps: Optional[list[DocProcKVP]] = Field(description="A list of key-value pairs extracted from the document.", default=None)
|
988
|
+
output_file_ref: str = Field(description='The url to the file that contains the extracted text and kvps.', title="output_file_ref")
|
900
989
|
|
901
990
|
|
902
991
|
class DecisionsCondition(BaseModel):
|
@@ -24,8 +24,8 @@ def oauth2_auth_code(app_id:str) -> OAuth2TokenCredentials:
|
|
24
24
|
# def oauth2_implicit(app_id:str) -> BearerTokenAuthCredentials:
|
25
25
|
# return get_application_connection_credentials(ConnectionType.OAUTH2_IMPLICIT, app_id=app_id)
|
26
26
|
|
27
|
-
|
28
|
-
|
27
|
+
def oauth2_password(app_id:str) -> OAuth2TokenCredentials:
|
28
|
+
return get_application_connection_credentials(ConnectionType.OAUTH2_PASSWORD, app_id=app_id)
|
29
29
|
|
30
30
|
def oauth2_client_creds(app_id:str) -> OAuth2TokenCredentials:
|
31
31
|
return get_application_connection_credentials(ConnectionType.OAUTH2_CLIENT_CREDS, app_id=app_id)
|
{ibm_watsonx_orchestrate-1.9.0.dev0.dist-info → ibm_watsonx_orchestrate-1.10.0.dist-info}/RECORD
RENAMED
@@ -1,47 +1,49 @@
|
|
1
|
-
ibm_watsonx_orchestrate/__init__.py,sha256=
|
1
|
+
ibm_watsonx_orchestrate/__init__.py,sha256=cjI_LONugyAA8tewjUne9EBah5bzxemQMGrU_T7qeBE,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
|
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
|
11
|
-
ibm_watsonx_orchestrate/agent_builder/connections/__init__.py,sha256=
|
12
|
-
ibm_watsonx_orchestrate/agent_builder/connections/connections.py,sha256=
|
13
|
-
ibm_watsonx_orchestrate/agent_builder/connections/types.py,sha256=
|
11
|
+
ibm_watsonx_orchestrate/agent_builder/connections/__init__.py,sha256=B9FwmBbdJxFj3KmJ87Fc78TbzxOr1MIVhaHPJePOGSQ,716
|
12
|
+
ibm_watsonx_orchestrate/agent_builder/connections/connections.py,sha256=Vo1ucn4c_Db68x7GGuq-uyM89dInnkRztmsF0uo-yBk,5421
|
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
|
16
|
-
ibm_watsonx_orchestrate/agent_builder/knowledge_bases/types.py,sha256=
|
16
|
+
ibm_watsonx_orchestrate/agent_builder/knowledge_bases/types.py,sha256=2MP3_c6V3OdbwrdDDffGtrBoAhoa3q-YoUXj_RsMG_M,8340
|
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
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
|
-
ibm_watsonx_orchestrate/agent_builder/toolkits/types.py,sha256=
|
22
|
+
ibm_watsonx_orchestrate/agent_builder/toolkits/types.py,sha256=RGkS01_fqbs-7YFFZbuxHv64AHdaav2jm0RDKsVMb4c,986
|
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=3nJ5IxI3k_2GH0KQpZ17Uq4VN2WshCIExc6TuPIz3lw,8258
|
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
|
40
42
|
ibm_watsonx_orchestrate/cli/commands/channels/webchat/channels_webchat_command.py,sha256=vPCr6z1n1yzGDjTlM4f3_9MiuVRzNmXbvUifm6XyQi8,1103
|
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
|
-
ibm_watsonx_orchestrate/cli/commands/connections/connections_command.py,sha256=
|
44
|
-
ibm_watsonx_orchestrate/cli/commands/connections/connections_controller.py,sha256=
|
45
|
+
ibm_watsonx_orchestrate/cli/commands/connections/connections_command.py,sha256=bYn9Z4DDDdoaAYkUddgrQas8H7h7h7hbO4fle5Ovdmo,10688
|
46
|
+
ibm_watsonx_orchestrate/cli/commands/connections/connections_controller.py,sha256=XpcJBAzJHczZcJttH7kzfIgZUidj_aW86mmQ5qk_T8c,23367
|
45
47
|
ibm_watsonx_orchestrate/cli/commands/copilot/copilot_command.py,sha256=IxasApIyQYWRMKPXKa38ZPVkUvOc4chggSmSGjgQGXc,2345
|
46
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
|
@@ -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=d9RSBy2S2nn8vWrghovGb1owe7Zu8LywOm0nIdzlXiU,11567
|
55
57
|
ibm_watsonx_orchestrate/cli/commands/login/login_command.py,sha256=xArMiojoozg7Exn6HTpbTcjDO2idZRA-y0WV-_Ic1Sk,651
|
56
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=RBGH3ssDDhrcvmGpvpVtvqpWIhJm_odH4kqf4UQMRrI,46669
|
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
|
@@ -64,11 +66,13 @@ ibm_watsonx_orchestrate/cli/commands/settings/observability/__init__.py,sha256=4
|
|
64
66
|
ibm_watsonx_orchestrate/cli/commands/settings/observability/observability_command.py,sha256=TAkpKwoqocsShSgEeR6LzHCzJx16VDQ6cYsbpljxeqI,372
|
65
67
|
ibm_watsonx_orchestrate/cli/commands/settings/observability/langfuse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
66
68
|
ibm_watsonx_orchestrate/cli/commands/settings/observability/langfuse/langfuse_command.py,sha256=Wa0L8E44EdxH9LdOvmnluLk_ApJVfTLauNOC1kV4W8k,6515
|
67
|
-
ibm_watsonx_orchestrate/cli/commands/toolkit/toolkit_command.py,sha256=
|
68
|
-
ibm_watsonx_orchestrate/cli/commands/toolkit/toolkit_controller.py,sha256=
|
69
|
+
ibm_watsonx_orchestrate/cli/commands/toolkit/toolkit_command.py,sha256=ABW_KAxTUbAqLOpZrZz0228oOHBghi2aQU0x3rVrmf4,5679
|
70
|
+
ibm_watsonx_orchestrate/cli/commands/toolkit/toolkit_controller.py,sha256=3lLfu7xlSm2l9zENM4NLxmMy3Im08jQLQBpkuxjUGn0,13027
|
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,17 +82,17 @@ 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=aiJMudRO-42vkHvd63V_pFaLXS0LojL5OO9XAPZHCEI,8276
|
89
93
|
ibm_watsonx_orchestrate/client/connections/utils.py,sha256=f6HsiDI6cycOqfYN6P4uZ3SQds83xlh83zTUioZPeYk,2618
|
90
94
|
ibm_watsonx_orchestrate/client/copilot/cpe/copilot_cpe_client.py,sha256=-grsFXdxY8Cy2DbsWa1Akc93d-TRLJJYCdMDkCfmG3g,2102
|
91
|
-
ibm_watsonx_orchestrate/client/knowledge_bases/knowledge_base_client.py,sha256=
|
95
|
+
ibm_watsonx_orchestrate/client/knowledge_bases/knowledge_base_client.py,sha256=XEsN65Pz3UAc8w_Pbqzhy6qfCyQqqNtT7NnubsA00Mo,2061
|
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
|
94
98
|
ibm_watsonx_orchestrate/client/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -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=wylLRS6iGEfMitfoXuT2tVuSiWej0HLAE5k-6Onl-kI,45671
|
105
|
+
ibm_watsonx_orchestrate/docker/default.env,sha256=3YsCo8vWsI0jte2d86OOWegFB37WGT_xWnRoZjvabfQ,6235
|
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
|
@@ -105,24 +110,24 @@ ibm_watsonx_orchestrate/docker/sdk/ibm_watsonx_orchestrate-0.6.0.tar.gz,sha256=e
|
|
105
110
|
ibm_watsonx_orchestrate/docker/tempus/common-config.yaml,sha256=Zo3F36F5DV4VO_vUg1RG-r4WhcukVh79J2fXhGl6j0A,22
|
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
|
-
ibm_watsonx_orchestrate/flow_builder/node.py,sha256=
|
109
|
-
ibm_watsonx_orchestrate/flow_builder/types.py,sha256=
|
113
|
+
ibm_watsonx_orchestrate/flow_builder/node.py,sha256=2b4BL64tt1isvA5O_uFvXZG5qqvDYrAVSYyeW6wyk0U,6978
|
114
|
+
ibm_watsonx_orchestrate/flow_builder/types.py,sha256=ohtfMFneFtK7KOEEEdYpD5hmiRwfyTnkHLkOr4zNhGs,47611
|
110
115
|
ibm_watsonx_orchestrate/flow_builder/utils.py,sha256=8q1jr5i_TzoJpoQxmLiO0g5Uv03BLbTUaRfw8_0VWIY,11931
|
111
|
-
ibm_watsonx_orchestrate/flow_builder/flows/__init__.py,sha256=
|
116
|
+
ibm_watsonx_orchestrate/flow_builder/flows/__init__.py,sha256=iRYV0_eXgBBGhuNnvg-mUyPUyCIw5BiallPOp27bzYM,1083
|
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=P-MazfKiQr8BLiFAqOxqKlFHM2KyY7Dgp8O6xdCxIjk,60388
|
116
121
|
ibm_watsonx_orchestrate/run/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
117
|
-
ibm_watsonx_orchestrate/run/connections.py,sha256=
|
122
|
+
ibm_watsonx_orchestrate/run/connections.py,sha256=9twXkNeUx83fP_qYUbJRtumE-wzPPNN2v-IY_8hGndM,1820
|
118
123
|
ibm_watsonx_orchestrate/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
119
124
|
ibm_watsonx_orchestrate/utils/exceptions.py,sha256=MjpoGuk7lMziPT2Zo7X-jgGlm0M22mTZF4Y8EHb3KPM,631
|
120
125
|
ibm_watsonx_orchestrate/utils/utils.py,sha256=U7z_2iASoFiZ2zM0a_2Mc2Y-P5oOT7hOwuurzC9Z3N8,721
|
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.0.dist-info/METADATA,sha256=6Gd-MKjRABJ82_XawgrFW8vENdg95kXSBF8VHvDlg9M,1361
|
130
|
+
ibm_watsonx_orchestrate-1.10.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
131
|
+
ibm_watsonx_orchestrate-1.10.0.dist-info/entry_points.txt,sha256=SfIT02-Jen5e99OcLhzbcM9Bdyf8SGVOCtnSplgZdQI,69
|
132
|
+
ibm_watsonx_orchestrate-1.10.0.dist-info/licenses/LICENSE,sha256=Shgxx7hTdCOkiVRmfGgp_1ISISrwQD7m2f0y8Hsapl4,1083
|
133
|
+
ibm_watsonx_orchestrate-1.10.0.dist-info/RECORD,,
|
{ibm_watsonx_orchestrate-1.9.0.dev0.dist-info → ibm_watsonx_orchestrate-1.10.0.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|
File without changes
|