Skip to content

Commit

Permalink
Reorrder dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
koppor committed Aug 2, 2024
1 parent 1a62197 commit 91eb6e4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -324,17 +324,17 @@ dependencies {
}
implementation('dev.langchain4j:langchain4j-mistral-ai:0.33.0')
implementation('dev.langchain4j:langchain4j-hugging-face:0.33.0')
// openai depends on okhttp, which needs kotlin - see https://github.com/square/okhttp/issues/5299 for details
// GemxFX also (transitively) depends on kotlin
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.24'
implementation 'io.github.stefanbratanov:jvm-openai:0.9.3'
implementation 'ai.djl:api:0.29.0'
implementation 'ai.djl.pytorch:pytorch-model-zoo:0.29.0'
implementation 'ai.djl.huggingface:tokenizers:0.29.0'

implementation 'io.github.stefanbratanov:jvm-openai:0.9.3'
// openai depends on okhttp, which needs kotlin - see https://github.com/square/okhttp/issues/5299 for details
implementation ('com.squareup.okhttp3:okhttp:4.12.0') {
exclude group: 'org.jetbrains.kotlin', module: 'kotlin-stdlib-jdk8'
}
// GemxFX also (transitively) depends on kotlin
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.24'


implementation 'commons-io:commons-io:2.16.1'

Expand Down

0 comments on commit 91eb6e4

Please sign in to comment.