unique_toolkit 1.14.1__py3-none-any.whl → 1.14.3__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.
- unique_toolkit/__init__.py +19 -1
- unique_toolkit/chat/__init__.py +8 -1
- unique_toolkit/chat/service.py +86 -1430
- unique_toolkit/framework_utilities/langchain/client.py +18 -1
- unique_toolkit/services/chat_service.py +1498 -0
- unique_toolkit/test_utilities/events.py +10 -8
- {unique_toolkit-1.14.1.dist-info → unique_toolkit-1.14.3.dist-info}/METADATA +9 -1
- {unique_toolkit-1.14.1.dist-info → unique_toolkit-1.14.3.dist-info}/RECORD +11 -10
- /unique_toolkit/{knowledge_base.py → services/knowledge_base.py} +0 -0
- {unique_toolkit-1.14.1.dist-info → unique_toolkit-1.14.3.dist-info}/LICENSE +0 -0
- {unique_toolkit-1.14.1.dist-info → unique_toolkit-1.14.3.dist-info}/WHEEL +0 -0
@@ -1,7 +1,7 @@
|
|
1
1
|
import random
|
2
2
|
import string
|
3
3
|
from datetime import datetime
|
4
|
-
from typing import
|
4
|
+
from typing import Any
|
5
5
|
|
6
6
|
from unique_toolkit.app.schemas import (
|
7
7
|
BaseEvent,
|
@@ -12,11 +12,7 @@ from unique_toolkit.app.schemas import (
|
|
12
12
|
ChatEventUserMessage,
|
13
13
|
EventName,
|
14
14
|
)
|
15
|
-
|
16
|
-
if TYPE_CHECKING:
|
17
|
-
from typing import Any
|
18
|
-
|
19
|
-
from unique_toolkit.app.unique_settings import UniqueSettings
|
15
|
+
from unique_toolkit.app.unique_settings import UniqueSettings
|
20
16
|
|
21
17
|
|
22
18
|
def generated_numeric_string(length: int) -> str:
|
@@ -166,12 +162,18 @@ class TestEventFactory:
|
|
166
162
|
user_message_original_text: str | None = None,
|
167
163
|
assistant_message_created_at: datetime | None = None,
|
168
164
|
configuration: dict[str, Any] | None = None,
|
169
|
-
chat_id: str =
|
170
|
-
assistant_id: str =
|
165
|
+
chat_id: str | None = None,
|
166
|
+
assistant_id: str | None = None,
|
171
167
|
user_id: str | None = None,
|
172
168
|
company_id: str | None = None,
|
173
169
|
version: str = "1.0",
|
174
170
|
) -> ChatEvent:
|
171
|
+
if chat_id is None:
|
172
|
+
chat_id = generated_chat_id()
|
173
|
+
|
174
|
+
if assistant_id is None:
|
175
|
+
assistant_id = generated_assistant_id()
|
176
|
+
|
175
177
|
payload = self.get_chat_event_payload(
|
176
178
|
name=name,
|
177
179
|
description=description,
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: unique_toolkit
|
3
|
-
Version: 1.14.
|
3
|
+
Version: 1.14.3
|
4
4
|
Summary:
|
5
5
|
License: Proprietary
|
6
6
|
Author: Cedric Klinkert
|
@@ -118,6 +118,14 @@ All notable changes to this project will be documented in this file.
|
|
118
118
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
119
119
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
120
120
|
|
121
|
+
## [1.14.3] - 2025-10-08
|
122
|
+
- Reorganizes documentation
|
123
|
+
- All service interface towards a single folder
|
124
|
+
- Add main imports to __init__
|
125
|
+
|
126
|
+
## [1.14.2] - 2025-10-08
|
127
|
+
- Add utilities for testing and fix external import issue
|
128
|
+
|
121
129
|
## [1.14.1] - 2025-10-08
|
122
130
|
- Add utilities for testing
|
123
131
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
unique_toolkit/__init__.py,sha256=
|
1
|
+
unique_toolkit/__init__.py,sha256=qrQ0kgAZnmGR6-UpWOpAL4yd-2ic5Jjwh6s8et-7ZTc,1372
|
2
2
|
unique_toolkit/_common/_base_service.py,sha256=S8H0rAebx7GsOldA7xInLp3aQJt9yEPDQdsGSFRJsGg,276
|
3
3
|
unique_toolkit/_common/_time_utils.py,sha256=ztmTovTvr-3w71Ns2VwXC65OKUUh-sQlzbHdKTQWm-w,135
|
4
4
|
unique_toolkit/_common/api_calling/human_verification_manager.py,sha256=wgK0hefTh3pdrs8kH26Pba46ROQoFihEhT4r6h189wo,7819
|
@@ -102,12 +102,12 @@ unique_toolkit/app/performance/async_wrapper.py,sha256=yVVcRDkcdyfjsxro-N29SBvi-
|
|
102
102
|
unique_toolkit/app/schemas.py,sha256=wbfYGl5PjMBG25IEPzeygObBJIxP5CfXpBWS-4NWZJs,9830
|
103
103
|
unique_toolkit/app/unique_settings.py,sha256=849pbASOu8QbHu9QfCJhYTisjKRet34J-fRs0gNKZ0Q,12369
|
104
104
|
unique_toolkit/app/verification.py,sha256=GxFFwcJMy25fCA_Xe89wKW7bgqOu8PAs5y8QpHF0GSc,3861
|
105
|
-
unique_toolkit/chat/__init__.py,sha256=
|
105
|
+
unique_toolkit/chat/__init__.py,sha256=uP7P6YPeOjEOvpX3bhcU6ND_m0QLr4wMklcrnAKK0q4,804
|
106
106
|
unique_toolkit/chat/constants.py,sha256=05kq6zjqUVB2d6_P7s-90nbljpB3ryxwCI-CAz0r2O4,83
|
107
107
|
unique_toolkit/chat/deprecated/service.py,sha256=CYwzXi7OB0RjHd73CO2jq8SlpdBmDYLatzPFkb5sA0k,6529
|
108
108
|
unique_toolkit/chat/functions.py,sha256=qxBjxIFoko5vyQNJDYpIkMtBhEGGcSlWn6fkAY-dFVE,45213
|
109
109
|
unique_toolkit/chat/schemas.py,sha256=u3WPdMkOlmwPGHUueQC-nk8k-QkM7ZSUcU0f-32g6Uc,6718
|
110
|
-
unique_toolkit/chat/service.py,sha256=
|
110
|
+
unique_toolkit/chat/service.py,sha256=6D00OL4QrGafbOhTaC5zNXaNgg7gS5W_2ePVa4LhqpE,4439
|
111
111
|
unique_toolkit/chat/state.py,sha256=Cjgwv_2vhDFbV69xxsn7SefhaoIAEqLx3ferdVFCnOg,1445
|
112
112
|
unique_toolkit/chat/utils.py,sha256=ihm-wQykBWhB4liR3LnwPVPt_qGW6ETq21Mw4HY0THE,854
|
113
113
|
unique_toolkit/content/__init__.py,sha256=EdJg_A_7loEtCQf4cah3QARQreJx6pdz89Rm96YbMVg,940
|
@@ -124,13 +124,12 @@ unique_toolkit/embedding/schemas.py,sha256=1GvKCaSk4jixzVQ2PKq8yDqwGEVY_hWclYtoA
|
|
124
124
|
unique_toolkit/embedding/service.py,sha256=XViQCbjG9yznIFhWjgBkla_4s7zM2lO12Cqob1FU63k,5283
|
125
125
|
unique_toolkit/embedding/utils.py,sha256=v86lo__bCJbxZBQ3OcLu5SuwT6NbFfWlcq8iyk6BuzQ,279
|
126
126
|
unique_toolkit/framework_utilities/__init__.py,sha256=fvAn9y4MRL1JgoO14ufQtLVRPRHn4jP07XRqt-TItCA,68
|
127
|
-
unique_toolkit/framework_utilities/langchain/client.py,sha256=
|
127
|
+
unique_toolkit/framework_utilities/langchain/client.py,sha256=RwVZTH5SZzwwLjP5bZJv419EQyQyVUFJNZifERcBCxs,1870
|
128
128
|
unique_toolkit/framework_utilities/langchain/history.py,sha256=R9RuCeSFNaUO3OZ0G_LmIC4gmOCIANcl91MfyWLnZ1c,650
|
129
129
|
unique_toolkit/framework_utilities/openai/__init__.py,sha256=CrHYoC7lv2pBscitLerAFweqy5jh1R671LA_jZQ4lWo,232
|
130
130
|
unique_toolkit/framework_utilities/openai/client.py,sha256=ct1cqPcIK1wPl11G9sJV39ZnLJwKr2kDUDSra0FjvtM,2007
|
131
131
|
unique_toolkit/framework_utilities/openai/message_builder.py,sha256=RT1pZjxH42TFZlAxQ5zlqdKPvHKVTjc5t3JDUy58I7Q,6887
|
132
132
|
unique_toolkit/framework_utilities/utils.py,sha256=JK7g2yMfEx3eMprug26769xqNpS5WJcizf8n2zWMBng,789
|
133
|
-
unique_toolkit/knowledge_base.py,sha256=UU8S858sjrAJhOKtDb0b0RvjwzjZOvErNk4ShyLrTZY,27610
|
134
133
|
unique_toolkit/language_model/__init__.py,sha256=lRQyLlbwHbNFf4-0foBU13UGb09lwEeodbVsfsSgaCk,1971
|
135
134
|
unique_toolkit/language_model/builder.py,sha256=4OKfwJfj3TrgO1ezc_ewIue6W7BCQ2ZYQXUckWVPPTA,3369
|
136
135
|
unique_toolkit/language_model/constants.py,sha256=B-topqW0r83dkC_25DeQfnPk3n53qzIHUCBS7YJ0-1U,119
|
@@ -142,6 +141,8 @@ unique_toolkit/language_model/schemas.py,sha256=w23zH2OAYkTsS-wAqelUdhO9TCgis0Tb
|
|
142
141
|
unique_toolkit/language_model/service.py,sha256=JkYGtCug8POQskTv_aoYkzTMOaPCWRM94y73o3bUttQ,12019
|
143
142
|
unique_toolkit/language_model/utils.py,sha256=bPQ4l6_YO71w-zaIPanUUmtbXC1_hCvLK0tAFc3VCRc,1902
|
144
143
|
unique_toolkit/protocols/support.py,sha256=V15WEIFKVMyF1QCnR8vIi4GrJy4dfTCB6d6JlqPZ58o,2341
|
144
|
+
unique_toolkit/services/chat_service.py,sha256=bSrsN_7jsBW_BiuIWvtwkJ57AmlKLKz_cWlc0t0Q0P8,54621
|
145
|
+
unique_toolkit/services/knowledge_base.py,sha256=UU8S858sjrAJhOKtDb0b0RvjwzjZOvErNk4ShyLrTZY,27610
|
145
146
|
unique_toolkit/short_term_memory/__init__.py,sha256=2mI3AUrffgH7Yt-xS57EGqnHf7jnn6xquoKEhJqk3Wg,185
|
146
147
|
unique_toolkit/short_term_memory/constants.py,sha256=698CL6-wjup2MvU19RxSmQk3gX7aqW_OOpZB7sbz_Xg,34
|
147
148
|
unique_toolkit/short_term_memory/functions.py,sha256=3WiK-xatY5nh4Dr5zlDUye1k3E6kr41RiscwtTplw5k,4484
|
@@ -149,8 +150,8 @@ unique_toolkit/short_term_memory/schemas.py,sha256=OhfcXyF6ACdwIXW45sKzjtZX_gkcJ
|
|
149
150
|
unique_toolkit/short_term_memory/service.py,sha256=5PeVBu1ZCAfyDb2HLVvlmqSbyzBBuE9sI2o9Aajqjxg,8884
|
150
151
|
unique_toolkit/smart_rules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
151
152
|
unique_toolkit/smart_rules/compile.py,sha256=Ozhh70qCn2yOzRWr9d8WmJeTo7AQurwd3tStgBMPFLA,1246
|
152
|
-
unique_toolkit/test_utilities/events.py,sha256=
|
153
|
-
unique_toolkit-1.14.
|
154
|
-
unique_toolkit-1.14.
|
155
|
-
unique_toolkit-1.14.
|
156
|
-
unique_toolkit-1.14.
|
153
|
+
unique_toolkit/test_utilities/events.py,sha256=_mwV2bs5iLjxS1ynDCjaIq-gjjKhXYCK-iy3dRfvO3g,6410
|
154
|
+
unique_toolkit-1.14.3.dist-info/LICENSE,sha256=GlN8wHNdh53xwOPg44URnwag6TEolCjoq3YD_KrWgss,193
|
155
|
+
unique_toolkit-1.14.3.dist-info/METADATA,sha256=a20ctjbmG5B_awkA-XLgmEcA0aCTYDv9W-njpI8u8S0,36512
|
156
|
+
unique_toolkit-1.14.3.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
157
|
+
unique_toolkit-1.14.3.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|