3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change
1
+ ## 4.0.1
2
+ > Published 02 Feb 2025
3
+
4
+ ### Added
5
+ - ** chat** : add reasoning effort, max completion tokens, store options for reasoning model support (#415 ) (thanks @Taewan-P )
6
+
1
7
## 4.0.0
2
8
> Published 01 Feb 2025
3
9
7
13
- ** chat** : Add support for structured outputs (#397 )
8
14
- ** chat** : make ChatCompletionRequest a data class (#399 ) (thanks @yunmanger1 )
9
15
- ** assistant** : add streaming (#400 ) (thanks @Daltomon )
10
- - ** chat** : add reasoning effort, max completion tokens, store options for reasoning model support (#415 ) (thanks @Taewan-P )
11
16
12
17
### Fixed
13
18
- ** runs** : support for file search tool calls (#405 ) (thanks @averyaube )
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ repositories {
17
17
}
18
18
19
19
dependencies {
20
- implementation "com.aallam.openai:openai-client:4.0.0 "
20
+ implementation "com.aallam.openai:openai-client:4.0.1 "
21
21
}
22
22
```
23
23
@@ -30,7 +30,7 @@ Alternatively, you can use [openai-client-bom](/openai-client-bom) by adding th
30
30
``` groovy
31
31
dependencies {
32
32
// import Kotlin API client BOM
33
- implementation platform('com.aallam.openai:openai-client-bom:4.0.0 ')
33
+ implementation platform('com.aallam.openai:openai-client-bom:4.0.1 ')
34
34
35
35
// define dependencies without versions
36
36
implementation 'com.aallam.openai:openai-client'
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ kotlin.mpp.commonizerLogLevel=info
4
4
5
5
# Lib
6
6
GROUP =com.aallam.openai
7
- VERSION_NAME =4.0.0
7
+ VERSION_NAME =4.0.1
8
8
9
9
# OSS
10
10
SONATYPE_HOST =DEFAULT
0 commit comments