unique_toolkit 0.5.1__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.
Files changed (25) hide show
  1. {unique_toolkit-0.5.1 → unique_toolkit-0.5.3}/CHANGELOG.md +6 -0
  2. {unique_toolkit-0.5.1 → unique_toolkit-0.5.3}/PKG-INFO +8 -2
  3. {unique_toolkit-0.5.1 → unique_toolkit-0.5.3}/pyproject.toml +2 -2
  4. {unique_toolkit-0.5.1 → unique_toolkit-0.5.3}/unique_toolkit/app/schemas.py +2 -2
  5. {unique_toolkit-0.5.1 → unique_toolkit-0.5.3}/LICENSE +0 -0
  6. {unique_toolkit-0.5.1 → unique_toolkit-0.5.3}/README.md +0 -0
  7. {unique_toolkit-0.5.1 → unique_toolkit-0.5.3}/unique_toolkit/__init__.py +0 -0
  8. {unique_toolkit-0.5.1 → unique_toolkit-0.5.3}/unique_toolkit/app/init_logging.py +0 -0
  9. {unique_toolkit-0.5.1 → unique_toolkit-0.5.3}/unique_toolkit/app/init_sdk.py +0 -0
  10. {unique_toolkit-0.5.1 → unique_toolkit-0.5.3}/unique_toolkit/app/performance/async_executor.py +0 -0
  11. {unique_toolkit-0.5.1 → unique_toolkit-0.5.3}/unique_toolkit/app/performance/async_wrapper.py +0 -0
  12. {unique_toolkit-0.5.1 → unique_toolkit-0.5.3}/unique_toolkit/app/verification.py +0 -0
  13. {unique_toolkit-0.5.1 → unique_toolkit-0.5.3}/unique_toolkit/chat/schemas.py +0 -0
  14. {unique_toolkit-0.5.1 → unique_toolkit-0.5.3}/unique_toolkit/chat/service.py +0 -0
  15. {unique_toolkit-0.5.1 → unique_toolkit-0.5.3}/unique_toolkit/chat/state.py +0 -0
  16. {unique_toolkit-0.5.1 → unique_toolkit-0.5.3}/unique_toolkit/chat/utils.py +0 -0
  17. {unique_toolkit-0.5.1 → unique_toolkit-0.5.3}/unique_toolkit/content/schemas.py +0 -0
  18. {unique_toolkit-0.5.1 → unique_toolkit-0.5.3}/unique_toolkit/content/service.py +0 -0
  19. {unique_toolkit-0.5.1 → unique_toolkit-0.5.3}/unique_toolkit/content/utils.py +0 -0
  20. {unique_toolkit-0.5.1 → unique_toolkit-0.5.3}/unique_toolkit/embedding/schemas.py +0 -0
  21. {unique_toolkit-0.5.1 → unique_toolkit-0.5.3}/unique_toolkit/embedding/service.py +0 -0
  22. {unique_toolkit-0.5.1 → unique_toolkit-0.5.3}/unique_toolkit/language_model/infos.py +0 -0
  23. {unique_toolkit-0.5.1 → unique_toolkit-0.5.3}/unique_toolkit/language_model/schemas.py +0 -0
  24. {unique_toolkit-0.5.1 → unique_toolkit-0.5.3}/unique_toolkit/language_model/service.py +0 -0
  25. {unique_toolkit-0.5.1 → unique_toolkit-0.5.3}/unique_toolkit/language_model/utils.py +0 -0
@@ -5,6 +5,12 @@ 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
+
11
+ ## [0.5.2] - 2024-07-25
12
+ - correct event schema
13
+
8
14
  ## [0.5.1] - 2024-07-23
9
15
  - correct documentation
10
16
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: unique_toolkit
3
- Version: 0.5.1
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 (>=2.0.1,<3.0.0)
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,12 @@ 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
+
108
+ ## [0.5.2] - 2024-07-25
109
+ - correct event schema
110
+
105
111
  ## [0.5.1] - 2024-07-23
106
112
  - correct documentation
107
113
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "unique_toolkit"
3
- version = "0.5.1"
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 = "^2.0.1"
20
+ numpy = "^1.26.4"
21
21
  python-dotenv = "^1.0.1"
22
22
  requests = "^2.32.3"
23
23
  regex = "^2024.5.15"
@@ -32,7 +32,7 @@ class EventAssistantMessage(BaseModel):
32
32
  class EventPayload(BaseModel):
33
33
  model_config = model_config
34
34
 
35
- name: EventName
35
+ name: str
36
36
  description: str
37
37
  configuration: dict[str, Any]
38
38
  chat_id: str
@@ -46,7 +46,7 @@ class Event(BaseModel):
46
46
  model_config = model_config
47
47
 
48
48
  id: str
49
- event: str
49
+ event: EventName
50
50
  user_id: str
51
51
  company_id: str
52
52
  payload: EventPayload
File without changes
File without changes