Skip to content
Draft
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/a2a/quickstart-consuming-kotlin.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ compile classpath as well, because `A2AAgent`'s `httpClient` parameter defaults
to `JdkA2AHttpClient()`:

```kotlin title="build.gradle.kts"
implementation("com.google.adk:google-adk-kotlin-a2a:0.8.0")
implementation("com.google.adk:google-adk-kotlin-a2a:1.0.0")
implementation("org.a2aproject.sdk:a2a-java-sdk-client:1.0.0.Final")
```

Expand Down
4 changes: 2 additions & 2 deletions docs/agents/models/litert-lm.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,8 @@ repositories {
}

dependencies {
implementation("com.google.adk:google-adk-kotlin-core:0.8.0")
implementation("com.google.adk:google-adk-kotlin-litertlm:0.8.0")
implementation("com.google.adk:google-adk-kotlin-core:1.0.0")
implementation("com.google.adk:google-adk-kotlin-litertlm:1.0.0")
implementation("com.google.ai.edge.litertlm:litertlm-jvm:0.13.1")
// other dependencies...
}
Expand Down
4 changes: 2 additions & 2 deletions docs/get-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,8 @@ across supported languages. For a guided introduction, start with the
}

dependencies {
implementation("com.google.adk:google-adk-kotlin-core:0.8.0")
ksp("com.google.adk:google-adk-kotlin-processor:0.8.0")
implementation("com.google.adk:google-adk-kotlin-core:1.0.0")
ksp("com.google.adk:google-adk-kotlin-processor:1.0.0")
}
```

Expand Down
16 changes: 8 additions & 8 deletions docs/get-started/kotlin.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ An ADK Kotlin agent project requires the following dependencies in your

```kotlin title="my_agent/build.gradle.kts (partial)"
dependencies {
implementation("com.google.adk:google-adk-kotlin-core:0.8.0")
ksp("com.google.adk:google-adk-kotlin-processor:0.8.0")
implementation("com.google.adk:google-adk-kotlin-core:1.0.0")
ksp("com.google.adk:google-adk-kotlin-processor:1.0.0")
}
```

Expand All @@ -129,9 +129,9 @@ dependencies {
}

dependencies {
implementation("com.google.adk:google-adk-kotlin-core:0.8.0")
implementation("com.google.adk:google-adk-kotlin-webserver:0.8.0")
ksp("com.google.adk:google-adk-kotlin-processor:0.8.0")
implementation("com.google.adk:google-adk-kotlin-core:1.0.0")
implementation("com.google.adk:google-adk-kotlin-webserver:1.0.0")
ksp("com.google.adk:google-adk-kotlin-processor:1.0.0")
}

kotlin {
Expand Down Expand Up @@ -235,9 +235,9 @@ to your `build.gradle.kts`:

```kotlin title="my_agent/build.gradle.kts (add to dependencies)"
dependencies {
implementation("com.google.adk:google-adk-kotlin-core:0.8.0")
implementation("com.google.adk:google-adk-kotlin-webserver:0.8.0")
ksp("com.google.adk:google-adk-kotlin-processor:0.8.0")
implementation("com.google.adk:google-adk-kotlin-core:1.0.0")
implementation("com.google.adk:google-adk-kotlin-webserver:1.0.0")
ksp("com.google.adk:google-adk-kotlin-processor:1.0.0")
}
```

Expand Down
17 changes: 9 additions & 8 deletions examples/kotlin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,22 @@ repositories {
}

dependencies {
implementation("com.google.adk:google-adk-kotlin-core:0.8.0")
implementation("com.google.adk:google-adk-kotlin-webserver:0.8.0")
ksp("com.google.adk:google-adk-kotlin-processor:0.8.0")
implementation("com.google.adk:google-adk-kotlin-core:1.0.0")
implementation("com.google.adk:google-adk-kotlin-webserver:1.0.0")
ksp("com.google.adk:google-adk-kotlin-processor:1.0.0")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0")
// The Vertex AI session and memory services expose Ktor's HttpClient as a
// defaulted constructor parameter, so any snippet naming them needs Ktor on
// the COMPILE classpath, not just at runtime. Version matches what
// adk-kotlin 0.8.0 already resolves to.
// the COMPILE classpath, not just at runtime. Version was matched against
// adk-kotlin 0.8.0; re-check what 1.0 resolves to before merging.
implementation("io.ktor:ktor-client-core:2.3.13")
implementation("io.ktor:ktor-client-java:2.3.13")
// A2A. The a2a artifact publishes the A2A SDK as runtime-only, but A2AAgent's
// httpClient parameter defaults to JdkA2AHttpClient(), so the client artifact
// is needed on the COMPILE classpath too. Version matches adk-kotlin 0.8.0's
// own catalog; the spec and jsonrpc transport arrive transitively.
implementation("com.google.adk:google-adk-kotlin-a2a:0.8.0")
// is needed on the COMPILE classpath too. Version was matched against
// adk-kotlin 0.8.0's catalog; re-check against 1.0. The spec and jsonrpc
// transport arrive transitively.
implementation("com.google.adk:google-adk-kotlin-a2a:1.0.0")
implementation("org.a2aproject.sdk:a2a-java-sdk-client:1.0.0.Final")
implementation("com.google.cloud:google-cloud-storage:2.48.2")
implementation("io.opentelemetry:opentelemetry-sdk:1.56.0")
Expand Down
Loading