ibm-watsonx-orchestrate 1.7.0b1__py3-none-any.whl → 1.8.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.
- ibm_watsonx_orchestrate/__init__.py +1 -2
- ibm_watsonx_orchestrate/agent_builder/agents/types.py +29 -1
- ibm_watsonx_orchestrate/agent_builder/connections/types.py +14 -2
- ibm_watsonx_orchestrate/cli/commands/channels/types.py +15 -2
- ibm_watsonx_orchestrate/cli/commands/channels/webchat/channels_webchat_controller.py +34 -23
- ibm_watsonx_orchestrate/cli/commands/connections/connections_command.py +14 -6
- ibm_watsonx_orchestrate/cli/commands/connections/connections_controller.py +6 -8
- ibm_watsonx_orchestrate/cli/commands/copilot/copilot_command.py +65 -0
- ibm_watsonx_orchestrate/cli/commands/copilot/copilot_controller.py +368 -0
- ibm_watsonx_orchestrate/cli/commands/copilot/copilot_server_controller.py +170 -0
- ibm_watsonx_orchestrate/cli/commands/environment/types.py +1 -1
- ibm_watsonx_orchestrate/cli/commands/evaluations/evaluations_command.py +16 -6
- ibm_watsonx_orchestrate/cli/commands/evaluations/evaluations_controller.py +20 -2
- ibm_watsonx_orchestrate/cli/commands/knowledge_bases/knowledge_bases_controller.py +10 -8
- ibm_watsonx_orchestrate/cli/commands/server/server_command.py +3 -9
- ibm_watsonx_orchestrate/cli/main.py +3 -0
- ibm_watsonx_orchestrate/client/base_api_client.py +12 -0
- ibm_watsonx_orchestrate/client/copilot/cpe/copilot_cpe_client.py +67 -0
- ibm_watsonx_orchestrate/client/utils.py +49 -9
- ibm_watsonx_orchestrate/docker/compose-lite.yml +19 -2
- ibm_watsonx_orchestrate/docker/default.env +10 -6
- ibm_watsonx_orchestrate/flow_builder/flows/__init__.py +8 -5
- ibm_watsonx_orchestrate/flow_builder/flows/flow.py +47 -7
- ibm_watsonx_orchestrate/flow_builder/node.py +7 -1
- ibm_watsonx_orchestrate/flow_builder/types.py +168 -65
- {ibm_watsonx_orchestrate-1.7.0b1.dist-info → ibm_watsonx_orchestrate-1.8.0b1.dist-info}/METADATA +2 -2
- {ibm_watsonx_orchestrate-1.7.0b1.dist-info → ibm_watsonx_orchestrate-1.8.0b1.dist-info}/RECORD +30 -26
- {ibm_watsonx_orchestrate-1.7.0b1.dist-info → ibm_watsonx_orchestrate-1.8.0b1.dist-info}/WHEEL +0 -0
- {ibm_watsonx_orchestrate-1.7.0b1.dist-info → ibm_watsonx_orchestrate-1.8.0b1.dist-info}/entry_points.txt +0 -0
- {ibm_watsonx_orchestrate-1.7.0b1.dist-info → ibm_watsonx_orchestrate-1.8.0b1.dist-info}/licenses/LICENSE +0 -0
@@ -1,5 +1,7 @@
|
|
1
1
|
from dataclasses import dataclass
|
2
2
|
from enum import Enum, StrEnum, auto
|
3
|
+
from datetime import date
|
4
|
+
import numbers
|
3
5
|
import inspect
|
4
6
|
import logging
|
5
7
|
from typing import (
|
@@ -167,8 +169,6 @@ class DocProcTask(StrEnum):
|
|
167
169
|
Possible names for the Document processing task parameter
|
168
170
|
'''
|
169
171
|
text_extraction = auto()
|
170
|
-
kvp_invoices_extraction = auto()
|
171
|
-
kvp_utility_bills_extraction = auto()
|
172
172
|
|
173
173
|
class DocProcSpec(NodeSpec):
|
174
174
|
task: DocProcTask = Field(description='The document processing operation name', default=DocProcTask.text_extraction)
|
@@ -515,6 +515,7 @@ class PromptNodeSpec(NodeSpec):
|
|
515
515
|
model_spec["llm_parameters"] = self.llm_parameters.to_json()
|
516
516
|
|
517
517
|
return model_spec
|
518
|
+
|
518
519
|
|
519
520
|
class Expression(BaseModel):
|
520
521
|
'''An expression could return a boolean or a value'''
|
@@ -743,7 +744,7 @@ class LanguageCode(StrEnum):
|
|
743
744
|
fr = auto()
|
744
745
|
en_hw = auto()
|
745
746
|
|
746
|
-
class
|
747
|
+
class File(BaseModel):
|
747
748
|
'''
|
748
749
|
This class represents the input of a Document processing task.
|
749
750
|
|
@@ -752,7 +753,7 @@ class DocumentContent(BaseModel):
|
|
752
753
|
language (LanguageCode): Optional language code used when processing the input document
|
753
754
|
'''
|
754
755
|
# This is declared as bytes but the runtime will understand if a URL is send in as input.
|
755
|
-
# We need to use bytes here for Chat-with-doc to recognize the input as a
|
756
|
+
# We need to use bytes here for Chat-with-doc to recognize the input as a File.
|
756
757
|
document_ref: bytes | str = Field(
|
757
758
|
description="Either an ID or a URL identifying the document to be used.",
|
758
759
|
title='Document reference',
|
@@ -779,73 +780,175 @@ class TextExtractionResponse(BaseModel):
|
|
779
780
|
'''
|
780
781
|
output: TextExtraction = Field(description='The text extraction response')
|
781
782
|
|
782
|
-
class Invoice(BaseModel):
|
783
|
-
'''
|
784
|
-
This class represents the fields extracted by the "kvp_invoices_extraction" document processing (docproc) operation.
|
785
|
-
'''
|
786
|
-
bank_account_number: Optional[str] = Field(title='Bank account number', default=None)
|
787
|
-
bank_name: Optional[str] = Field(title='Bank name', default=None)
|
788
|
-
bill_to_address: Optional[str] = Field(title='Bill-to address', default=None)
|
789
|
-
bill_to_name: Optional[str] = Field(title='Bill-to name', default=None)
|
790
|
-
invoice_date: Optional[str] = Field(title='Invoice date', format='date', default=None)
|
791
|
-
invoice_number: Optional[str] = Field(title='Invoice number', default=None)
|
792
|
-
invoice_total: Optional[float] = Field(title='Invoice total', default=None)
|
793
|
-
payment_due_date: Optional[str] = Field(title='Payment due date', format='date', default=None)
|
794
|
-
payment_terms: Optional[str] = Field(title='Payment terms', default=None)
|
795
|
-
purchase_order_number: Optional[str] = Field(title='Purchase order number', default=None)
|
796
|
-
ship_to_address: Optional[str] = Field(title='Ship-to address', default=None)
|
797
|
-
ship_to_name: Optional[str] = Field(title='Ship-to name', default=None)
|
798
|
-
shipping_amount: Optional[float] = Field(title='Shipping amount', default=None)
|
799
|
-
subtotal: Optional[float] = Field(title='Subtotal', default=None)
|
800
|
-
tax_amount: Optional[float] = Field(title='Tax amount', default=None)
|
801
|
-
tax_rate: Optional[float] = Field(title='Tax rate', default=None)
|
802
|
-
tax_type: Optional[str] = Field(title='Tax type', default=None)
|
803
|
-
vendor_address: Optional[str] = Field(title='Vendor address', default=None)
|
804
|
-
vendor_name: Optional[str] = Field(title='Vendor name', default=None)
|
805
|
-
|
806
|
-
|
807
|
-
class KVPInvoicesExtractionResponse(BaseModel):
|
808
|
-
'''
|
809
|
-
The response of a "kvp_invoices_extraction" document processing (docproc) operation.
|
810
|
-
Attributes:
|
811
|
-
invoice: an object with the fields extracted from the input invoice document
|
812
|
-
'''
|
813
|
-
output: Invoice = Field(
|
814
|
-
title='Invoice',
|
815
|
-
description='The fields extracted from an invoice document'
|
816
|
-
)
|
817
783
|
|
784
|
+
class DecisionsCondition(BaseModel):
|
785
|
+
_condition: str | None = None
|
786
|
+
|
787
|
+
def greater_than(self, value: Union[numbers.Number, date, str]) -> Self:
|
788
|
+
self._check_type_is_number_or_date_or_str(value)
|
789
|
+
self._condition = f"> {self._format_value(value)}"
|
790
|
+
return self
|
791
|
+
|
792
|
+
def greater_than_or_equal(self, value: Union[numbers.Number, date, str]) -> Self:
|
793
|
+
self._check_type_is_number_or_date_or_str(value)
|
794
|
+
self._condition = f">= {self._format_value(value)}"
|
795
|
+
return self
|
796
|
+
|
797
|
+
def less_than(self, value: Union[numbers.Number, date, str]) -> Self:
|
798
|
+
self._check_type_is_number_or_date_or_str(value)
|
799
|
+
self._condition = f"< {self._format_value(value)}"
|
800
|
+
return self
|
801
|
+
|
802
|
+
def less_than_or_equal(self, value: Union[numbers.Number, date, str]) -> Self:
|
803
|
+
self._check_type_is_number_or_date_or_str(value)
|
804
|
+
self._condition = f"<= {self._format_value(value)}"
|
805
|
+
return self
|
818
806
|
|
819
|
-
|
807
|
+
def equal(self, value: Union[numbers.Number, date, str]) -> Self:
|
808
|
+
self._check_type_is_number_or_date_or_str(value)
|
809
|
+
self._condition = f"== {self._format_value(value)}"
|
810
|
+
return self
|
811
|
+
|
812
|
+
def not_equal(self, value: Union[numbers.Number, date, str]) -> Self:
|
813
|
+
self._check_type_is_number_or_date_or_str(value)
|
814
|
+
self._condition = f"== {self._format_value(value)}"
|
815
|
+
return self
|
816
|
+
|
817
|
+
def contains(self, value: str) -> Self:
|
818
|
+
self._check_type_is_str(value)
|
819
|
+
self._condition = f"contains {self._format_value(value)}"
|
820
|
+
return self
|
821
|
+
|
822
|
+
def not_contains(self, value: str) -> Self:
|
823
|
+
self._check_type_is_str(value)
|
824
|
+
self._condition = f"doesNotContain {self._format_value(value)}"
|
825
|
+
return self
|
826
|
+
|
827
|
+
def is_in(self, value: str) -> Self:
|
828
|
+
self._check_type_is_str(value)
|
829
|
+
self._condition = f"in {self._format_value(value)}"
|
830
|
+
return self
|
831
|
+
|
832
|
+
def is_not_in(self, value: str) -> Self:
|
833
|
+
self._check_type_is_str(value)
|
834
|
+
self._condition = f"notIn {self._format_value(value)}"
|
835
|
+
return self
|
836
|
+
|
837
|
+
def startswith(self, value: str) -> Self:
|
838
|
+
self._check_type_is_str(value)
|
839
|
+
self._condition = f"startsWith {self._format_value(value)}"
|
840
|
+
return self
|
841
|
+
|
842
|
+
def endswith(self, value: str) -> Self:
|
843
|
+
self._check_type_is_str(value)
|
844
|
+
self._condition = f"endsWith {self._format_value(value)}"
|
845
|
+
return self
|
846
|
+
|
847
|
+
|
848
|
+
def in_range(self, startValue: Union[numbers.Number, date], endValue: Union[numbers.Number, date],
|
849
|
+
startsInclusive: bool = False, endsInclusive: bool = False) -> Self:
|
850
|
+
self._check_type_is_number_or_date_or_str(startValue)
|
851
|
+
self._check_type_is_number_or_date_or_str(endValue)
|
852
|
+
if type(startValue) is not type(endValue):
|
853
|
+
raise TypeError("startValue and endValue must be of the same type")
|
854
|
+
start_op = "[" if startsInclusive else "(" # [ is inclusive, ( is exclusive
|
855
|
+
end_op = "]" if endsInclusive else ")"
|
856
|
+
self._condition = f"{start_op}{self._format_value(startValue)}:{self._format_value(endValue)}{end_op}"
|
857
|
+
return self
|
858
|
+
|
859
|
+
def _check_type_is_number_or_date(self, value: Union[numbers.Number, date]):
|
860
|
+
if not isinstance(value, (numbers.Number, date)):
|
861
|
+
raise TypeError("Value must be a number or a date")
|
862
|
+
|
863
|
+
def _check_type_is_number_or_date_or_str(self, value: Union[numbers.Number, date, str]):
|
864
|
+
if not isinstance(value, (numbers.Number, date, str)):
|
865
|
+
raise TypeError("Value must be a number or a date or a string")
|
866
|
+
|
867
|
+
def _check_type_is_str(self, value: str):
|
868
|
+
if not isinstance(value, str):
|
869
|
+
raise TypeError("Value must be a string")
|
870
|
+
|
871
|
+
@staticmethod
|
872
|
+
def _format_value(value: Union[numbers.Number, date, str]):
|
873
|
+
if isinstance(value, numbers.Number):
|
874
|
+
return f"{value}"
|
875
|
+
if isinstance(value, date):
|
876
|
+
return f"\"{value.strftime('%B %d, %Y')}\""
|
877
|
+
return f"\"{value}\""
|
878
|
+
|
879
|
+
def condition(self):
|
880
|
+
return self._condition
|
881
|
+
|
882
|
+
|
883
|
+
|
884
|
+
class DecisionsRule(BaseModel):
|
820
885
|
'''
|
821
|
-
|
886
|
+
A set of decisions rules.
|
822
887
|
'''
|
823
|
-
|
824
|
-
|
825
|
-
|
826
|
-
|
827
|
-
|
828
|
-
|
829
|
-
|
830
|
-
|
831
|
-
|
832
|
-
|
833
|
-
|
834
|
-
|
835
|
-
|
836
|
-
|
837
|
-
|
838
|
-
|
839
|
-
|
888
|
+
_conditions: dict[str, str]
|
889
|
+
_actions: dict[str, Union[numbers.Number, str]]
|
890
|
+
|
891
|
+
def __init__(self, **data):
|
892
|
+
super().__init__(**data)
|
893
|
+
self._conditions = {}
|
894
|
+
self._actions = {}
|
895
|
+
|
896
|
+
def condition(self, key: str, cond: DecisionsCondition) -> Self:
|
897
|
+
self._conditions[key] = cond.condition()
|
898
|
+
return self
|
899
|
+
|
900
|
+
def action(self, key: str, value: Union[numbers.Number, date, str]) -> Self:
|
901
|
+
if isinstance(value, date):
|
902
|
+
self._actions[key] = value.strftime("%B %d, %Y")
|
903
|
+
return self
|
904
|
+
self._actions[key] = value
|
905
|
+
return self
|
906
|
+
|
907
|
+
def to_json(self) -> dict[str, Any]:
|
908
|
+
'''
|
909
|
+
Serialize the rules into JSON object
|
910
|
+
'''
|
911
|
+
model_spec = {}
|
912
|
+
if self._conditions:
|
913
|
+
model_spec["conditions"] = self._conditions
|
914
|
+
if self._actions:
|
915
|
+
model_spec["actions"] = self._actions
|
916
|
+
return model_spec
|
917
|
+
|
918
|
+
|
919
|
+
class DecisionsNodeSpec(NodeSpec):
|
840
920
|
'''
|
841
|
-
|
842
|
-
Attributes:
|
843
|
-
utility_bull: an object with the fields extracted from the input utility bill document
|
921
|
+
Node specification for Decision Table
|
844
922
|
'''
|
845
|
-
|
846
|
-
|
847
|
-
|
848
|
-
|
923
|
+
locale: str | None = None
|
924
|
+
rules: list[DecisionsRule]
|
925
|
+
default_actions: dict[str, Union[int, float, complex, str]] | None
|
926
|
+
|
927
|
+
def __init__(self, **data):
|
928
|
+
super().__init__(**data)
|
929
|
+
self.kind = "decisions"
|
930
|
+
|
931
|
+
def default_action(self, key: str, value: Union[int, float, complex, date, str]) -> Self:
|
932
|
+
'''
|
933
|
+
create a new default action
|
934
|
+
'''
|
935
|
+
if isinstance(value, date):
|
936
|
+
self.default_actions[key] = value.strftime("%B %d, %Y")
|
937
|
+
return self
|
938
|
+
self.default_actions[key] = value
|
939
|
+
return self
|
940
|
+
|
941
|
+
def to_json(self) -> dict[str, Any]:
|
942
|
+
model_spec = super().to_json()
|
943
|
+
if self.locale:
|
944
|
+
model_spec["locale"] = self.locale
|
945
|
+
if self.rules:
|
946
|
+
model_spec["rules"] = [rule.to_json() for rule in self.rules]
|
947
|
+
if self.default_actions:
|
948
|
+
model_spec["default_actions"] = self.default_actions
|
949
|
+
|
950
|
+
return model_spec
|
951
|
+
|
849
952
|
|
850
953
|
def extract_node_spec(
|
851
954
|
fn: Callable | PythonTool,
|
{ibm_watsonx_orchestrate-1.7.0b1.dist-info → ibm_watsonx_orchestrate-1.8.0b1.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: ibm-watsonx-orchestrate
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.8.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.
|
14
|
+
Requires-Dist: ibm-watsonx-orchestrate-evaluation-framework==1.0.8
|
15
15
|
Requires-Dist: jsonref==1.1.0
|
16
16
|
Requires-Dist: jsonschema<5.0.0,>=4.23.0
|
17
17
|
Requires-Dist: langchain-core<=0.3.63
|
{ibm_watsonx_orchestrate-1.7.0b1.dist-info → ibm_watsonx_orchestrate-1.8.0b1.dist-info}/RECORD
RENAMED
@@ -1,16 +1,16 @@
|
|
1
|
-
ibm_watsonx_orchestrate/__init__.py,sha256=
|
1
|
+
ibm_watsonx_orchestrate/__init__.py,sha256=9zMqS0YMNcmpeGzYGa0IjjaKiXHm21buJ4ZsqNKJ1mo,427
|
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=kXbWWz4iHo-knQ5OZRZW7kc8rTwfOzPVn7iyndk5cDs,13013
|
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=VG45ifpp6B00-ZAGW-dIEHFh18Fx3wbyfUiDDKS74u4,718
|
12
12
|
ibm_watsonx_orchestrate/agent_builder/connections/connections.py,sha256=CD3QHI4d-j3rTugHOgvPZUdRu_zpWCwsSzkN63_Ke_c,5423
|
13
|
-
ibm_watsonx_orchestrate/agent_builder/connections/types.py,sha256=
|
13
|
+
ibm_watsonx_orchestrate/agent_builder/connections/types.py,sha256=YOOlXXNKVxTZ6tK2ceeytWXUApZjwfi4mgdYwXoiqOk,9532
|
14
14
|
ibm_watsonx_orchestrate/agent_builder/knowledge_bases/knowledge_base.py,sha256=_KuGF0RZpKpwdt31rzjlTjrhGRFz2RtLzleNkhMNX4k,1831
|
15
15
|
ibm_watsonx_orchestrate/agent_builder/knowledge_bases/knowledge_base_requests.py,sha256=3xTfFMZR17EN8eYRhsVyBfOEzlTqyi0eYaMXyv0_ZtQ,862
|
16
16
|
ibm_watsonx_orchestrate/agent_builder/knowledge_bases/types.py,sha256=_jHu9ELQqj1qwDK6U7jqemzNFeM2O5APlykiZRsDOcY,7009
|
@@ -31,30 +31,33 @@ ibm_watsonx_orchestrate/agent_builder/utils/pydantic_utils.py,sha256=QEanM6Fpkmn
|
|
31
31
|
ibm_watsonx_orchestrate/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
32
32
|
ibm_watsonx_orchestrate/cli/config.py,sha256=iXjDxymWhAmLSUu6eh7zJR20dYZDzbxcU5VoBdh3VIw,8318
|
33
33
|
ibm_watsonx_orchestrate/cli/init_helper.py,sha256=qxnKdFcPtGsV_6RqP_IuLshRxgB004SxzDAkBTExA-4,1675
|
34
|
-
ibm_watsonx_orchestrate/cli/main.py,sha256=
|
34
|
+
ibm_watsonx_orchestrate/cli/main.py,sha256=eE71dfx-EdDYHymYDqXcTjyMXpX0b3cueXOxCI2YLLs,3119
|
35
35
|
ibm_watsonx_orchestrate/cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
36
36
|
ibm_watsonx_orchestrate/cli/commands/agents/agents_command.py,sha256=Zif3bH3X7j5qf7MWGcr53mJ2oEKXNRHeg3ZHeoHTIqQ,8984
|
37
37
|
ibm_watsonx_orchestrate/cli/commands/agents/agents_controller.py,sha256=skAElLfh8Ip4wVkxpn1wnLskHb1eLU1p9W7GF1abHus,47998
|
38
38
|
ibm_watsonx_orchestrate/cli/commands/channels/channels_command.py,sha256=fVIFhPUTPdxsxIE10nWL-W5wvBR-BS8V8D6r__J8R98,822
|
39
39
|
ibm_watsonx_orchestrate/cli/commands/channels/channels_controller.py,sha256=WjQxwJujvo28SsWgfJSXIpkcgniKcskJ2arL4MOz0Ys,455
|
40
|
-
ibm_watsonx_orchestrate/cli/commands/channels/types.py,sha256=
|
40
|
+
ibm_watsonx_orchestrate/cli/commands/channels/types.py,sha256=yX5hvnm_DBgcjdTzStXAtwT5dxIZDtPyq_Z38RhFTVc,483
|
41
41
|
ibm_watsonx_orchestrate/cli/commands/channels/webchat/channels_webchat_command.py,sha256=vPCr6z1n1yzGDjTlM4f3_9MiuVRzNmXbvUifm6XyQi8,1103
|
42
|
-
ibm_watsonx_orchestrate/cli/commands/channels/webchat/channels_webchat_controller.py,sha256=
|
42
|
+
ibm_watsonx_orchestrate/cli/commands/channels/webchat/channels_webchat_controller.py,sha256=QkONhvadCyXrTSZECq5_RrE5Hze1yiBftOiEL-VLZUU,8583
|
43
43
|
ibm_watsonx_orchestrate/cli/commands/chat/chat_command.py,sha256=Q9vg2Z5Fsunu6GQFY_TIsNRhUCa0SSGSPnK4jxSGK34,1581
|
44
|
-
ibm_watsonx_orchestrate/cli/commands/connections/connections_command.py,sha256=
|
45
|
-
ibm_watsonx_orchestrate/cli/commands/connections/connections_controller.py,sha256=
|
44
|
+
ibm_watsonx_orchestrate/cli/commands/connections/connections_command.py,sha256=bZBzaaVMFmGY4Guk-JCknZqd8HvXY5L-FirxpxddQfc,10497
|
45
|
+
ibm_watsonx_orchestrate/cli/commands/connections/connections_controller.py,sha256=odsqxthEDyPO3C-GEtSn31sxLjRYgUBf1Vdkg6ZEwms,22290
|
46
|
+
ibm_watsonx_orchestrate/cli/commands/copilot/copilot_command.py,sha256=IxasApIyQYWRMKPXKa38ZPVkUvOc4chggSmSGjgQGXc,2345
|
47
|
+
ibm_watsonx_orchestrate/cli/commands/copilot/copilot_controller.py,sha256=rr6p4_yqriq3ts1FwFC4aV0ub5UC5D6JqpuLoba4j_U,14808
|
48
|
+
ibm_watsonx_orchestrate/cli/commands/copilot/copilot_server_controller.py,sha256=AcBE97qNYsRN0ftY_E-AAjKFyVea4fHtU5eB2HsB42I,5619
|
46
49
|
ibm_watsonx_orchestrate/cli/commands/environment/environment_command.py,sha256=xwq7gdyjMtl2RYAnLAahGk2wDetr9BStt8yu7JkeBhk,3768
|
47
50
|
ibm_watsonx_orchestrate/cli/commands/environment/environment_controller.py,sha256=oHZ7LONtPg3-SSnU_rRZryLi8N2mplz5h-LGg4XjzD4,10261
|
48
|
-
ibm_watsonx_orchestrate/cli/commands/environment/types.py,sha256=
|
49
|
-
ibm_watsonx_orchestrate/cli/commands/evaluations/evaluations_command.py,sha256=
|
50
|
-
ibm_watsonx_orchestrate/cli/commands/evaluations/evaluations_controller.py,sha256=
|
51
|
+
ibm_watsonx_orchestrate/cli/commands/environment/types.py,sha256=X6jEnyBdxakromA7FhQ5btZMj9kwGcwRSFz8vpD65jA,224
|
52
|
+
ibm_watsonx_orchestrate/cli/commands/evaluations/evaluations_command.py,sha256=1bgzMu1gF1dGKmi3bzIVR6twnUXSgTt-yc3M5_EVYDM,12065
|
53
|
+
ibm_watsonx_orchestrate/cli/commands/evaluations/evaluations_controller.py,sha256=dZEAD0rIS9DQjWD2-i6367RjNd2PWB3Fm_DDk25toBg,7855
|
51
54
|
ibm_watsonx_orchestrate/cli/commands/knowledge_bases/knowledge_bases_command.py,sha256=hOzRcGVoqq7dTc4bSregKxH-kYbrVqaFdhBLawqnRNo,2668
|
52
|
-
ibm_watsonx_orchestrate/cli/commands/knowledge_bases/knowledge_bases_controller.py,sha256=
|
55
|
+
ibm_watsonx_orchestrate/cli/commands/knowledge_bases/knowledge_bases_controller.py,sha256=M19rRMFEEcAarPVw4fOr3S94Se1ZEo4hD7sCUr0xYTI,10115
|
53
56
|
ibm_watsonx_orchestrate/cli/commands/login/login_command.py,sha256=xArMiojoozg7Exn6HTpbTcjDO2idZRA-y0WV-_Ic1Sk,651
|
54
57
|
ibm_watsonx_orchestrate/cli/commands/models/model_provider_mapper.py,sha256=RVZfFCuPWiASkR9Mox61v5SZ1AoRxo4_g9stnbfjCkc,7994
|
55
58
|
ibm_watsonx_orchestrate/cli/commands/models/models_command.py,sha256=PW-PIM5Nq0qdCopWjANGBWEuEoA3NLTFThYrN8ggGCI,6425
|
56
59
|
ibm_watsonx_orchestrate/cli/commands/models/models_controller.py,sha256=BNfUoWST60x3k7yIvSbtBR3rmyTQmz9g0TDK2WOoOE4,18610
|
57
|
-
ibm_watsonx_orchestrate/cli/commands/server/server_command.py,sha256=
|
60
|
+
ibm_watsonx_orchestrate/cli/commands/server/server_command.py,sha256=Tx5MbxH2MeMQ3GReI2FsESkZyefSwHlgkJjLniED2MU,39787
|
58
61
|
ibm_watsonx_orchestrate/cli/commands/server/types.py,sha256=UCrgGErbSVBnOzesfjrIii4tTCuVfWemYz5AKGZX0oA,4213
|
59
62
|
ibm_watsonx_orchestrate/cli/commands/settings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
60
63
|
ibm_watsonx_orchestrate/cli/commands/settings/settings_command.py,sha256=CzXRkd-97jXyS6LtaaNtMah-aZu0919dYl-mDwzGThc,344
|
@@ -68,14 +71,14 @@ ibm_watsonx_orchestrate/cli/commands/tools/tools_command.py,sha256=Cuo1Zvlfsymoj
|
|
68
71
|
ibm_watsonx_orchestrate/cli/commands/tools/tools_controller.py,sha256=uL0WHi0YD7NIYSLOui-CymVHj-h9Y0i3PxS7T2SXSvo,40408
|
69
72
|
ibm_watsonx_orchestrate/cli/commands/tools/types.py,sha256=_md0GEa_cTH17NO_moWDY_LNdFvyEFQ1UVB9_FltYiA,173
|
70
73
|
ibm_watsonx_orchestrate/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
71
|
-
ibm_watsonx_orchestrate/client/base_api_client.py,sha256=
|
74
|
+
ibm_watsonx_orchestrate/client/base_api_client.py,sha256=cSbQb7-K9KoMeFLEIiYGho4cQqf8TcPyYklju9X4cC4,5214
|
72
75
|
ibm_watsonx_orchestrate/client/base_service_instance.py,sha256=sM_r7bln9BpgEOhaJMdFI9-je3T7GLQxLduk-in0oRY,235
|
73
76
|
ibm_watsonx_orchestrate/client/client.py,sha256=pgYeXHe4_Makrw0gTyM343DQdrZZB8cjitFHKcbdzuc,2432
|
74
77
|
ibm_watsonx_orchestrate/client/client_errors.py,sha256=72MKCNZbKoo2QXyY0RicLhP3r0ALRjgOEbHOHNSyOYI,11712
|
75
78
|
ibm_watsonx_orchestrate/client/credentials.py,sha256=gDVeeQZDdbbjJiO1EI61yx2oRgTQctxA2ZesSDHI4DA,3786
|
76
79
|
ibm_watsonx_orchestrate/client/local_service_instance.py,sha256=dt7vfLnjgt7mT8wSq8SJZndNTwsPzhb0XDhcnPUPFpU,3524
|
77
80
|
ibm_watsonx_orchestrate/client/service_instance.py,sha256=fp3Lc4yQf4zTkxVS5WnIAkrHT0xG_a5i44qcLeQkaa4,6600
|
78
|
-
ibm_watsonx_orchestrate/client/utils.py,sha256=
|
81
|
+
ibm_watsonx_orchestrate/client/utils.py,sha256=_jP-qkOkjAIZ4yakQANKy0oaAOtUtfjrPP7cO-uPteU,5839
|
79
82
|
ibm_watsonx_orchestrate/client/agents/agent_client.py,sha256=v1ZqXKj3p5JeJyOLpV84UUI2LY8XPjW1ejo5yzkeiMQ,4708
|
80
83
|
ibm_watsonx_orchestrate/client/agents/assistant_agent_client.py,sha256=1JQN0E4T_uz5V0LM-LD1ahNu2KCeFBjXAr8WCiP9mkE,1745
|
81
84
|
ibm_watsonx_orchestrate/client/agents/external_agent_client.py,sha256=iQ44XBdC4rYfS-zFn4St1xC5y5gf5SNqKHzMNQcFDZc,1808
|
@@ -85,6 +88,7 @@ ibm_watsonx_orchestrate/client/analytics/llm/analytics_llm_client.py,sha256=0YS_
|
|
85
88
|
ibm_watsonx_orchestrate/client/connections/__init__.py,sha256=J7TOyVg38h71AlaJjlFs5fOuAXTceHvELtOJ9oz4Mvg,207
|
86
89
|
ibm_watsonx_orchestrate/client/connections/connections_client.py,sha256=B6LQPwoFHg_CIXHEJBjVu6fXnRj_xVsLGsC-DhmdfSQ,8478
|
87
90
|
ibm_watsonx_orchestrate/client/connections/utils.py,sha256=f6HsiDI6cycOqfYN6P4uZ3SQds83xlh83zTUioZPeYk,2618
|
91
|
+
ibm_watsonx_orchestrate/client/copilot/cpe/copilot_cpe_client.py,sha256=eGE5VJb47XZxiMszBVQ7u0NKTVeHPuGVyfRJ6qPKlVs,1939
|
88
92
|
ibm_watsonx_orchestrate/client/knowledge_bases/knowledge_base_client.py,sha256=YjC16dcL_l0jd-6yZ6uH8anlL4yaIv9f-7Y_urPuXWM,2201
|
89
93
|
ibm_watsonx_orchestrate/client/model_policies/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
90
94
|
ibm_watsonx_orchestrate/client/model_policies/model_policies_client.py,sha256=Ddjraesv1MRPhZebB0PdBL0zgdsoWmnYpWTUci_6XFI,2258
|
@@ -93,8 +97,8 @@ ibm_watsonx_orchestrate/client/models/models_client.py,sha256=ZvP3iPgUFw_SXp41kJ
|
|
93
97
|
ibm_watsonx_orchestrate/client/toolkit/toolkit_client.py,sha256=TLFNS39EeBD_t4Y-rX9sGp4sWBDr--mE5qVtHq8Q2hk,3121
|
94
98
|
ibm_watsonx_orchestrate/client/tools/tempus_client.py,sha256=24fKDZUOVHBW-Vj4mubnpnUmab5LgGn8u5hOVyJaozI,1804
|
95
99
|
ibm_watsonx_orchestrate/client/tools/tool_client.py,sha256=d3i3alVwa0TCN72w9sWOrM20GCbNmnpTnqEOJVbBIFM,1994
|
96
|
-
ibm_watsonx_orchestrate/docker/compose-lite.yml,sha256=
|
97
|
-
ibm_watsonx_orchestrate/docker/default.env,sha256
|
100
|
+
ibm_watsonx_orchestrate/docker/compose-lite.yml,sha256=gn6BmT1xGlnmrufo4w6l-FmeyVaXcSjlDt40g4cx2fA,39432
|
101
|
+
ibm_watsonx_orchestrate/docker/default.env,sha256=-yrzVhSP8lng5m6IqCDDGN32tul38gUCiNr-sismIM0,5828
|
98
102
|
ibm_watsonx_orchestrate/docker/proxy-config-single.yaml,sha256=WEbK4ENFuTCYhzRu_QblWp1_GMARgZnx5vReQafkIG8,308
|
99
103
|
ibm_watsonx_orchestrate/docker/start-up.sh,sha256=LTtwHp0AidVgjohis2LXGvZnkFQStOiUAxgGABOyeUI,1811
|
100
104
|
ibm_watsonx_orchestrate/docker/sdk/ibm_watsonx_orchestrate-0.6.0-py3-none-any.whl,sha256=Hi3-owh5OM0Jz2ihX9nLoojnr7Ky1TV-GelyqLcewLE,2047417
|
@@ -102,14 +106,14 @@ ibm_watsonx_orchestrate/docker/sdk/ibm_watsonx_orchestrate-0.6.0.tar.gz,sha256=e
|
|
102
106
|
ibm_watsonx_orchestrate/docker/tempus/common-config.yaml,sha256=Zo3F36F5DV4VO_vUg1RG-r4WhcukVh79J2fXhGl6j0A,22
|
103
107
|
ibm_watsonx_orchestrate/flow_builder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
104
108
|
ibm_watsonx_orchestrate/flow_builder/data_map.py,sha256=1brmWWFERDsNG2XGais-5-r58LKUUwBtqwdaLQIFRhE,503
|
105
|
-
ibm_watsonx_orchestrate/flow_builder/node.py,sha256=
|
106
|
-
ibm_watsonx_orchestrate/flow_builder/types.py,sha256=
|
109
|
+
ibm_watsonx_orchestrate/flow_builder/node.py,sha256=I90a-K_xnEgZrl2NHo_rDmfT2Dj0n0Om15aDnEzhe74,4755
|
110
|
+
ibm_watsonx_orchestrate/flow_builder/types.py,sha256=xNXHWxVMx7e954ERveBpl52BFTGOx6pZq4k3zVxJEng,37166
|
107
111
|
ibm_watsonx_orchestrate/flow_builder/utils.py,sha256=wTyYnLmB_SsT7A-VxRRnqNZ6jwChJ95EnlZ2wZXU03o,11731
|
108
|
-
ibm_watsonx_orchestrate/flow_builder/flows/__init__.py,sha256=
|
112
|
+
ibm_watsonx_orchestrate/flow_builder/flows/__init__.py,sha256=dHS2fB-xbVS5yt_yNyZqYeuiAGs78lbCF65AX_VQlD4,1025
|
109
113
|
ibm_watsonx_orchestrate/flow_builder/flows/constants.py,sha256=XXYtL5Y1OTjj3jKo2zoJiwb7FCUNu_M43fgU8w591TY,322
|
110
114
|
ibm_watsonx_orchestrate/flow_builder/flows/decorators.py,sha256=lr4qSWq5PWqlGFf4fzUQZCVQDHBYflrYwZ24S89Aq80,2794
|
111
115
|
ibm_watsonx_orchestrate/flow_builder/flows/events.py,sha256=VyaBm0sADwr15LWfKbcBQS1M80NKqzYDj3UlW3OpOf4,2984
|
112
|
-
ibm_watsonx_orchestrate/flow_builder/flows/flow.py,sha256=
|
116
|
+
ibm_watsonx_orchestrate/flow_builder/flows/flow.py,sha256=a33ciPFM5VUQlY4BdcXAQVed_MGARNi_GpChIHJ1uS4,55124
|
113
117
|
ibm_watsonx_orchestrate/run/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
114
118
|
ibm_watsonx_orchestrate/run/connections.py,sha256=K-65GXPA8GEsVmRdPfMe_LB2G9RfXQUr95wvRUOhkS4,1828
|
115
119
|
ibm_watsonx_orchestrate/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -118,8 +122,8 @@ ibm_watsonx_orchestrate/utils/utils.py,sha256=U7z_2iASoFiZ2zM0a_2Mc2Y-P5oOT7hOwu
|
|
118
122
|
ibm_watsonx_orchestrate/utils/logging/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
119
123
|
ibm_watsonx_orchestrate/utils/logging/logger.py,sha256=FzeGnidXAjC7yHrvIaj4KZPeaBBSCniZFlwgr5yV3oA,1037
|
120
124
|
ibm_watsonx_orchestrate/utils/logging/logging.yaml,sha256=9_TKfuFr1barnOKP0fZT5D6MhddiwsXVTFjtRbcOO5w,314
|
121
|
-
ibm_watsonx_orchestrate-1.
|
122
|
-
ibm_watsonx_orchestrate-1.
|
123
|
-
ibm_watsonx_orchestrate-1.
|
124
|
-
ibm_watsonx_orchestrate-1.
|
125
|
-
ibm_watsonx_orchestrate-1.
|
125
|
+
ibm_watsonx_orchestrate-1.8.0b1.dist-info/METADATA,sha256=3gAUVcjqPm5Ce9PAXrrhQ9A-0bjMCVYkCPpRP6V7xDs,1431
|
126
|
+
ibm_watsonx_orchestrate-1.8.0b1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
127
|
+
ibm_watsonx_orchestrate-1.8.0b1.dist-info/entry_points.txt,sha256=SfIT02-Jen5e99OcLhzbcM9Bdyf8SGVOCtnSplgZdQI,69
|
128
|
+
ibm_watsonx_orchestrate-1.8.0b1.dist-info/licenses/LICENSE,sha256=Shgxx7hTdCOkiVRmfGgp_1ISISrwQD7m2f0y8Hsapl4,1083
|
129
|
+
ibm_watsonx_orchestrate-1.8.0b1.dist-info/RECORD,,
|
{ibm_watsonx_orchestrate-1.7.0b1.dist-info → ibm_watsonx_orchestrate-1.8.0b1.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|
File without changes
|