File tree Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ 1.1.18] - 2025-07-25
11
+
12
+ ### Fixed
13
+
14
+ - Properly pass quality preset in ` TLMChatCompletion `
15
+
10
16
## [ 1.1.17] - 2025-07-18
11
17
12
18
### Changed
@@ -259,7 +265,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
259
265
- Release of the Cleanlab TLM Python client.
260
266
261
267
262
- [ Unreleased ] : https://github.com/cleanlab/cleanlab-tlm/compare/v1.1.16...HEAD
268
+ [ Unreleased ] : https://github.com/cleanlab/cleanlab-tlm/compare/v1.1.18...HEAD
269
+ [ 1.1.18 ] : https://github.com/cleanlab/cleanlab-tlm/compare/v1.1.17...v1.1.18
270
+ [ 1.1.17 ] : https://github.com/cleanlab/cleanlab-tlm/compare/v1.1.16...v1.1.17
263
271
[ 1.1.16 ] : https://github.com/cleanlab/cleanlab-tlm/compare/v1.1.15...v1.1.16
264
272
[ 1.1.15 ] : https://github.com/cleanlab/cleanlab-tlm/compare/v1.1.14...v1.1.15
265
273
[ 1.1.14 ] : https://github.com/cleanlab/cleanlab-tlm/compare/v1.1.13...v1.1.14
Original file line number Diff line number Diff line change 1
1
# SPDX-License-Identifier: MIT
2
- __version__ = "1.1.17 "
2
+ __version__ = "1.1.18 "
Original file line number Diff line number Diff line change @@ -88,7 +88,11 @@ def score(
88
88
if (messages := openai_kwargs .get ("messages" )) is None :
89
89
raise ValueError ("messages is a required OpenAI input argument." )
90
90
91
- combined_kwargs = {** openai_kwargs , ** self ._options }
91
+ combined_kwargs = {
92
+ "quality_preset" : self ._quality_preset ,
93
+ ** openai_kwargs ,
94
+ ** self ._options ,
95
+ }
92
96
93
97
# handle structured outputs differently
94
98
if openai_kwargs .get ("response_format" ):
You can’t perform that action at this time.
0 commit comments