uipath-core 0.2.2__py3-none-any.whl → 0.2.4__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.
- uipath/core/chat/content.py +1 -0
- uipath/core/guardrails/guardrails.py +5 -0
- {uipath_core-0.2.2.dist-info → uipath_core-0.2.4.dist-info}/METADATA +1 -1
- {uipath_core-0.2.2.dist-info → uipath_core-0.2.4.dist-info}/RECORD +6 -6
- {uipath_core-0.2.2.dist-info → uipath_core-0.2.4.dist-info}/WHEEL +0 -0
- {uipath_core-0.2.2.dist-info → uipath_core-0.2.4.dist-info}/licenses/LICENSE +0 -0
uipath/core/chat/content.py
CHANGED
|
@@ -87,5 +87,6 @@ class UiPathConversationContentPart(BaseModel):
|
|
|
87
87
|
citations: list[UiPathConversationCitation] | None = None
|
|
88
88
|
is_transcript: bool | None = Field(None, alias="isTranscript")
|
|
89
89
|
is_incomplete: bool | None = Field(None, alias="isIncomplete")
|
|
90
|
+
name: str | None = None
|
|
90
91
|
|
|
91
92
|
model_config = ConfigDict(validate_by_name=True, validate_by_alias=True)
|
|
@@ -120,6 +120,11 @@ class UniversalRule(BaseModel):
|
|
|
120
120
|
|
|
121
121
|
rule_type: Literal["always"] = Field(alias="$ruleType")
|
|
122
122
|
apply_to: ApplyTo = Field(alias="applyTo")
|
|
123
|
+
rule_description: str | None = Field(
|
|
124
|
+
default=None,
|
|
125
|
+
exclude=True,
|
|
126
|
+
description="Human-friendly description of the rule condition.",
|
|
127
|
+
)
|
|
123
128
|
|
|
124
129
|
model_config = ConfigDict(populate_by_name=True, extra="allow")
|
|
125
130
|
|
|
@@ -3,7 +3,7 @@ uipath/core/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
3
3
|
uipath/core/chat/__init__.py,sha256=1qwg2n6EhRS_u3vkXN1D40q_5bYNxj5BeQXUp7VtyQw,6013
|
|
4
4
|
uipath/core/chat/async_stream.py,sha256=XbfSAu67TKYzzHoeh-WkolP3WXqEGJ2fTtCX5XqfUKY,2163
|
|
5
5
|
uipath/core/chat/citation.py,sha256=UBZ51wk3PyaXr7uljicEH_8Q2dthBMxYvPR6j2dEhA4,2608
|
|
6
|
-
uipath/core/chat/content.py,sha256=
|
|
6
|
+
uipath/core/chat/content.py,sha256=TcZbmuSskr2TrFngp4ILdkNBwlunhcZOzDjmiSWjsls,3163
|
|
7
7
|
uipath/core/chat/conversation.py,sha256=CVCj4z0DYQsodciCpmiefMjvn8NmJsLTaZU49QiseUw,1723
|
|
8
8
|
uipath/core/chat/error.py,sha256=uXaI0jHYsRhOq8LRHVN5fwODX-uJX68PqJU26oe-4c4,1165
|
|
9
9
|
uipath/core/chat/event.py,sha256=SRif5ZQGEKQBmzcSl2fx0O_--zlKZ7lOVh15hRjLxP4,3832
|
|
@@ -17,7 +17,7 @@ uipath/core/errors/errors.py,sha256=5LajjuTfNW82ju07wT5mD3tXk0S-Ju7OqJqQpPN0F6g,
|
|
|
17
17
|
uipath/core/guardrails/__init__.py,sha256=hUCmD4y5te2iy01YnJlBuf2RWvqxmsNzoyOamXLXf2E,1028
|
|
18
18
|
uipath/core/guardrails/_deterministic_guardrails_service.py,sha256=61ROXYmX3rjBfFUp7E83fm4Lk7h1DlJeukpZm7uzVqQ,6355
|
|
19
19
|
uipath/core/guardrails/_evaluators.py,sha256=10tIRUufxoy9MkZPb-ytjsCSCIfIqQSOYXyEl4G7PSw,15649
|
|
20
|
-
uipath/core/guardrails/guardrails.py,sha256=
|
|
20
|
+
uipath/core/guardrails/guardrails.py,sha256=BQbcRQGCUgCZOQIIWNFkW-kpfhqDLXAWPUs_K7iMNs0,5595
|
|
21
21
|
uipath/core/serialization/__init__.py,sha256=thAMx0WY03vnqhKCDVc9burqKWDxSNn3R-CJQU_1LIs,186
|
|
22
22
|
uipath/core/serialization/json.py,sha256=S0-ykGfroleRC0gJBNuTyJCx-GB8e6ZG9uTUKiD4PSc,4791
|
|
23
23
|
uipath/core/tracing/__init__.py,sha256=Y0wfRSGCVcDoFYTmTkVQElu5JE91h4dTNkKQnd86dBM,568
|
|
@@ -28,7 +28,7 @@ uipath/core/tracing/processors.py,sha256=XlMKA_AWwrtC-0ytnAHxl4P9kXlQdsjcn8zwnSp
|
|
|
28
28
|
uipath/core/tracing/span_utils.py,sha256=LZXNdnI0-fhKe49CLPsvMJIfh9zdzk8rK4g4YN5RfDU,13064
|
|
29
29
|
uipath/core/tracing/trace_manager.py,sha256=vmPup-C2pSgwpSdcCzAjzP_nTtRWZgqlxnNT50ygOfk,3843
|
|
30
30
|
uipath/core/tracing/types.py,sha256=8A8fFuWqMGk0SzIrFbMajmY6LA3w57h-YA602OctCrI,634
|
|
31
|
-
uipath_core-0.2.
|
|
32
|
-
uipath_core-0.2.
|
|
33
|
-
uipath_core-0.2.
|
|
34
|
-
uipath_core-0.2.
|
|
31
|
+
uipath_core-0.2.4.dist-info/METADATA,sha256=jzDvhDV_sWnff-IwLeEua97kGVjfg7mxPXDQ4iBF5ik,938
|
|
32
|
+
uipath_core-0.2.4.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
33
|
+
uipath_core-0.2.4.dist-info/licenses/LICENSE,sha256=-KBavWXepyDjimmzH5fVAsi-6jNVpIKFc2kZs0Ri4ng,1058
|
|
34
|
+
uipath_core-0.2.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|