unique_toolkit 0.5.18__py3-none-any.whl → 0.5.19__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/language_model/schemas.py +1 -1
- {unique_toolkit-0.5.18.dist-info → unique_toolkit-0.5.19.dist-info}/METADATA +4 -1
- {unique_toolkit-0.5.18.dist-info → unique_toolkit-0.5.19.dist-info}/RECORD +5 -5
- {unique_toolkit-0.5.18.dist-info → unique_toolkit-0.5.19.dist-info}/LICENSE +0 -0
- {unique_toolkit-0.5.18.dist-info → unique_toolkit-0.5.19.dist-info}/WHEEL +0 -0
@@ -43,7 +43,7 @@ class LanguageModelMessage(BaseModel):
|
|
43
43
|
model_config = model_config
|
44
44
|
|
45
45
|
role: LanguageModelMessageRole
|
46
|
-
content: Optional[str] = None
|
46
|
+
content: Optional[str | list[dict]] = None
|
47
47
|
name: Optional[str] = None
|
48
48
|
tool_calls: Optional[list[LanguageModelFunctionCall]] = None
|
49
49
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: unique_toolkit
|
3
|
-
Version: 0.5.
|
3
|
+
Version: 0.5.19
|
4
4
|
Summary:
|
5
5
|
License: MIT
|
6
6
|
Author: Martin Fadler
|
@@ -100,6 +100,9 @@ All notable changes to this project will be documented in this file.
|
|
100
100
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
101
101
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
102
102
|
|
103
|
+
## [0.5.19] - 2024-09-11
|
104
|
+
- `LanguageModelMessage` now supports content as a list of dictionnary. Useful when adding image_url content along user message.
|
105
|
+
|
103
106
|
## [0.5.18] - 2024-09-03
|
104
107
|
- Adds option to use `metadata_filter` with search.
|
105
108
|
- Adds `user_metadata`, `tool_parameters` and `metadata_filter` to `EventPayload`.
|
@@ -23,10 +23,10 @@ unique_toolkit/embedding/service.py,sha256=Iiw-sbdkjuWlWMfLM9qyC4GNTJOotQAaVjkYv
|
|
23
23
|
unique_toolkit/embedding/utils.py,sha256=v86lo__bCJbxZBQ3OcLu5SuwT6NbFfWlcq8iyk6BuzQ,279
|
24
24
|
unique_toolkit/language_model/__init__.py,sha256=QgU_uwpVh1URQyVs6l-6Am4UwmEEhuGXNic3dUZ0FCc,1701
|
25
25
|
unique_toolkit/language_model/infos.py,sha256=ETAUV0YTs6BjwuiTdhKz247CtL0W8Jwo3-c0ZQ2HdXs,9962
|
26
|
-
unique_toolkit/language_model/schemas.py,sha256=
|
26
|
+
unique_toolkit/language_model/schemas.py,sha256=DGZL6j63txkq5rdCn1uuVQIyLOyZt9t8J4f8JzhZENg,4607
|
27
27
|
unique_toolkit/language_model/service.py,sha256=8s2tiGLE5ryKQDOtEbNaFkc73NngANxvFNr-hD-dgps,10948
|
28
28
|
unique_toolkit/language_model/utils.py,sha256=WBPj1XKkDgxy_-T8HCZvsfkkSzj_1w4UZzNmyvdbBLY,1081
|
29
|
-
unique_toolkit-0.5.
|
30
|
-
unique_toolkit-0.5.
|
31
|
-
unique_toolkit-0.5.
|
32
|
-
unique_toolkit-0.5.
|
29
|
+
unique_toolkit-0.5.19.dist-info/LICENSE,sha256=bIeCWCYuoUU_MzNdg48-ubJSVm7qxakaRbzTiJ5uxrs,1065
|
30
|
+
unique_toolkit-0.5.19.dist-info/METADATA,sha256=YqqkqMMy9qq6cBc0Z2KufSD6V9-dnigLytMKSjtJcRU,10904
|
31
|
+
unique_toolkit-0.5.19.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
32
|
+
unique_toolkit-0.5.19.dist-info/RECORD,,
|
File without changes
|
File without changes
|