ibm-watsonx-orchestrate 1.11.0b0__py3-none-any.whl → 1.11.0b1__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.
Files changed (23) hide show
  1. ibm_watsonx_orchestrate/__init__.py +2 -1
  2. ibm_watsonx_orchestrate/agent_builder/agents/types.py +13 -0
  3. ibm_watsonx_orchestrate/agent_builder/connections/connections.py +5 -2
  4. ibm_watsonx_orchestrate/agent_builder/knowledge_bases/types.py +24 -9
  5. ibm_watsonx_orchestrate/cli/commands/agents/agents_command.py +10 -2
  6. ibm_watsonx_orchestrate/cli/commands/agents/agents_controller.py +404 -173
  7. ibm_watsonx_orchestrate/cli/commands/copilot/copilot_controller.py +6 -2
  8. ibm_watsonx_orchestrate/cli/commands/environment/environment_command.py +1 -1
  9. ibm_watsonx_orchestrate/cli/commands/evaluations/evaluations_command.py +174 -2
  10. ibm_watsonx_orchestrate/cli/commands/evaluations/evaluations_controller.py +93 -9
  11. ibm_watsonx_orchestrate/client/base_api_client.py +31 -10
  12. ibm_watsonx_orchestrate/client/connections/connections_client.py +14 -0
  13. ibm_watsonx_orchestrate/client/service_instance.py +19 -34
  14. ibm_watsonx_orchestrate/client/utils.py +3 -1
  15. ibm_watsonx_orchestrate/docker/compose-lite.yml +2 -1
  16. ibm_watsonx_orchestrate/docker/default.env +10 -10
  17. ibm_watsonx_orchestrate/flow_builder/flows/flow.py +3 -1
  18. ibm_watsonx_orchestrate/flow_builder/types.py +252 -1
  19. {ibm_watsonx_orchestrate-1.11.0b0.dist-info → ibm_watsonx_orchestrate-1.11.0b1.dist-info}/METADATA +2 -2
  20. {ibm_watsonx_orchestrate-1.11.0b0.dist-info → ibm_watsonx_orchestrate-1.11.0b1.dist-info}/RECORD +23 -23
  21. {ibm_watsonx_orchestrate-1.11.0b0.dist-info → ibm_watsonx_orchestrate-1.11.0b1.dist-info}/WHEEL +0 -0
  22. {ibm_watsonx_orchestrate-1.11.0b0.dist-info → ibm_watsonx_orchestrate-1.11.0b1.dist-info}/entry_points.txt +0 -0
  23. {ibm_watsonx_orchestrate-1.11.0b0.dist-info → ibm_watsonx_orchestrate-1.11.0b1.dist-info}/licenses/LICENSE +0 -0
@@ -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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ibm-watsonx-orchestrate
3
- Version: 1.11.0b0
3
+ Version: 1.11.0b1
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.0.8
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
@@ -1,19 +1,19 @@
1
- ibm_watsonx_orchestrate/__init__.py,sha256=jbxEByGxdLi958d7geTyr3YalemkBZi4IYUl5QCtmeE,427
1
+ ibm_watsonx_orchestrate/__init__.py,sha256=0L3LsRlSfdOw83yNdcW-8ikL4uUoiKXwa9yVRPKWRug,428
2
2
  ibm_watsonx_orchestrate/agent_builder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
3
  ibm_watsonx_orchestrate/agent_builder/agents/__init__.py,sha256=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=al_nz27cPqD1QLnamMgd8mkgUiATECaEptKttlkf0wU,13108
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=Vo1ucn4c_Db68x7GGuq-uyM89dInnkRztmsF0uo-yBk,5421
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=2MP3_c6V3OdbwrdDDffGtrBoAhoa3q-YoUXj_RsMG_M,8340
16
+ ibm_watsonx_orchestrate/agent_builder/knowledge_bases/types.py,sha256=xXt822LTGAgSso0lckeKoiouoyOiPlrD0AvQpn821IY,8977
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
@@ -34,8 +34,8 @@ ibm_watsonx_orchestrate/cli/config.py,sha256=iXjDxymWhAmLSUu6eh7zJR20dYZDzbxcU5V
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=sC3kRKO5ZvDGUSy5CBnS3C-qU6bG9kxG-u42KcpVYuQ,9574
38
- ibm_watsonx_orchestrate/cli/commands/agents/agents_controller.py,sha256=W1xeg4UQZ5fEudlvYfppw9PyfwTcQq-woWpHPZorUPc,55704
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=SC2Tjq6r-tHIiyPBMajsxdMIY3BQpRWpkYGZS2XbJyU,18981
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=xwq7gdyjMtl2RYAnLAahGk2wDetr9BStt8yu7JkeBhk,3768
50
+ ibm_watsonx_orchestrate/cli/commands/environment/environment_command.py,sha256=SUyz2RJoh5dToXRkXRwkUMjT_3OmrxSJFb-osiF2Tw4,3828
51
51
  ibm_watsonx_orchestrate/cli/commands/environment/environment_controller.py,sha256=oHZ7LONtPg3-SSnU_rRZryLi8N2mplz5h-LGg4XjzD4,10261
