unique_toolkit 0.5.0__tar.gz → 0.5.1__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.0 → unique_toolkit-0.5.1}/CHANGELOG.md +3 -0
  2. {unique_toolkit-0.5.0 → unique_toolkit-0.5.1}/PKG-INFO +6 -3
  3. {unique_toolkit-0.5.0 → unique_toolkit-0.5.1}/README.md +2 -2
  4. {unique_toolkit-0.5.0 → unique_toolkit-0.5.1}/pyproject.toml +1 -1
  5. {unique_toolkit-0.5.0 → unique_toolkit-0.5.1}/LICENSE +0 -0
  6. {unique_toolkit-0.5.0 → unique_toolkit-0.5.1}/unique_toolkit/__init__.py +0 -0
  7. {unique_toolkit-0.5.0 → unique_toolkit-0.5.1}/unique_toolkit/app/init_logging.py +0 -0
  8. {unique_toolkit-0.5.0 → unique_toolkit-0.5.1}/unique_toolkit/app/init_sdk.py +0 -0
  9. {unique_toolkit-0.5.0 → unique_toolkit-0.5.1}/unique_toolkit/app/performance/async_executor.py +0 -0
  10. {unique_toolkit-0.5.0 → unique_toolkit-0.5.1}/unique_toolkit/app/performance/async_wrapper.py +0 -0
  11. {unique_toolkit-0.5.0 → unique_toolkit-0.5.1}/unique_toolkit/app/schemas.py +0 -0
  12. {unique_toolkit-0.5.0 → unique_toolkit-0.5.1}/unique_toolkit/app/verification.py +0 -0
  13. {unique_toolkit-0.5.0 → unique_toolkit-0.5.1}/unique_toolkit/chat/schemas.py +0 -0
  14. {unique_toolkit-0.5.0 → unique_toolkit-0.5.1}/unique_toolkit/chat/service.py +0 -0
  15. {unique_toolkit-0.5.0 → unique_toolkit-0.5.1}/unique_toolkit/chat/state.py +0 -0
  16. {unique_toolkit-0.5.0 → unique_toolkit-0.5.1}/unique_toolkit/chat/utils.py +0 -0
  17. {unique_toolkit-0.5.0 → unique_toolkit-0.5.1}/unique_toolkit/content/schemas.py +0 -0
  18. {unique_toolkit-0.5.0 → unique_toolkit-0.5.1}/unique_toolkit/content/service.py +0 -0
  19. {unique_toolkit-0.5.0 → unique_toolkit-0.5.1}/unique_toolkit/content/utils.py +0 -0
  20. {unique_toolkit-0.5.0 → unique_toolkit-0.5.1}/unique_toolkit/embedding/schemas.py +0 -0
  21. {unique_toolkit-0.5.0 → unique_toolkit-0.5.1}/unique_toolkit/embedding/service.py +0 -0
  22. {unique_toolkit-0.5.0 → unique_toolkit-0.5.1}/unique_toolkit/language_model/infos.py +0 -0
  23. {unique_toolkit-0.5.0 → unique_toolkit-0.5.1}/unique_toolkit/language_model/schemas.py +0 -0
  24. {unique_toolkit-0.5.0 → unique_toolkit-0.5.1}/unique_toolkit/language_model/service.py +0 -0
  25. {unique_toolkit-0.5.0 → unique_toolkit-0.5.1}/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.1] - 2024-07-23
9
+ - correct documentation
10
+
8
11
  ## [0.5.0] - 2024-07-23
9
12
  ### Added
10
13
  - Added `unique_toolkit.app` module with the following components:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: unique_toolkit
3
- Version: 0.5.0
3
+ Version: 0.5.1
4
4
  Summary:
5
5
  License: MIT
6
6
  Author: Martin Fadler
@@ -33,9 +33,9 @@ The Toolkit is structured along the following domains:
33
33
 
34
34
  Each domain comprises a service class (in `service.py`) which encapsulates the basic functionalities to interact with the domain entities, the schemas
35
35
  (in `schemas.py`) used in the service and required for interacting with the service functions, utility functions (in `utils.py`) which give additional
36
- functionality to interact with the domain entities (all domains except Embedding) and other domain specific functionalities which are explained in the respective domain documentation.
36
+ functionality to interact with the domain entities (all domains except embedding) and other domain specific functionalities which are explained in the respective domain documentation.
37
37
 
38
- In addition, the `app` module provides functions to initialize and secure apps and perform parallel reuqests (only with async app like Flask) that will interact with the Unique platform.
38
+ In addition, the `unique_toolkit.app` module provides functions to initialize apps that interact with the Unique platform. It also includes some utility functions to run async tasks in parallel (async webserver and app implementation required).
39
39
 
40
40
  ## Changelog
41
41
 
@@ -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.1] - 2024-07-23
106
+ - correct documentation
107
+
105
108
  ## [0.5.0] - 2024-07-23
106
109
  ### Added
107
110
  - Added `unique_toolkit.app` module with the following components:
@@ -10,9 +10,9 @@ The Toolkit is structured along the following domains:
10
10
 
11
11
  Each domain comprises a service class (in `service.py`) which encapsulates the basic functionalities to interact with the domain entities, the schemas
12
12
  (in `schemas.py`) used in the service and required for interacting with the service functions, utility functions (in `utils.py`) which give additional
13
- functionality to interact with the domain entities (all domains except Embedding) and other domain specific functionalities which are explained in the respective domain documentation.
13
+ functionality to interact with the domain entities (all domains except embedding) and other domain specific functionalities which are explained in the respective domain documentation.
14
14
 
15
- In addition, the `app` module provides functions to initialize and secure apps and perform parallel reuqests (only with async app like Flask) that will interact with the Unique platform.
15
+ In addition, the `unique_toolkit.app` module provides functions to initialize apps that interact with the Unique platform. It also includes some utility functions to run async tasks in parallel (async webserver and app implementation required).
16
16
 
17
17
  ## Changelog
18
18
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "unique_toolkit"
3
- version = "0.5.0"
3
+ version = "0.5.1"
4
4
  description = ""
5
5
  authors = [
6
6
  "Martin Fadler <martin.fadler@unique.ch>",
File without changes