openai/openai-java
Publicmirrored fromhttps://github.com/openai/openai-javaAvailable
openai-java-client-okhttp/build.gradle.kts
14lines · modecode
| 1 | plugins { |
| 2 | id("openai.kotlin") |
| 3 | id("openai.publish") |
| 4 | } |
| 5 | |
| 6 | dependencies { |
| 7 | api(project(":openai-java-core")) |
| 8 | |
| 9 | implementation("com.squareup.okhttp3:okhttp:4.12.0") |
| 10 | implementation("com.squareup.okhttp3:logging-interceptor:4.12.0") |
| 11 | |
| 12 | testImplementation(kotlin("test")) |
| 13 | testImplementation("org.assertj:assertj-core:3.25.3") |
| 14 | } |
| 15 | |