unique_toolkit 0.5.2__tar.gz → 0.5.3__tar.gz
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-0.5.2 → unique_toolkit-0.5.3}/CHANGELOG.md +3 -0
- {unique_toolkit-0.5.2 → unique_toolkit-0.5.3}/PKG-INFO +5 -2
- {unique_toolkit-0.5.2 → unique_toolkit-0.5.3}/pyproject.toml +2 -2
- {unique_toolkit-0.5.2 → unique_toolkit-0.5.3}/LICENSE +0 -0
- {unique_toolkit-0.5.2 → unique_toolkit-0.5.3}/README.md +0 -0
- {unique_toolkit-0.5.2 → unique_toolkit-0.5.3}/unique_toolkit/__init__.py +0 -0
- {unique_toolkit-0.5.2 → unique_toolkit-0.5.3}/unique_toolkit/app/init_logging.py +0 -0
- {unique_toolkit-0.5.2 → unique_toolkit-0.5.3}/unique_toolkit/app/init_sdk.py +0 -0
- {unique_toolkit-0.5.2 → unique_toolkit-0.5.3}/unique_toolkit/app/performance/async_executor.py +0 -0
- {unique_toolkit-0.5.2 → unique_toolkit-0.5.3}/unique_toolkit/app/performance/async_wrapper.py +0 -0
- {unique_toolkit-0.5.2 → unique_toolkit-0.5.3}/unique_toolkit/app/schemas.py +0 -0
- {unique_toolkit-0.5.2 → unique_toolkit-0.5.3}/unique_toolkit/app/verification.py +0 -0
- {unique_toolkit-0.5.2 → unique_toolkit-0.5.3}/unique_toolkit/chat/schemas.py +0 -0
- {unique_toolkit-0.5.2 → unique_toolkit-0.5.3}/unique_toolkit/chat/service.py +0 -0
- {unique_toolkit-0.5.2 → unique_toolkit-0.5.3}/unique_toolkit/chat/state.py +0 -0
- {unique_toolkit-0.5.2 → unique_toolkit-0.5.3}/unique_toolkit/chat/utils.py +0 -0
- {unique_toolkit-0.5.2 → unique_toolkit-0.5.3}/unique_toolkit/content/schemas.py +0 -0
- {unique_toolkit-0.5.2 → unique_toolkit-0.5.3}/unique_toolkit/content/service.py +0 -0
- {unique_toolkit-0.5.2 → unique_toolkit-0.5.3}/unique_toolkit/content/utils.py +0 -0
- {unique_toolkit-0.5.2 → unique_toolkit-0.5.3}/unique_toolkit/embedding/schemas.py +0 -0
- {unique_toolkit-0.5.2 → unique_toolkit-0.5.3}/unique_toolkit/embedding/service.py +0 -0
- {unique_toolkit-0.5.2 → unique_toolkit-0.5.3}/unique_toolkit/language_model/infos.py +0 -0
- {unique_toolkit-0.5.2 → unique_toolkit-0.5.3}/unique_toolkit/language_model/schemas.py +0 -0
- {unique_toolkit-0.5.2 → unique_toolkit-0.5.3}/unique_toolkit/language_model/service.py +0 -0
- {unique_toolkit-0.5.2 → unique_toolkit-0.5.3}/unique_toolkit/language_model/utils.py +0 -0
@@ -5,6 +5,9 @@ All notable changes to this project will be documented in this file.
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
7
7
|
|
8
|
+
## [0.5.3] - 2024-07-25
|
9
|
+
- downgrade numpy version to ^1.26.4 to be compatible with langchain libraries (require numpy<2.0)
|
10
|
+
|
8
11
|
## [0.5.2] - 2024-07-25
|
9
12
|
- correct event schema
|
10
13
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: unique_toolkit
|
3
|
-
Version: 0.5.
|
3
|
+
Version: 0.5.3
|
4
4
|
Summary:
|
5
5
|
License: MIT
|
6
6
|
Author: Martin Fadler
|
@@ -10,7 +10,7 @@ Classifier: License :: OSI Approved :: MIT License
|
|
10
10
|
Classifier: Programming Language :: Python :: 3
|
11
11
|
Classifier: Programming Language :: Python :: 3.11
|
12
12
|
Classifier: Programming Language :: Python :: 3.12
|
13
|
-
Requires-Dist: numpy (>=
|
13
|
+
Requires-Dist: numpy (>=1.26.4,<2.0.0)
|
14
14
|
Requires-Dist: pydantic (>=2.8.2,<3.0.0)
|
15
15
|
Requires-Dist: pyhumps (>=3.8.0,<4.0.0)
|
16
16
|
Requires-Dist: python-dotenv (>=1.0.1,<2.0.0)
|
@@ -102,6 +102,9 @@ All notable changes to this project will be documented in this file.
|
|
102
102
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
103
103
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
104
104
|
|
105
|
+
## [0.5.3] - 2024-07-25
|
106
|
+
- downgrade numpy version to ^1.26.4 to be compatible with langchain libraries (require numpy<2.0)
|
107
|
+
|
105
108
|
## [0.5.2] - 2024-07-25
|
106
109
|
- correct event schema
|
107
110
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = "unique_toolkit"
|
3
|
-
version = "0.5.
|
3
|
+
version = "0.5.3"
|
4
4
|
description = ""
|
5
5
|
authors = [
|
6
6
|
"Martin Fadler <martin.fadler@unique.ch>",
|
@@ -17,7 +17,7 @@ typing-extensions = "^4.9.0"
|
|
17
17
|
pydantic = "^2.8.2"
|
18
18
|
pyhumps = "^3.8.0"
|
19
19
|
unique-sdk = "^0.8.10"
|
20
|
-
numpy = "^
|
20
|
+
numpy = "^1.26.4"
|
21
21
|
python-dotenv = "^1.0.1"
|
22
22
|
requests = "^2.32.3"
|
23
23
|
regex = "^2024.5.15"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{unique_toolkit-0.5.2 → unique_toolkit-0.5.3}/unique_toolkit/app/performance/async_executor.py
RENAMED
File without changes
|
{unique_toolkit-0.5.2 → unique_toolkit-0.5.3}/unique_toolkit/app/performance/async_wrapper.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|