openai/openai-java

Public

mirrored from https://github.com/openai/openai-javaAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
004954b5af6a1d76fa51573a4dac8c92deffae05

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

openai-java-client-okhttp/build.gradle.kts

14lines · modecode

1plugins {
2 id("openai.kotlin")
3 id("openai.publish")
4}
5
6dependencies {
7 api(project(":openai-java-core"))
8
9 implementation("com.squareup.okhttp3:okhttp:4.12.0")
10
11 testImplementation(kotlin("test"))
12 testImplementation("org.assertj:assertj-core:3.27.7")
13 testImplementation("com.github.tomakehurst:wiremock-jre8:2.35.2")
14}
15