52
52
  ibm_watsonx_orchestrate/cli/commands/environment/types.py,sha256=X6jEnyBdxakromA7FhQ5btZMj9kwGcwRSFz8vpD65jA,224
53
- ibm_watsonx_orchestrate/cli/commands/evaluations/evaluations_command.py,sha256=nOVxeZSTp1bfV_l_06B6x6wfNeusNAr5KImJYkwGWx8,14298
54
- ibm_watsonx_orchestrate/cli/commands/evaluations/evaluations_controller.py,sha256=dZEAD0rIS9DQjWD2-i6367RjNd2PWB3Fm_DDk25toBg,7855
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
@@ -74,14 +74,14 @@ ibm_watsonx_orchestrate/cli/commands/tools/types.py,sha256=_md0GEa_cTH17NO_moWDY
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=cSbQb7-K9KoMeFLEIiYGho4cQqf8TcPyYklju9X4cC4,5214
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=fp3Lc4yQf4zTkxVS5WnIAkrHT0xG_a5i44qcLeQkaa4,6600
84
- ibm_watsonx_orchestrate/client/utils.py,sha256=MUw11r0_wYv3RdF6-1BmSxcwYNF6q2_Urte7tMYTKVA,5836
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=aiJMudRO-42vkHvd63V_pFaLXS0LojL5OO9XAPZHCEI,8276
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=iFk3JcGUs4aanAzTZkgG1EcsunWp_awkuIphpjLmeX8,45848
105
- ibm_watsonx_orchestrate/docker/default.env,sha256=jz6MNLTvVIVTUOY8AYLOLy589nMs_v0nzQM5rKYACwg,6293
104
+ ibm_watsonx_orchestrate/docker/compose-lite.yml,sha256=xtf0jQXF_cEyENHzrA11FOfOFVm3Mjc7hOS4JNZ4l2I,45891
105
+ ibm_watsonx_orchestrate/docker/default.env,sha256=vMWE1HvDFLUMHLioh7LnHMkVyropSu9gf-FHfKsV3-U,6307
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=FJw9pvXag9paNtwH1p9pnva0bvLMJ-ISFemyDJe7WXY,51392
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=UqFgGxYM9EIXk6pZjMMI5s6r1C11Gb9kRN5NVbJChoc,64824
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.0b0.dist-info/METADATA,sha256=lzqB8uEqqBpMkWztmcEwVu-knIknYmX08NV6nS92Zko,1363
130
- ibm_watsonx_orchestrate-1.11.0b0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
131
- ibm_watsonx_orchestrate-1.11.0b0.dist-info/entry_points.txt,sha256=SfIT02-Jen5e99OcLhzbcM9Bdyf8SGVOCtnSplgZdQI,69
132
- ibm_watsonx_orchestrate-1.11.0b0.dist-info/licenses/LICENSE,sha256=Shgxx7hTdCOkiVRmfGgp_1ISISrwQD7m2f0y8Hsapl4,1083
133
- ibm_watsonx_orchestrate-1.11.0b0.dist-info/RECORD,,
129
+ ibm_watsonx_orchestrate-1.11.0b1.dist-info/METADATA,sha256=TogHbMod2ge18w7EChDjmcmtuQXiR9FCQnl-hqlPsFc,1363
130
+ ibm_watsonx_orchestrate-1.11.0b1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
131
+ ibm_watsonx_orchestrate-1.11.0b1.dist-info/entry_points.txt,sha256=SfIT02-Jen5e99OcLhzbcM9Bdyf8SGVOCtnSplgZdQI,69
132
+ ibm_watsonx_orchestrate-1.11.0b1.dist-info/licenses/LICENSE,sha256=Shgxx7hTdCOkiVRmfGgp_1ISISrwQD7m2f0y8Hsapl4,1083
133
+ ibm_watsonx_orchestrate-1.11.0b1.dist-info/RECORD,,