openai/openai-java

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
6eb3f62e530d5b98e1a46164a680798d1c4299db

Branches

Tags

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

Clone

HTTPS

Download ZIP

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

15lines · modecode

1plugins {
2 id("openai.kotlin")
3 id("openai.publish")
4}
5
6dependencies {
7 api(project(":OpenAI-java-core"))
8
9 implementation("com.google.guava:guava:31.1-jre")
10 implementation("com.squareup.okhttp3:okhttp:4.10.0")
11
12 testImplementation(kotlin("test"))
13 testImplementation("org.assertj:assertj-core:3.23.1")
14 testImplementation("org.slf4j:slf4j-simple:1.7.29")
15}
16