Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
82 changes: 41 additions & 41 deletions README.md

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repositories {
}

allprojects {
group = "com.llamacloud_prod.api"
group = "ai.llamaindex"
version = "0.0.1" // x-release-please-version
}

Expand All @@ -31,7 +31,7 @@ subprojects {
// Avoid race conditions between `dokkaJavadocCollector` and `dokkaJavadocJar` tasks
tasks.named("dokkaJavadocCollector").configure {
subprojects.flatMap { it.tasks }
.filter { it.project.name != "llama-cloud-java" && it.name == "dokkaJavadocJar" }
.filter { it.project.name != "llama-cloud" && it.name == "dokkaJavadocJar" }
.forEach { mustRunAfter(it) }
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

dependencies {
api(project(":llama-cloud-java-core"))
api(project(":llama-cloud-core"))

implementation("com.squareup.okhttp3:okhttp:4.12.0")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ dependencies {
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.18.2")

testImplementation(kotlin("test"))
testImplementation(project(":llama-cloud-java-client-okhttp"))
testImplementation(project(":llama-cloud-client-okhttp"))
testImplementation("com.github.tomakehurst:wiremock-jre8:2.35.2")
testImplementation("org.assertj:assertj-core:3.27.7")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.9.3")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ private constructor(
/**
* The HTTP client to use in the SDK.
*
* Use the one published in `llama-cloud-java-client-okhttp` or implement your own.
* Use the one published in `llama-cloud-client-okhttp` or implement your own.
*
* This class takes ownership of the client and closes it when closed.
*/
Expand Down Expand Up @@ -199,7 +199,7 @@ private constructor(
/**
* The HTTP client to use in the SDK.
*
* Use the one published in `llama-cloud-java-client-okhttp` or implement your own.
* Use the one published in `llama-cloud-client-okhttp` or implement your own.
*
* This class takes ownership of the client and closes it when closed.
*/
Expand Down
Loading
Loading