1.2.3
For Gradle projects, add this to your build.gradle
file in the dependencies block:
dependencies {
implementation 'com.cjcrafter:openai:1.2.3'
}
Or, if you are using Kotlin DSL (build.gradle.kts
), add this to your dependencies block:
dependencies {
implementation("com.cjcrafter:openai:1.2.3")
}
For Maven projects, add this to your pom.xml
file in the <dependencies>
block:
<dependency>
<groupId>com.cjcrafter</groupId>
<artifactId>openai</artifactId>
<version>1.2.3</version>
</dependency>
See the maven repository for gradle/ant/etc.
What's Changed
- wrap the json error with Error classes by @CJCrafter in #10
- Gson serialization by @CJCrafter in #11
Full Changelog: 1.2.2...1.2.3