ibm-watsonx-orchestrate 1.11.0b0__py3-none-any.whl → 1.11.1__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 +13 -0
- ibm_watsonx_orchestrate/agent_builder/connections/connections.py +5 -2
- ibm_watsonx_orchestrate/agent_builder/knowledge_bases/types.py +25 -10
- ibm_watsonx_orchestrate/cli/commands/agents/agents_command.py +10 -2
- ibm_watsonx_orchestrate/cli/commands/agents/agents_controller.py +404 -173
- ibm_watsonx_orchestrate/cli/commands/copilot/copilot_controller.py +6 -2
- ibm_watsonx_orchestrate/cli/commands/environment/environment_command.py +6 -2
- ibm_watsonx_orchestrate/cli/commands/environment/environment_controller.py +6 -3
- ibm_watsonx_orchestrate/cli/commands/evaluations/evaluations_command.py +174 -2
- ibm_watsonx_orchestrate/cli/commands/evaluations/evaluations_controller.py +93 -9
- ibm_watsonx_orchestrate/cli/commands/server/types.py +1 -1
- ibm_watsonx_orchestrate/cli/commands/tools/tools_controller.py +8 -5
- ibm_watsonx_orchestrate/cli/config.py +3 -1
- ibm_watsonx_orchestrate/client/base_api_client.py +31 -10
- ibm_watsonx_orchestrate/client/connections/connections_client.py +14 -0
- ibm_watsonx_orchestrate/client/service_instance.py +19 -34
- ibm_watsonx_orchestrate/client/utils.py +3 -1
- ibm_watsonx_orchestrate/docker/compose-lite.yml +12 -11
- ibm_watsonx_orchestrate/docker/default.env +13 -13
- ibm_watsonx_orchestrate/flow_builder/flows/flow.py +3 -1
- ibm_watsonx_orchestrate/flow_builder/types.py +252 -1
- {ibm_watsonx_orchestrate-1.11.0b0.dist-info → ibm_watsonx_orchestrate-1.11.1.dist-info}/METADATA +2 -2
- {ibm_watsonx_orchestrate-1.11.0b0.dist-info → ibm_watsonx_orchestrate-1.11.1.dist-info}/RECORD +27 -27
- {ibm_watsonx_orchestrate-1.11.0b0.dist-info → ibm_watsonx_orchestrate-1.11.1.dist-info}/WHEEL +0 -0
- {ibm_watsonx_orchestrate-1.11.0b0.dist-info → ibm_watsonx_orchestrate-1.11.1.dist-info}/entry_points.txt +0 -0
- {ibm_watsonx_orchestrate-1.11.0b0.dist-info → ibm_watsonx_orchestrate-1.11.1.dist-info}/licenses/LICENSE +0 -0
@@ -66,7 +66,7 @@ def is_ibm_cloud_platform(url:str | None = None) -> bool:
|
|
66
66
|
if url is None:
|
67
67
|
url = get_current_env_url()
|
68
68
|
|
69
|
-
if
|
69
|
+
if ".cloud.ibm.com" in url:
|
70
70
|
return True
|
71
71
|
return False
|
72
72
|
|
@@ -161,6 +161,8 @@ def instantiate_client(client: type[T] , url: str | None=None) -> T:
|
|
161
161
|
client_instance = client(base_url=url, api_key=token, is_local=is_local_dev(url), verify=False)
|
162
162
|
elif verify is not None:
|
163
163
|
client_instance = client(base_url=url, api_key=token, is_local=is_local_dev(url), verify=verify)
|
164
|
+
else:
|
165
|
+
client_instance = client(base_url=url, api_key=token, is_local=is_local_dev(url))
|
164
166
|
else:
|
165
167
|
client_instance = client(base_url=url, api_key=token, is_local=is_local_dev(url))
|
166
168
|
|
@@ -133,7 +133,7 @@ services:
|
|
133
133
|
DOCPROC_ENABLED: ${DOCPROC_ENABLED:-false}
|
134
134
|
IS_OBSERVABILITY_FEATURE_ENABLED: "true"
|
135
135
|
ALLOW_INSECURE_TLS: "true"
|
136
|
-
ENABLE_EDIT_PROMPTS: "
|
136
|
+
ENABLE_EDIT_PROMPTS: "false"
|
137
137
|
LANGFLOW_ENABLED: ${LANGFLOW_ENABLED:-false}
|
138
138
|
command: 'npm start'
|
139
139
|
ports:
|
@@ -378,6 +378,7 @@ services:
|
|
378
378
|
IS_WXO_LITE: "TRUE"
|
379
379
|
TRM_BASE_URL: http://tools-runtime-manager:8080
|
380
380
|
AGENT_STEP_DETAILS: redis://wxo-server-redis:6379/0
|
381
|
+
RECURSION_LIMIT: ${RECURSION_LIMIT}
|
381
382
|
AGENT_GATEWAY_URI: http://wxo-agent-gateway:8989
|
382
383
|
JWT_SECRET: ${JWT_SECRET}
|
383
384
|
POSTGRES_URL: postgresql://${POSTGRES_USER:-postgres}:${POSTGRES_PASSWORD:-postgres}@wxo-server-db:5432/postgres
|
@@ -886,18 +887,18 @@ services:
|
|
886
887
|
PREFLIGHT_MAX_SIZE: 10Mb
|
887
888
|
PREFLIGHT_MAX_PAGES: 600
|
888
889
|
RUNTIME_LIBRARY: "watson_doc_understanding"
|
889
|
-
WXAI_API_KEY: ${WXAI_API_KEY:-}
|
890
|
-
WXAI_IMAGE_DESCRIPTION_MODEL_ID: ${WXAI_IMAGE_DESCRIPTION_MODEL_ID:-mistralai/
|
891
|
-
|
892
|
-
WXAI_KVP_MODEL_ID: ${WXAI_KVP_MODEL_ID:-}
|
893
|
-
|
894
|
-
|
895
|
-
|
896
|
-
|
897
|
-
WXAI_URL: ${WXAI_URL:-}
|
890
|
+
WXAI_API_KEY: ${WXAI_API_KEY:-"gateway"}
|
891
|
+
WXAI_IMAGE_DESCRIPTION_MODEL_ID: ${WXAI_IMAGE_DESCRIPTION_MODEL_ID:-mistralai/mistral-small-3-1-24b-instruct-2503}
|
892
|
+
WXAI_IMAGE_DESCRIPTION_SPACE_ID: ${WATSONX_SPACE_ID:-}
|
893
|
+
WXAI_KVP_MODEL_ID: ${WXAI_KVP_MODEL_ID:-mistralai/mistral-small-3-1-24b-instruct-2503}
|
894
|
+
WXAI_KVP_SPACE_ID: ${WATSONX_SPACE_ID:-}
|
895
|
+
WXAI_SEMANTIC_KVP_MODEL_ID: ${WXAI_SEMANTIC_KVP_MODEL_ID:-mistralai/mistral-small-3-1-24b-instruct-2503}
|
896
|
+
WXAI_SEMANTIC_KVP_SPACE_ID: ${WATSONX_SPACE_ID:-}
|
897
|
+
WXAI_URL: ${AI_GATEWAY_BASE_URL:-}
|
898
898
|
WXAI_USERNAME: ${WXAI_USERNAME:-}
|
899
899
|
WXAI_INSTANCE_ID: ${WXAI_INSTANCE_ID:-}
|
900
|
-
WXAI_VERSION: ${WXAI_VERSION:-
|
900
|
+
WXAI_VERSION: ${WXAI_VERSION:-2023-05-29}
|
901
|
+
WXAI_PROVIDER: ${WXAI_PROVIDER:-gateway}
|
901
902
|
|
902
903
|
profiles:
|
903
904
|
- docproc
|
@@ -36,7 +36,7 @@ DB_ENCRYPTION_KEY=dummy_db_encryption_key
|
|
36
36
|
BASE_URL=dummy_base_url
|
37
37
|
SERVER_TYPE=CELERY
|
38
38
|
SQLALCHEMY_DEBUG=false
|
39
|
-
|
39
|
+
RECURSION_LIMIT=50
|
40
40
|
LANGFUSE_HOST=http://host.docker.internal:3010
|
41
41
|
LANGFUSE_EMAIL=orchestrate@ibm.com
|
42
42
|
LANGFUSE_USERNAME=orchestrate
|
@@ -58,10 +58,10 @@ REGISTRY_URL=
|
|
58
58
|
|
59
59
|
|
60
60
|
|
61
|
-
SERVER_TAG=
|
61
|
+
SERVER_TAG=09-09-2025-cff47f4
|
62
62
|
SERVER_REGISTRY=
|
63
63
|
|
64
|
-
WORKER_TAG=
|
64
|
+
WORKER_TAG=09-09-2025-cff47f4
|
65
65
|
WORKER_REGISTRY=
|
66
66
|
|
67
67
|
AI_GATEWAY_TAG=20-08-2025-9ed6d40
|
@@ -73,9 +73,9 @@ AGENT_GATEWAY_REGISTRY=
|
|
73
73
|
DB_REGISTRY=
|
74
74
|
# If you build multiarch set all three of these to the same, we have a pr against main
|
75
75
|
# to not have this separation, but we can merge it later
|
76
|
-
DBTAG=
|
77
|
-
AMDDBTAG=
|
78
|
-
ARM64DBTAG=
|
76
|
+
DBTAG=04-09-2025-48c39
|
77
|
+
AMDDBTAG=04-09-2025-48c39
|
78
|
+
ARM64DBTAG=04-09-2025-48c39
|
79
79
|
|
80
80
|
UI_REGISTRY=
|
81
81
|
UITAG=29-08-2025
|
@@ -92,7 +92,7 @@ TR_REGISTRY=
|
|
92
92
|
BUILDER_TAG=27-08-2025-7432aca
|
93
93
|
BUILDER_REGISTRY=
|
94
94
|
|
95
|
-
FLOW_RUNTIME_TAG=
|
95
|
+
FLOW_RUNTIME_TAG=01-09-2025-8e6fcfc
|
96
96
|
FLOW_RUMTIME_REGISTRY=
|
97
97
|
|
98
98
|
|
@@ -105,7 +105,7 @@ JAEGER_PROXY_REGISTRY=
|
|
105
105
|
SOCKET_HANDLER_TAG=29-05-2025
|
106
106
|
SOCKET_HANDLER_REGISTRY=
|
107
107
|
|
108
|
-
CPE_TAG=
|
108
|
+
CPE_TAG=29-08-2025-e612bea
|
109
109
|
CPE_REGISTRY=
|
110
110
|
|
111
111
|
VOICE_CONTROLLER_TAG=12-08-2025
|
@@ -115,13 +115,13 @@ LANGFLOW_TAG=
|
|
115
115
|
LANGFLOW_IMAGE=
|
116
116
|
|
117
117
|
# IBM Document Processing
|
118
|
-
WDU_TAG=2.
|
118
|
+
WDU_TAG=2.7.0
|
119
119
|
WDU_REGISTRY=
|
120
120
|
|
121
|
-
DOCPROC_DPS_TAG=
|
122
|
-
DOCPROC_LLMSERVICE_TAG=
|
123
|
-
DOCPROC_CACHE_TAG=
|
124
|
-
DOCPROC_DPI_TAG=
|
121
|
+
DOCPROC_DPS_TAG=20250904-181617-287-1ca2bf1
|
122
|
+
DOCPROC_LLMSERVICE_TAG=20250904-main-136-b94360e
|
123
|
+
DOCPROC_CACHE_TAG=20250902-master-83-748d456
|
124
|
+
DOCPROC_DPI_TAG=20250905-092707-286-8c6b8f92
|
125
125
|
DOCPROC_REGISTRY=
|
126
126
|
|
127
127
|
# END -- IMAGE REGISTRIES AND TAGS
|
@@ -440,7 +440,7 @@ class Flow(Node):
|
|
440
440
|
node = self._add_node(node)
|
441
441
|
return cast(PromptNode, node)
|
442
442
|
|
443
|
-
def
|
443
|
+
def docclassifier(self,
|
444
444
|
name: str,
|
445
445
|
llm : str = "watsonx/meta-llama/llama-3-2-90b-vision-instruct",
|
446
446
|
version: str = "TIP",
|
@@ -607,6 +607,7 @@ class Flow(Node):
|
|
607
607
|
display_name: str|None=None,
|
608
608
|
description: str | None = None,
|
609
609
|
input_map: DataMap = None,
|
610
|
+
document_structure: bool = False,
|
610
611
|
kvp_schemas: list[DocProcKVPSchema] = None,
|
611
612
|
enable_hw: bool = False) -> DocProcNode:
|
612
613
|
|
@@ -631,6 +632,7 @@ class Flow(Node):
|
|
631
632
|
output_schema=_get_tool_response_body(output_schema_obj),
|
632
633
|
output_schema_object = output_schema_obj,
|
633
634
|
task=task,
|
635
|
+
document_structure=document_structure,
|
634
636
|
plain_text_reading_order=plain_text_reading_order,
|
635
637
|
enable_hw=enable_hw,
|
636
638
|
kvp_schemas=kvp_schemas
|
@@ -338,13 +338,15 @@ class DocProcSpec(DocProcCommonNodeSpec):
|
|
338
338
|
description="Optional list of key-value pair schemas to use for extraction.",
|
339
339
|
default=None)
|
340
340
|
plain_text_reading_order : PlainTextReadingOrder = Field(default=PlainTextReadingOrder.block_structure)
|
341
|
-
|
341
|
+
document_structure: bool = Field(default=False,description="Requests the entire document structure computed by WDU to be returned")
|
342
|
+
|
342
343
|
def __init__(self, **data):
|
343
344
|
super().__init__(**data)
|
344
345
|
self.kind = "docproc"
|
345
346
|
|
346
347
|
def to_json(self) -> dict[str, Any]:
|
347
348
|
model_spec = super().to_json()
|
349
|
+
model_spec["document_structure"] = self.document_structure
|
348
350
|
model_spec["task"] = self.task
|
349
351
|
if self.plain_text_reading_order != PlainTextReadingOrder.block_structure:
|
350
352
|
model_spec["plain_text_reading_order"] = self.plain_text_reading_order
|
@@ -1000,6 +1002,255 @@ class Assignment(BaseModel):
|
|
1000
1002
|
default_value: Any | None = None
|
1001
1003
|
metadata: dict = Field(default_factory=dict[str, Any])
|
1002
1004
|
|
1005
|
+
class Style(BaseModel):
|
1006
|
+
style_id: str = Field(default="", description="Style Identifier which will be used for reference in other objects")
|
1007
|
+
font_size: str = Field(default="", description="Font size")
|
1008
|
+
font_name: str = Field(default="", description="Font name")
|
1009
|
+
is_bold: str = Field(default="", description="Whether or not the the font is bold")
|
1010
|
+
is_italic: str = Field(default="", description="Whether or not the the font is italic")
|
1011
|
+
|
1012
|
+
class PageMetadata(BaseModel):
|
1013
|
+
page_number: Optional[int] = Field(default=None, description="Page number, starting from 1")
|
1014
|
+
page_image_width: Optional[int] = Field(default=None, description="Width of the page in pixels, assuming the page is an image with default 72 DPI")
|
1015
|
+
page_image_height: Optional[int] = Field(default=None, description="Height of the page in pixels, assuming the page is an image with default 72 DPI")
|
1016
|
+
dpi: Optional[int] = Field(default=None, description="The DPI to use for the page image, as specified in the input to the API")
|
1017
|
+
document_type: Optional[str] = Field(default="", description="Document type")
|
1018
|
+
|
1019
|
+
class Metadata(BaseModel):
|
1020
|
+
num_pages: int = Field(description="Total number of pages in the document")
|
1021
|
+
title: Optional[str] = Field(default=None, description="Document title as obtained from source document")
|
1022
|
+
language: Optional[str] = Field(default=None, description="Determined by the lang specifier in the <html> tag, or <meta> tag")
|
1023
|
+
url: Optional[str] = Field(default=None, description="URL of the document")
|
1024
|
+
keywords: Optional[str] = Field(default=None, description="Keywords associated with document")
|
1025
|
+
author: Optional[str] = Field(default=None, description="Author of the document")
|
1026
|
+
publication_date: Optional[str] = Field(default=None, description="Best effort bases for a publication date (may be the creation date)")
|
1027
|
+
subject: Optional[str] = Field(default=None, description="Subject as obtained from the source document")
|
1028
|
+
charset: str = Field(default="", description="Character set used for the output")
|
1029
|
+
output_tokens_flag: Optional[bool] = Field(default=None, description="Whether individual tokens are output, as specified in the input to the API")
|
1030
|
+
output_bounding_boxes_flag: Optional[bool] = Field(default=None, description="Whether bounding boxes are output, as requested in the input to the API")
|
1031
|
+
pages_metadata: Optional[List[PageMetadata]] = Field(default=[], description="List of page-level metadata objects")
|
1032
|
+
|
1033
|
+
class Section(BaseModel):
|
1034
|
+
id: str = Field(default="", description="Unique identifier for the section")
|
1035
|
+
parent_id: str = Field(default="", description="Unique identifier which denotes parent of this structure")
|
1036
|
+
children_ids: List[str] = Field(default="", description="Unique Ids of first level children structures under this structure in correct sequence")
|
1037
|
+
section_number: str = Field(default="", description="Section identifier identified in the document")
|
1038
|
+
section_level: str = Field(default="", description="Nesting level of section identified in the document")
|
1039
|
+
bbox_list: Optional[List[DocProcBoundingBox]] = Field(default=None, description="Cross-pages bounding boxes of that section")
|
1040
|
+
|
1041
|
+
|
1042
|
+
class SectionTitle(BaseModel):
|
1043
|
+
id: str = Field(default="", description="Unique identifier for the section")
|
1044
|
+
parent_id: str = Field(default="", description="Unique identifier which denotes parent of this structure")
|
1045
|
+
children_ids: Optional[List[str]] = Field(default=None, description="Unique Ids of first level children structures under this structure in correct sequence")
|
1046
|
+
text_alignment: Optional[str] = Field(default="", description="Text alignment of the section title")
|
1047
|
+
text: str = Field(default="", description="Text property added to all objects")
|
1048
|
+
bbox: Optional[DocProcBoundingBox] = Field(default=None, description="The bounding box of the section title")
|
1049
|
+
|
1050
|
+
class List_(BaseModel):
|
1051
|
+
id: str = Field(..., description="Unique identifier for the list")
|
1052
|
+
title: Optional[str] = Field(None, description="List title")
|
1053
|
+
parent_id: str = Field(..., description="Unique identifier which denotes parent of this structure")
|
1054
|
+
children_ids: List[str] = Field(..., description="Unique Ids of first level children structures under this structure in correct sequence")
|
1055
|
+
bbox_list: Optional[List[DocProcBoundingBox]] = Field(None, description="Cross-pages bounding boxes of that table")
|
1056
|
+
|
1057
|
+
|
1058
|
+
class ListItem(BaseModel):
|
1059
|
+
id: str = Field(..., description="Unique identifier for the list item")
|
1060
|
+
parent_id: str = Field(..., description="Unique identifier which denotes parent of this structure")
|
1061
|
+
children_ids: Optional[List[str]] = Field(None, description="Unique Ids of first level children structures under this structure in correct sequence")
|
1062
|
+
text: str = Field(..., description="Text property added to all objects")
|
1063
|
+
bbox: Optional[DocProcBoundingBox] = Field(None, description="The bounding box of the list item")
|
1064
|
+
|
1065
|
+
|
1066
|
+
class ListIdentifier(BaseModel):
|
1067
|
+
id: str = Field(..., description="Unique identifier for the list item")
|
1068
|
+
parent_id: str = Field(..., description="Unique identifier which denotes parent of this structure")
|
1069
|
+
children_ids: List[str] = Field(..., description="Unique Ids of first level children structures under this structure in correct sequence")
|
1070
|
+
|
1071
|
+
class Table(BaseModel):
|
1072
|
+
id: str = Field(..., description="Unique identifier for the table")
|
1073
|
+
parent_id: str = Field(..., description="Unique identifier which denotes parent of this structure")
|
1074
|
+
children_ids: List[str] = Field(..., description="Unique Ids of first level children structures under this structure in correct sequence, in this case, table rows")
|
1075
|
+
bbox_list: Optional[List[DocProcBoundingBox]] = Field(None, description="Cross-pages bounding boxes of that table")
|
1076
|
+
|
1077
|
+
|
1078
|
+
class TableRow(BaseModel):
|
1079
|
+
id: str = Field(..., description="Unique identifier for the table row")
|
1080
|
+
parent_id: str = Field(..., description="Unique identifier which denotes parent of this structure")
|
1081
|
+
children_ids: List[str] = Field(..., description="Unique Ids of first level children structures under this structure in correct sequence, in this case, table cells")
|
1082
|
+
bbox: Optional[DocProcBoundingBox] = Field(None, description="The bounding box of the table row")
|
1083
|
+
|
1084
|
+
|
1085
|
+
class TableCell(BaseModel):
|
1086
|
+
id: str = Field(..., description="Unique identifier for the table cell")
|
1087
|
+
parent_id: str = Field(..., description="Unique identifier which denotes parent of this structure")
|
1088
|
+
is_row_header: bool = Field(..., description="Whether the cell is part of row header or not")
|
1089
|
+
is_col_header: bool = Field(..., description="Whether the cell is part of column header or not")
|
1090
|
+
col_span: int = Field(..., description="Column span of the cell")
|
1091
|
+
row_span: int = Field(..., description="Row span of the cell")
|
1092
|
+
col_start: int = Field(..., description="Column start of the cell within the table")
|
1093
|
+
row_start: int = Field(..., description="Row start of the cell within the table")
|
1094
|
+
children_ids: Optional[List[str]] = Field(None, description="Children structures, e.g., paragraphs")
|
1095
|
+
text: str = Field(..., description="Text property added to all objects")
|
1096
|
+
bbox: Optional[DocProcBoundingBox] = Field(None, description="The bounding box of the table cell")
|
1097
|
+
|
1098
|
+
class Subscript(BaseModel):
|
1099
|
+
id: str = Field(..., description="Unique identifier for the subscript")
|
1100
|
+
parent_id: str = Field(..., description="Unique identifier which denotes parent of this structure")
|
1101
|
+
children_ids: List[str] = Field(default_factory=list, description="Unique Ids of first level children structures under this structure in correct sequence")
|
1102
|
+
token_id_ref: Optional[str] = Field(None, description="Id of the token to which the subscript belongs")
|
1103
|
+
text: str = Field(..., description="Text property added to all objects")
|
1104
|
+
|
1105
|
+
|
1106
|
+
class Superscript(BaseModel):
|
1107
|
+
id: str = Field(..., description="Unique identifier for the superscript")
|
1108
|
+
parent_id: str = Field(..., description="Unique identifier which denotes parent of this structure")
|
1109
|
+
footnote_ref: str = Field(..., description="Matching footnote id found on the page")
|
1110
|
+
token_id_ref: Optional[str] = Field(None, description="Id of the token to which the superscript belongs")
|
1111
|
+
children_ids: List[str] = Field(default_factory=list, description="Unique Ids of first level children structures under this structure in correct sequence")
|
1112
|
+
text: str = Field(..., description="Text property added to all objects")
|
1113
|
+
|
1114
|
+
|
1115
|
+
class Footnote(BaseModel):
|
1116
|
+
id: str = Field(..., description="Unique identifier for the footnote")
|
1117
|
+
parent_id: str = Field(..., description="Unique identifier which denotes parent of this structure")
|
1118
|
+
children_ids: List[str] = Field(default_factory=list, description="Unique Ids of first level children structures under this structure in correct sequence")
|
1119
|
+
text: str = Field(..., description="Text property added to all objects")
|
1120
|
+
|
1121
|
+
|
1122
|
+
class Paragraph(BaseModel):
|
1123
|
+
id: str = Field(..., description="Unique identifier for the paragraph")
|
1124
|
+
parent_id: str = Field(..., description="Unique identifier which denotes parent of this structure")
|
1125
|
+
children_ids: List[str] = Field(default_factory=list, description="Unique Ids of first level children structures under this structure in correct sequence, in this case, tokens")
|
1126
|
+
text_alignment: Optional[str] = Field(None, description="Text alignment of the paragraph")
|
1127
|
+
indentation: Optional[int] = Field(None, description="Paragraph indentation")
|
1128
|
+
text: str = Field(..., description="Text property added to all objects")
|
1129
|
+
bbox_list: Optional[DocProcBoundingBox] = Field(default=None, description="Cross-pages bounding boxes of that Paragraph")
|
1130
|
+
|
1131
|
+
|
1132
|
+
class CodeSnippet(BaseModel):
|
1133
|
+
id: str = Field(..., description="Unique identifier for the code snippet")
|
1134
|
+
parent_id: str = Field(..., description="Unique identifier which denotes parent of this structure")
|
1135
|
+
children_ids: List[str] = Field(default_factory=list, description="Unique Ids of first level children structures under this structure in correct sequence, in this case, tokens")
|
1136
|
+
text: str = Field(..., description="Text of the code snippet. It can contain multiple lines, including empty lines or lines with leading spaces.")
|
1137
|
+
|
1138
|
+
|
1139
|
+
class Picture(BaseModel):
|
1140
|
+
id: str = Field(..., description="Unique identifier for the picture")
|
1141
|
+
parent_id: str = Field(..., description="Unique identifier which denotes parent of this structure")
|
1142
|
+
children_ids: List[str] = Field(default_factory=list, description="Unique identifiers of the tokens extracted from this picture, if any")
|
1143
|
+
text: Optional[str] = Field(None, description="Text extracted from this picture")
|
1144
|
+
verbalization: Optional[str] = Field(None, description="Verbalization of this picture")
|
1145
|
+
path: Optional[str] = Field(None, description="Path in the output location where the picture itself was saved")
|
1146
|
+
picture_class: Optional[str] = Field(None, description="The classification result of the picture")
|
1147
|
+
bbox: Optional[DocProcBoundingBox] = Field(None, description="The bounding box of the picture in the context of the page, expressed as pixel coordinates with respect to pages_metadata.page_image_height and pages_metadata.page_image_width")
|
1148
|
+
|
1149
|
+
|
1150
|
+
class PageHeader(BaseModel):
|
1151
|
+
id: str = Field(..., description="Unique identifier for the page header")
|
1152
|
+
parent_id: str = Field(..., description="Unique identifier which denotes parent of this structure")
|
1153
|
+
text: Optional[str] = Field(None, description="The page header text")
|
1154
|
+
bbox: Optional[DocProcBoundingBox] = Field(None, description="The bounding box of the page header")
|
1155
|
+
children_ids: List[str] = Field(default_factory=list, description="Unique Ids of first level children structures under this structure in correct sequence, in this case, tokens")
|
1156
|
+
|
1157
|
+
|
1158
|
+
class PageFooter(BaseModel):
|
1159
|
+
id: str = Field(..., description="Unique identifier for the page footer")
|
1160
|
+
parent_id: str = Field(..., description="Unique identifier which denotes parent of this structure")
|
1161
|
+
text: Optional[str] = Field(None, description="The page footer text")
|
1162
|
+
bbox: Optional[DocProcBoundingBox] = Field(None, description="The bounding box of the page footer")
|
1163
|
+
children_ids: List[str] = Field(default_factory=list, description="Unique Ids of first level children structures under this structure in correct sequence, in this case, tokens")
|
1164
|
+
|
1165
|
+
|
1166
|
+
class BarCode(BaseModel):
|
1167
|
+
id: str = Field(..., description="Unique identifier for the bar code")
|
1168
|
+
parent_id: str = Field(..., description="Unique identifier which denotes parent of this structure")
|
1169
|
+
text: Optional[str] = Field(None, description="The value of the bar code")
|
1170
|
+
format: Optional[str] = Field(None, description="The format of the bar code")
|
1171
|
+
path: Optional[str] = Field(None, description="Path in the output location where the var code picture is saved")
|
1172
|
+
bbox: Optional[DocProcBoundingBox] = Field(None, description="The bounding box of the bar code in the context of the page, expressed as pixel coordinates with respect to pages_metadata.page_image_height and pages_metadata.page_image_width")
|
1173
|
+
|
1174
|
+
|
1175
|
+
class QRCode(BaseModel):
|
1176
|
+
id: str = Field(..., description="Unique identifier for the QR code")
|
1177
|
+
parent_id: str = Field(..., description="Unique identifier which denotes parent of this structure")
|
1178
|
+
text: Optional[str] = Field(None, description="The value of the QR code")
|
1179
|
+
path: Optional[str] = Field(None, description="Path in the output location where the var code picture is saved")
|
1180
|
+
bbox: Optional[DocProcBoundingBox] = Field(None, description="The bounding box of the bar code in the context of the page, expressed as pixel coordinates with respect to pages_metadata.page_image_height and pages_metadata.page_image_width")
|
1181
|
+
|
1182
|
+
|
1183
|
+
class Token(BaseModel):
|
1184
|
+
id: str = Field(..., description="Unique identifier for the list identifier")
|
1185
|
+
parent_id: Optional[str] = Field(None, description="Unique identifier which denotes parent of this structure")
|
1186
|
+
style_id: Optional[str] = Field(None, description="Identifier of the style object associated with this token")
|
1187
|
+
text: str = Field(..., description="Actual text of the token")
|
1188
|
+
bbox: Optional[DocProcBoundingBox] = Field(None, description="The bounding box of the token in the context of the page, expressed as pixel coordinates with respect to pages_metadata.page_image_height and pages_metadata.page_image_width")
|
1189
|
+
confidence: Optional[float] = Field(None, description="Confidence score for the token")
|
1190
|
+
|
1191
|
+
class Structures(BaseModel):
|
1192
|
+
sections: Optional[List[Section]] = Field(
|
1193
|
+
default=None, description="All Section objects found in the document"
|
1194
|
+
)
|
1195
|
+
section_titles: Optional[List[SectionTitle]] = Field(
|
1196
|
+
default=None, description="All SectionTitle objects found in the document"
|
1197
|
+
)
|
1198
|
+
lists: Optional[List[List_]] = Field(
|
1199
|
+
default=None, description="All List objects found in the document"
|
1200
|
+
)
|
1201
|
+
list_items: Optional[List[ListItem]] = Field(
|
1202
|
+
default=None, description="All ListItem objects found in the document"
|
1203
|
+
)
|
1204
|
+
list_identifiers: Optional[List[ListIdentifier]] = Field(
|
1205
|
+
default=None, description="All ListIdentifier objects found in the document"
|
1206
|
+
)
|
1207
|
+
tables: Optional[List[Table]] = Field(
|
1208
|
+
default=None, description="All Table objects found in the document"
|
1209
|
+
)
|
1210
|
+
table_rows: Optional[List[TableRow]] = Field(
|
1211
|
+
default=None, description="All TableRow objects found in the document"
|
1212
|
+
)
|
1213
|
+
table_cells: Optional[List[TableCell]] = Field(
|
1214
|
+
default=None, description="All TableCell objects found in the document"
|
1215
|
+
)
|
1216
|
+
subscripts: Optional[List[Subscript]] = Field(
|
1217
|
+
default=None, description="All Subscript objects found in the document"
|
1218
|
+
)
|
1219
|
+
superscripts: Optional[List[Superscript]] = Field(
|
1220
|
+
default=None, description="All Superscript objects found in the document"
|
1221
|
+
)
|
1222
|
+
footnotes: Optional[List[Footnote]] = Field(
|
1223
|
+
default=None, description="All Footnote objects found in the document"
|
1224
|
+
)
|
1225
|
+
paragraphs: Optional[List[Paragraph]] = Field(
|
1226
|
+
default=None, description="All Paragraph objects found in the document"
|
1227
|
+
)
|
1228
|
+
code_snippets: Optional[List[CodeSnippet]] = Field(
|
1229
|
+
default=None, description="All CodeSnippet objects found in the document"
|
1230
|
+
)
|
1231
|
+
pictures: Optional[List[Picture]] = Field(
|
1232
|
+
default=None, description="All Picture objects found in the document"
|
1233
|
+
)
|
1234
|
+
page_headers: Optional[List[PageHeader]] = Field(
|
1235
|
+
default=None, description="All PageHeader objects found in the document"
|
1236
|
+
)
|
1237
|
+
page_footers: Optional[List[PageFooter]] = Field(
|
1238
|
+
default=None, description="All PageFooter objects found in the document"
|
1239
|
+
)
|
1240
|
+
bar_codes: Optional[List[BarCode]] = Field(
|
1241
|
+
default=None, description="All BarCode objects found in the document"
|
1242
|
+
)
|
1243
|
+
tokens: Optional[List[Token]] = Field(
|
1244
|
+
default=None, description="All Token objects found in the document"
|
1245
|
+
)
|
1246
|
+
|
1247
|
+
class AssemblyJsonOutput(BaseModel):
|
1248
|
+
metadata: Metadata = Field(description="Metadata about this document")
|
1249
|
+
styles: Optional[List[Style]] = Field(description="Font styles used in this document")
|
1250
|
+
kvps: Optional[DocProcKVP] = Field(description="Key value pairs found in the document")
|
1251
|
+
top_level_structures: List[str] = Field(default=[], description="Array of ids of the top level structures which belong directly under the document")
|
1252
|
+
all_structures: Structures = Field(default=None, description="An object containing of all flattened structures identified in the document")
|
1253
|
+
|
1003
1254
|
class LanguageCode(StrEnum):
|
1004
1255
|
'''
|
1005
1256
|
The ISO-639 language codes understood by Document Processing functions.
|
{ibm_watsonx_orchestrate-1.11.0b0.dist-info → ibm_watsonx_orchestrate-1.11.1.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: ibm-watsonx-orchestrate
|
3
|
-
Version: 1.11.
|
3
|
+
Version: 1.11.1
|
4
4
|
Summary: IBM watsonx.orchestrate SDK
|
5
5
|
Author-email: IBM <support@ibm.com>
|
6
6
|
License: MIT License
|
@@ -11,7 +11,7 @@ Requires-Dist: click<8.2.0,>=8.0.0
|
|
11
11
|
Requires-Dist: docstring-parser<1.0,>=0.16
|
12
12
|
Requires-Dist: httpx<1.0.0,>=0.28.1
|
13
13
|
Requires-Dist: ibm-cloud-sdk-core>=3.24.2
|
14
|
-
Requires-Dist: ibm-watsonx-orchestrate-evaluation-framework==1.
|
14
|
+
Requires-Dist: ibm-watsonx-orchestrate-evaluation-framework==1.1.1
|
15
15
|
Requires-Dist: jsonref==1.1.0
|
16
16
|
Requires-Dist: langchain-core<=0.3.63
|
17
17
|
Requires-Dist: langsmith<=0.3.45
|
{ibm_watsonx_orchestrate-1.11.0b0.dist-info → ibm_watsonx_orchestrate-1.11.1.dist-info}/RECORD
RENAMED
@@ -1,19 +1,19 @@
|
|
1
|
-
ibm_watsonx_orchestrate/__init__.py,sha256=
|
1
|
+
ibm_watsonx_orchestrate/__init__.py,sha256=RZg05Fxrom0GlckGTQgKX2HWvXKyBLcMXlhkfC5eYH8,426
|
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=02HUrEh-v9-iuljPbZKhfxX2rXR4SvltOzV91jvM-1Q,13957
|
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
11
|
ibm_watsonx_orchestrate/agent_builder/connections/__init__.py,sha256=B9FwmBbdJxFj3KmJ87Fc78TbzxOr1MIVhaHPJePOGSQ,716
|
12
|
-
ibm_watsonx_orchestrate/agent_builder/connections/connections.py,sha256=
|
12
|
+
ibm_watsonx_orchestrate/agent_builder/connections/connections.py,sha256=ozRTZ1Y10YbipE6oegI8QIP31fWqUaBUFoHAo-WTY3g,5547
|
13
13
|
ibm_watsonx_orchestrate/agent_builder/connections/types.py,sha256=cfM2L4VscC-0muDwqq5EhCKKQxwWyHmA-rQBE9LE7r0,11244
|
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=4gvzIwSxO9Py4hCZJRs7zOsPusXRcFswqjDGYyqbiXQ,8994
|
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
|
@@ -30,12 +30,12 @@ ibm_watsonx_orchestrate/agent_builder/utils/__init__.py,sha256=47DEQpj8HBSa-_TIm
|
|
30
30
|
ibm_watsonx_orchestrate/agent_builder/voice_configurations/__init__.py,sha256=W3-T8PH_KuONsCQPILQAvW2Nz25p7dp9AZbWHWGJXhA,37
|
31
31
|
ibm_watsonx_orchestrate/agent_builder/voice_configurations/types.py,sha256=lSS1yiDzVAMkEdOwcI4_1DUuRnu_6oc8XupQtoE4Fvs,3989
|
32
32
|
ibm_watsonx_orchestrate/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
33
|
-
ibm_watsonx_orchestrate/cli/config.py,sha256=
|
33
|
+
ibm_watsonx_orchestrate/cli/config.py,sha256=ZcuOhd-zXZQ6N0yMM3DLpz9SKHywiB1djk6SrAqGDOk,8435
|
34
34
|
ibm_watsonx_orchestrate/cli/init_helper.py,sha256=qxnKdFcPtGsV_6RqP_IuLshRxgB004SxzDAkBTExA-4,1675
|
35
35
|
ibm_watsonx_orchestrate/cli/main.py,sha256=Jrp0d40-RAtpzsGnf45dpPxJi3d7snod5BCnFMh4foU,3384
|
36
36
|
ibm_watsonx_orchestrate/cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
37
|
-
ibm_watsonx_orchestrate/cli/commands/agents/agents_command.py,sha256=
|
38
|
-
ibm_watsonx_orchestrate/cli/commands/agents/agents_controller.py,sha256=
|
37
|
+
ibm_watsonx_orchestrate/cli/commands/agents/agents_command.py,sha256=mWVojmtxslXL-eGMs7NUNBV_DudmQKeNnTaE9V9jjfU,9832
|
38
|
+
ibm_watsonx_orchestrate/cli/commands/agents/agents_controller.py,sha256=ZawqJS6qF82IKIFAx0xJbQsAfYSHM-6UBdNtbXU7quk,65618
|
39
39
|
ibm_watsonx_orchestrate/cli/commands/channels/channels_command.py,sha256=fVIFhPUTPdxsxIE10nWL-W5wvBR-BS8V8D6r__J8R98,822
|
40
40
|
ibm_watsonx_orchestrate/cli/commands/channels/channels_controller.py,sha256=WjQxwJujvo28SsWgfJSXIpkcgniKcskJ2arL4MOz0Ys,455
|
41
41
|
ibm_watsonx_orchestrate/cli/commands/channels/types.py,sha256=hMFvWPr7tAmDrhBqtzfkCsrubX3lsU6lapTSOFsUbHM,475
|
@@ -45,13 +45,13 @@ ibm_watsonx_orchestrate/cli/commands/chat/chat_command.py,sha256=Q9vg2Z5Fsunu6GQ
|
|
45
45
|
ibm_watsonx_orchestrate/cli/commands/connections/connections_command.py,sha256=lwPhDPemDvFU-j7QUj8E07hsnzLBUJDNcyhQDzxs3S8,12442
|
46
46
|
ibm_watsonx_orchestrate/cli/commands/connections/connections_controller.py,sha256=_i1gaR2Nuy9gPLJZTJWoVnRvg9vKcwyg2UoiK5Azsw4,26390
|
47
47
|
ibm_watsonx_orchestrate/cli/commands/copilot/copilot_command.py,sha256=IxasApIyQYWRMKPXKa38ZPVkUvOc4chggSmSGjgQGXc,2345
|
48
|
-
ibm_watsonx_orchestrate/cli/commands/copilot/copilot_controller.py,sha256=
|
48
|
+
ibm_watsonx_orchestrate/cli/commands/copilot/copilot_controller.py,sha256=9n4tIf4W9FkuNIMhGQ-i0OpdH-jZF1pxjg8Kk9yKcus,19144
|
49
49
|
ibm_watsonx_orchestrate/cli/commands/copilot/copilot_server_controller.py,sha256=AcBE97qNYsRN0ftY_E-AAjKFyVea4fHtU5eB2HsB42I,5619
|
50
|
-
ibm_watsonx_orchestrate/cli/commands/environment/environment_command.py,sha256=
|
51
|
-
ibm_watsonx_orchestrate/cli/commands/environment/environment_controller.py,sha256=
|
50
|
+
ibm_watsonx_orchestrate/cli/commands/environment/environment_command.py,sha256=1CO0UfxSem0NafNGNCBXswC-P93MVYIA-YJewjKgdNc,4186
|
51
|
+
ibm_watsonx_orchestrate/cli/commands/environment/environment_controller.py,sha256=z3m4khZfHNpv1dRsDfRW0cteLvhAeDEbxh-fOZduSpQ,10479
|
52
52
|
ibm_watsonx_orchestrate/cli/commands/environment/types.py,sha256=X6jEnyBdxakromA7FhQ5btZMj9kwGcwRSFz8vpD65jA,224
|
53
|
-
ibm_watsonx_orchestrate/cli/commands/evaluations/evaluations_command.py,sha256=
|
54
|
-
ibm_watsonx_orchestrate/cli/commands/evaluations/evaluations_controller.py,sha256=
|
53
|
+
ibm_watsonx_orchestrate/cli/commands/evaluations/evaluations_command.py,sha256=IkEEkpFB9kD6MDLeItoJbQzfmSWuEVOkZ42Ddjt9bKI,19750
|
54
|
+
ibm_watsonx_orchestrate/cli/commands/evaluations/evaluations_controller.py,sha256=c4dw2ckiO689Zh9jXkrQe4GisJStEhAZoTBbdlOzRyE,11315
|
55
55
|
ibm_watsonx_orchestrate/cli/commands/knowledge_bases/knowledge_bases_command.py,sha256=hOzRcGVoqq7dTc4bSregKxH-kYbrVqaFdhBLawqnRNo,2668
|
56
56
|
ibm_watsonx_orchestrate/cli/commands/knowledge_bases/knowledge_bases_controller.py,sha256=d9RSBy2S2nn8vWrghovGb1owe7Zu8LywOm0nIdzlXiU,11567
|
57
57
|
ibm_watsonx_orchestrate/cli/commands/login/login_command.py,sha256=xArMiojoozg7Exn6HTpbTcjDO2idZRA-y0WV-_Ic1Sk,651
|
@@ -59,7 +59,7 @@ ibm_watsonx_orchestrate/cli/commands/models/model_provider_mapper.py,sha256=mbvB
|
|
59
59
|
ibm_watsonx_orchestrate/cli/commands/models/models_command.py,sha256=PW-PIM5Nq0qdCopWjANGBWEuEoA3NLTFThYrN8ggGCI,6425
|
60
60
|
ibm_watsonx_orchestrate/cli/commands/models/models_controller.py,sha256=eZSYQUg9TL_-8lgcPVpKIx7MtOE7K_NCvZW9Y9YsFA0,18466
|
61
61
|
ibm_watsonx_orchestrate/cli/commands/server/server_command.py,sha256=cMy_GGYXbug5A6IGoddUzBUCmunySCI8BC-ebRL6p4A,46489
|
62
|
-
ibm_watsonx_orchestrate/cli/commands/server/types.py,sha256=
|
62
|
+
ibm_watsonx_orchestrate/cli/commands/server/types.py,sha256=DGLopPbLFf5yH5-hzsFf5Uaw158QHwkTAcwydbUmZ3Q,4416
|
63
63
|
ibm_watsonx_orchestrate/cli/commands/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
64
64
|
ibm_watsonx_orchestrate/cli/commands/settings/settings_command.py,sha256=CzXRkd-97jXyS6LtaaNtMah-aZu0919dYl-mDwzGThc,344
|
65
65
|
ibm_watsonx_orchestrate/cli/commands/settings/observability/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -69,19 +69,19 @@ ibm_watsonx_orchestrate/cli/commands/settings/observability/langfuse/langfuse_co
|
|
69
69
|
ibm_watsonx_orchestrate/cli/commands/toolkit/toolkit_command.py,sha256=ABW_KAxTUbAqLOpZrZz0228oOHBghi2aQU0x3rVrmf4,5679
|
70
70
|
ibm_watsonx_orchestrate/cli/commands/toolkit/toolkit_controller.py,sha256=3lLfu7xlSm2l9zENM4NLxmMy3Im08jQLQBpkuxjUGn0,13027
|
71
71
|
ibm_watsonx_orchestrate/cli/commands/tools/tools_command.py,sha256=Cuo1ZvlfsymojqbadCqdwwS0HUjaWpe2XQrV70g61_s,3943
|
72
|
-
ibm_watsonx_orchestrate/cli/commands/tools/tools_controller.py,sha256=
|
72
|
+
ibm_watsonx_orchestrate/cli/commands/tools/tools_controller.py,sha256=IquSZwQbupYrOX2-1c5hWofV2mOlGM68mxNzxgVSvrs,41153
|
73
73
|
ibm_watsonx_orchestrate/cli/commands/tools/types.py,sha256=_md0GEa_cTH17NO_moWDY_LNdFvyEFQ1UVB9_FltYiA,173
|
74
74
|
ibm_watsonx_orchestrate/cli/commands/voice_configurations/voice_configurations_command.py,sha256=q4KHWQ-LZbp31e2ytihX1OuyAPS4-nRinmc-eMXC0l0,1783
|
75
75
|
ibm_watsonx_orchestrate/cli/commands/voice_configurations/voice_configurations_controller.py,sha256=JbAc_CY0woHY8u7qrnOcb9O2FgECzkzeMirxFhRoep8,5884
|
76
76
|
ibm_watsonx_orchestrate/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
77
|
-
ibm_watsonx_orchestrate/client/base_api_client.py,sha256=
|
77
|
+
ibm_watsonx_orchestrate/client/base_api_client.py,sha256=ZD6t3ax952mSwzYH6ljS-3E5tlnKbxqaYbIcPLOkse8,6069
|
78
78
|
ibm_watsonx_orchestrate/client/base_service_instance.py,sha256=sM_r7bln9BpgEOhaJMdFI9-je3T7GLQxLduk-in0oRY,235
|
79
79
|
ibm_watsonx_orchestrate/client/client.py,sha256=pgYeXHe4_Makrw0gTyM343DQdrZZB8cjitFHKcbdzuc,2432
|
80
80
|
ibm_watsonx_orchestrate/client/client_errors.py,sha256=72MKCNZbKoo2QXyY0RicLhP3r0ALRjgOEbHOHNSyOYI,11712
|
81
81
|
ibm_watsonx_orchestrate/client/credentials.py,sha256=gDVeeQZDdbbjJiO1EI61yx2oRgTQctxA2ZesSDHI4DA,3786
|
82
82
|
ibm_watsonx_orchestrate/client/local_service_instance.py,sha256=dt7vfLnjgt7mT8wSq8SJZndNTwsPzhb0XDhcnPUPFpU,3524
|
83
|
-
ibm_watsonx_orchestrate/client/service_instance.py,sha256=
|
84
|
-
ibm_watsonx_orchestrate/client/utils.py,sha256=
|
83
|
+
ibm_watsonx_orchestrate/client/service_instance.py,sha256=20yPs5bfAGN7TKUwMHZgsV2p0vzHr57pZD_rjc-5X80,5861
|
84
|
+
ibm_watsonx_orchestrate/client/utils.py,sha256=oKCS5jPQ6Hh5Hk7AFD1Tn7GrkkG4Za1GCKEoQ15vr8w,5950
|
85
85
|
ibm_watsonx_orchestrate/client/agents/agent_client.py,sha256=ObAoh5g4zvB1mZiA6xotvs4b1FGE1r92kkb2C7juGn8,6890
|
86
86
|
ibm_watsonx_orchestrate/client/agents/assistant_agent_client.py,sha256=1JQN0E4T_uz5V0LM-LD1ahNu2KCeFBjXAr8WCiP9mkE,1745
|
87
87
|
ibm_watsonx_orchestrate/client/agents/external_agent_client.py,sha256=iQ44XBdC4rYfS-zFn4St1xC5y5gf5SNqKHzMNQcFDZc,1808
|
@@ -89,7 +89,7 @@ ibm_watsonx_orchestrate/client/analytics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5
|
|
89
89
|
ibm_watsonx_orchestrate/client/analytics/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
90
90
|
ibm_watsonx_orchestrate/client/analytics/llm/analytics_llm_client.py,sha256=0YS_BCpmf5oGFawpZkJ38cuz5ArhKsZIbSydWRd194s,1340
|
91
91
|
ibm_watsonx_orchestrate/client/connections/__init__.py,sha256=J7TOyVg38h71AlaJjlFs5fOuAXTceHvELtOJ9oz4Mvg,207
|
92
|
-
ibm_watsonx_orchestrate/client/connections/connections_client.py,sha256=
|
92
|
+
ibm_watsonx_orchestrate/client/connections/connections_client.py,sha256=0bM-8qAsoysMmaAkyeJLt9XK7JXEjp-v4ROJo-7l9-M,8866
|
93
93
|
ibm_watsonx_orchestrate/client/connections/utils.py,sha256=f6HsiDI6cycOqfYN6P4uZ3SQds83xlh83zTUioZPeYk,2618
|
94
94
|
ibm_watsonx_orchestrate/client/copilot/cpe/copilot_cpe_client.py,sha256=-grsFXdxY8Cy2DbsWa1Akc93d-TRLJJYCdMDkCfmG3g,2102
|
95
95
|
ibm_watsonx_orchestrate/client/knowledge_bases/knowledge_base_client.py,sha256=XEsN65Pz3UAc8w_Pbqzhy6qfCyQqqNtT7NnubsA00Mo,2061
|
@@ -101,8 +101,8 @@ ibm_watsonx_orchestrate/client/toolkit/toolkit_client.py,sha256=TLFNS39EeBD_t4Y-
|
|
101
101
|
ibm_watsonx_orchestrate/client/tools/tempus_client.py,sha256=24fKDZUOVHBW-Vj4mubnpnUmab5LgGn8u5hOVyJaozI,1804
|
102
102
|
ibm_watsonx_orchestrate/client/tools/tool_client.py,sha256=d3i3alVwa0TCN72w9sWOrM20GCbNmnpTnqEOJVbBIFM,1994
|
103
103
|
ibm_watsonx_orchestrate/client/voice_configurations/voice_configurations_client.py,sha256=M5xIPLiVNpP-zxQw8CTNT9AiBjeXXmJiNaE142e2A3E,2682
|
104
|
-
ibm_watsonx_orchestrate/docker/compose-lite.yml,sha256=
|
105
|
-
ibm_watsonx_orchestrate/docker/default.env,sha256=
|
104
|
+
ibm_watsonx_orchestrate/docker/compose-lite.yml,sha256=5HJ5TXOKeuiJRMzk9K2cAGd4BceZNdnJeCuoRJpC-s4,45954
|
105
|
+
ibm_watsonx_orchestrate/docker/default.env,sha256=wbdfGpeiU0iyxH8aHvYpdAbFfBImAEWFSH_unOuqa_o,6303
|
106
106
|
ibm_watsonx_orchestrate/docker/proxy-config-single.yaml,sha256=WEbK4ENFuTCYhzRu_QblWp1_GMARgZnx5vReQafkIG8,308
|
107
107
|
ibm_watsonx_orchestrate/docker/start-up.sh,sha256=LTtwHp0AidVgjohis2LXGvZnkFQStOiUAxgGABOyeUI,1811
|
108
108
|
ibm_watsonx_orchestrate/docker/sdk/ibm_watsonx_orchestrate-0.6.0-py3-none-any.whl,sha256=Hi3-owh5OM0Jz2ihX9nLoojnr7Ky1TV-GelyqLcewLE,2047417
|
@@ -111,13 +111,13 @@ ibm_watsonx_orchestrate/docker/tempus/common-config.yaml,sha256=Zo3F36F5DV4VO_vU
|
|
111
111
|
ibm_watsonx_orchestrate/flow_builder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
112
112
|
ibm_watsonx_orchestrate/flow_builder/data_map.py,sha256=LinePFgb5mBnrvNmPkFe3rq5oYJZSjcgmaEGpE6dVwc,586
|
113
113
|
ibm_watsonx_orchestrate/flow_builder/node.py,sha256=U7-cYYhe7Gj_j6U0dw1ufaPROvXmFo30ZI8s7eTXZlk,9940
|
114
|
-
ibm_watsonx_orchestrate/flow_builder/types.py,sha256=
|
114
|
+
ibm_watsonx_orchestrate/flow_builder/types.py,sha256=BRjSuqt5LXEzBs1XPERiAP6XiVLGvQHEtE3tTuiJLks,69181
|
115
115
|
ibm_watsonx_orchestrate/flow_builder/utils.py,sha256=8q1jr5i_TzoJpoQxmLiO0g5Uv03BLbTUaRfw8_0VWIY,11931
|
116
116
|
ibm_watsonx_orchestrate/flow_builder/flows/__init__.py,sha256=iRYV0_eXgBBGhuNnvg-mUyPUyCIw5BiallPOp27bzYM,1083
|
117
117
|
ibm_watsonx_orchestrate/flow_builder/flows/constants.py,sha256=-TGneZyjA4YiAtJJK7OmmjDHYQC4mw2e98MPAZqiB50,324
|
118
118
|
ibm_watsonx_orchestrate/flow_builder/flows/decorators.py,sha256=lr4qSWq5PWqlGFf4fzUQZCVQDHBYflrYwZ24S89Aq80,2794
|
119
119
|
ibm_watsonx_orchestrate/flow_builder/flows/events.py,sha256=VyaBm0sADwr15LWfKbcBQS1M80NKqzYDj3UlW3OpOf4,2984
|
120
|
-
ibm_watsonx_orchestrate/flow_builder/flows/flow.py,sha256=
|
120
|
+
ibm_watsonx_orchestrate/flow_builder/flows/flow.py,sha256=UmqNjmenPC5SnpZSgnW9edSm-fSp6Akoid7o9O_WXt4,64922
|
121
121
|
ibm_watsonx_orchestrate/run/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
122
122
|
ibm_watsonx_orchestrate/run/connections.py,sha256=9twXkNeUx83fP_qYUbJRtumE-wzPPNN2v-IY_8hGndM,1820
|
123
123
|
ibm_watsonx_orchestrate/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -126,8 +126,8 @@ ibm_watsonx_orchestrate/utils/utils.py,sha256=U7z_2iASoFiZ2zM0a_2Mc2Y-P5oOT7hOwu
|
|
126
126
|
ibm_watsonx_orchestrate/utils/logging/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
127
127
|
ibm_watsonx_orchestrate/utils/logging/logger.py,sha256=FzeGnidXAjC7yHrvIaj4KZPeaBBSCniZFlwgr5yV3oA,1037
|
128
128
|
ibm_watsonx_orchestrate/utils/logging/logging.yaml,sha256=9_TKfuFr1barnOKP0fZT5D6MhddiwsXVTFjtRbcOO5w,314
|
129
|
-
ibm_watsonx_orchestrate-1.11.
|
130
|
-
ibm_watsonx_orchestrate-1.11.
|
131
|
-
ibm_watsonx_orchestrate-1.11.
|
132
|
-
ibm_watsonx_orchestrate-1.11.
|
133
|
-
ibm_watsonx_orchestrate-1.11.
|
129
|
+
ibm_watsonx_orchestrate-1.11.1.dist-info/METADATA,sha256=v3J5c8eYxpmBKC12F3YFBKF7UjOPPx4Rng-odH1Wqgw,1361
|
130
|
+
ibm_watsonx_orchestrate-1.11.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
131
|
+
ibm_watsonx_orchestrate-1.11.1.dist-info/entry_points.txt,sha256=SfIT02-Jen5e99OcLhzbcM9Bdyf8SGVOCtnSplgZdQI,69
|
132
|
+
ibm_watsonx_orchestrate-1.11.1.dist-info/licenses/LICENSE,sha256=Shgxx7hTdCOkiVRmfGgp_1ISISrwQD7m2f0y8Hsapl4,1083
|
133
|
+
ibm_watsonx_orchestrate-1.11.1.dist-info/RECORD,,
|
{ibm_watsonx_orchestrate-1.11.0b0.dist-info → ibm_watsonx_orchestrate-1.11.1.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|
File without changes
|