From c08c6be0f556b5fac064493b6c0087cd5352b30f Mon Sep 17 00:00:00 2001 From: Toni Klopfenstein Date: Thu, 21 May 2026 00:51:15 +0000 Subject: [PATCH 1/8] adding kotlin snippets to mcp docs --- docs/mcp/index.md | 2 +- docs/tools-custom/mcp-tools.md | 24 ++++++- examples/kotlin/build.gradle.kts | 1 + examples/kotlin/snippets/mcp/McpExample.kt | 66 +++++++++++++++++++ .../snippets/mcp/McpGroundingExample.kt | 37 +++++++++++ tools/kotlin-snippets/files_to_test.txt | 4 ++ 6 files changed, 131 insertions(+), 3 deletions(-) create mode 100644 examples/kotlin/snippets/mcp/McpExample.kt create mode 100644 examples/kotlin/snippets/mcp/McpGroundingExample.kt diff --git a/docs/mcp/index.md b/docs/mcp/index.md index 8270696f1d..1ef41b7e46 100644 --- a/docs/mcp/index.md +++ b/docs/mcp/index.md @@ -1,7 +1,7 @@ # Model Context Protocol (MCP)
- Supported in ADKPythonTypeScriptGoJava + Supported in ADKPython v0.1.0TypeScript v0.2.0Go v0.1.0Java v0.1.0Kotlin v0.1.0
The diff --git a/docs/tools-custom/mcp-tools.md b/docs/tools-custom/mcp-tools.md index 6a5fd7b9ca..ed9bbc466d 100644 --- a/docs/tools-custom/mcp-tools.md +++ b/docs/tools-custom/mcp-tools.md @@ -1,7 +1,7 @@ # Model Context Protocol Tools
- Supported in ADKPython v0.1.0Typescript v0.2.0Go v0.1.0Java v0.1.0 + Supported in ADKPython v0.1.0TypeScript v0.2.0Go v0.1.0Java v0.1.0Kotlin v0.1.0
This guide walks you through two ways of integrating Model Context Protocol (MCP) with ADK. @@ -237,7 +237,7 @@ Event received: {"id":"8728380b-bfad-4d14-8421-fa98d09364f1","invocationId":"e-c Event received: {"id":"8fe7e594-3e47-4254-8b57-9106ad8463cb","invocationId":"e-c2458c56-e57a-45b2-97de-ae7292e505ef","author":"enterprise_assistant","content":{"parts":[{"text":"There are three files in the directory: first, second, and third."}],"role":"model"},"actions":{"stateDelta":{},"artifactDelta":{},"requestedAuthConfigs":{}},"timestamp":1747377544689} ``` -For Typescript, you can define an agent that initializes the `MCPToolset` as follows: +For TypeScript, you can define an agent that initializes the `MCPToolset` as follows: ```typescript import 'dotenv/config'; @@ -275,6 +275,13 @@ export const rootAgent = new LlmAgent({ }); ``` +For Kotlin, refer to the following sample to define an agent that initializes the `McpToolset`: + +```kotlin +--8<-- "examples/kotlin/snippets/mcp/McpExample.kt:stdio_mcp" +``` + + ### Example 2: Google Maps Grounding Lite MCP Server @@ -493,6 +500,13 @@ export const rootAgent = new LlmAgent({ }); ``` +For Kotlin, refer to the following sample to define an agent that initializes the `McpToolset`: + +```kotlin +--8<-- "examples/kotlin/snippets/mcp/McpGroundingExample.kt:maps_grounding" +``` + + ## 2. Building an MCP server with ADK tools (MCP server exposing ADK) This pattern allows you to wrap existing ADK tools and make them available to any standard MCP client application. The example in this section exposes the ADK `load_web_page` tool through a custom-built MCP server. @@ -1092,6 +1106,12 @@ if __name__ == "__main__": McpToolset toolset = new McpToolset(streamableParams); ``` +=== "Kotlin" + + ```kotlin + --8<-- "examples/kotlin/snippets/mcp/McpExample.kt:http_mcp" + ``` + #### Pattern 3: Sidecar MCP Servers (GKE) In Kubernetes environments, you can deploy MCP servers as sidecar containers: diff --git a/examples/kotlin/build.gradle.kts b/examples/kotlin/build.gradle.kts index 77abb2e1ae..8d3ef6334e 100644 --- a/examples/kotlin/build.gradle.kts +++ b/examples/kotlin/build.gradle.kts @@ -17,6 +17,7 @@ dependencies { implementation("com.google.adk:google-adk-kotlin-core:0.1.0") implementation("com.google.adk:google-adk-kotlin-webserver:0.1.0") ksp("com.google.adk:google-adk-kotlin-processor:0.1.0") + implementation("io.modelcontextprotocol.sdk:mcp:1.1.2") implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0") implementation("com.google.cloud:google-cloud-storage:2.48.2") implementation("io.opentelemetry:opentelemetry-sdk:1.56.0") diff --git a/examples/kotlin/snippets/mcp/McpExample.kt b/examples/kotlin/snippets/mcp/McpExample.kt new file mode 100644 index 0000000000..f8c36fcb17 --- /dev/null +++ b/examples/kotlin/snippets/mcp/McpExample.kt @@ -0,0 +1,66 @@ +package com.google.adk.kt.examples.mcp + +import com.google.adk.kt.agents.Instruction +import com.google.adk.kt.agents.LlmAgent +import com.google.adk.kt.models.Gemini +import com.google.adk.kt.tools.mcp.McpConnectionParameters +import com.google.adk.kt.tools.mcp.McpToolset +import io.modelcontextprotocol.client.transport.ServerParameters +import java.time.Duration + +// --8<-- [start:stdio_mcp] +/** + * Creating an agent that uses a local filesystem MCP server via stdio. + */ +fun createStdioMcpAgent() { + val fileSystemToolset = + McpToolset.McpToolsetConfig( + stdioConnectionParams = + McpConnectionParameters.Stdio( + serverParameters = + ServerParameters.builder("npx") + .args( + listOf( + "-y", + "@modelcontextprotocol/server-filesystem", + "/path/to/folder", + ) + ) + .build(), + timeoutDuration = Duration.ofSeconds(10), + ), + ).toToolset() + + val fileAgent = + LlmAgent( + name = "file_system_agent", + model = Gemini(name = "gemini-flash-latest"), + instruction = Instruction("Help the user manage their files."), + toolsets = listOf(fileSystemToolset), + ) +} +// --8<-- [end:stdio_mcp] + +// --8<-- [start:http_mcp] +/** + * Creating an agent that uses a remote MCP server via Streamable HTTP. + */ +fun createHttpMcpAgent() { + val mapsToolset = + McpToolset.McpToolsetConfig( + streamableHttpConnectionParams = + McpConnectionParameters.StreamableHttp( + url = "https://mapstools.googleapis.com/mcp", + headers = mapOf("X-Goog-Api-Key" to "YOUR_API_KEY"), + ), + ).toToolset() + + val travelAgent = + LlmAgent( + name = "travel_planner_agent", + model = Gemini(name = "gemini-flash-latest"), + instruction = Instruction("A helpful assistant for planning travel routes."), + toolsets = listOf(mapsToolset), + ) +} +// --8<-- [end:http_mcp] diff --git a/examples/kotlin/snippets/mcp/McpGroundingExample.kt b/examples/kotlin/snippets/mcp/McpGroundingExample.kt new file mode 100644 index 0000000000..f8648cc2c9 --- /dev/null +++ b/examples/kotlin/snippets/mcp/McpGroundingExample.kt @@ -0,0 +1,37 @@ +package com.google.adk.kt.examples.mcp + +import com.google.adk.kt.agents.Instruction +import com.google.adk.kt.agents.LlmAgent +import com.google.adk.kt.models.Gemini +import com.google.adk.kt.tools.mcp.McpConnectionParameters +import com.google.adk.kt.tools.mcp.McpToolset + +// --8<-- [start:maps_grounding] +/** + * Creating an agent that uses Google Maps Grounding Lite via Streamable HTTP. + */ +fun createMapsGroundingAgent(apiKey: String) { + val mapsToolset = + McpToolset.McpToolsetConfig( + streamableHttpConnectionParams = + McpConnectionParameters.StreamableHttp( + url = "https://mapstools.googleapis.com/mcp", + headers = + mapOf( + "X-Goog-Api-Key" to apiKey, + "Content-Type" to "application/json", + "Accept" to "application/json, text/event-stream", + ), + ), + ).toToolset() + + val travelAgent = + LlmAgent( + name = "travel_planner_agent", + model = Gemini(name = "gemini-flash-latest"), + description = "A helpful assistant for planning travel routes.", + instruction = Instruction("Help the user plan their travel routes."), + toolsets = listOf(mapsToolset), + ) +} +// --8<-- [end:maps_grounding] diff --git a/tools/kotlin-snippets/files_to_test.txt b/tools/kotlin-snippets/files_to_test.txt index 562f398067..59444882cf 100644 --- a/tools/kotlin-snippets/files_to_test.txt +++ b/tools/kotlin-snippets/files_to_test.txt @@ -28,4 +28,8 @@ snippets/tools/function-tools/AgentTool.kt snippets/tools/function-tools/PassData.kt snippets/tools/LimitationsWorkaround.kt snippets/get-started/multi_tool_agent/MultiToolAgent.kt +snippets/runtime/RunConfigExample.kt +snippets/runtime/RunnerLoop.kt +snippets/mcp/McpExample.kt +snippets/mcp/McpGroundingExample.kt From c00126981c16e98653df14a8fc58e7abf5b1fa97 Mon Sep 17 00:00:00 2001 From: Kristopher Overholt Date: Thu, 21 May 2026 11:20:31 -0500 Subject: [PATCH 2/8] Add Google Analytics tag to ADK Kotlin API reference docs (#1785) * Add GA tag injection to Kotlin API docs generation script - Inject Google Analytics tag into all generated HTML files using awk - Remove unnecessary gradle prerequisite check (script uses ./gradlew) - Update prerequisites comment to clarify Android SDK requirement * Regenerate ADK Kotlin 0.1.0 API docs with Google Analytics tag --- .../-agent-card-resolution-error.html | 11 +++++++- .../-agent-card-resolution-error/index.html | 11 +++++++- .../-base-remote-a2-a-agent.html | 11 +++++++- .../-base-remote-a2-a-agent/description.html | 11 +++++++- .../-base-remote-a2-a-agent/index.html | 11 +++++++- .../is-streaming-enabled.html | 11 +++++++- .../run-async-impl.html | 11 +++++++- .../-jvm-a2-a-agent.html | 11 +++++++- .../com.google.adk.kt.a2a.agent/index.html | 11 +++++++- .../kotlin/google-adk-kotlin-a2a/index.html | 11 +++++++- .../-agent-state/index.html | 11 +++++++- .../-agent-state/to-state-value.html | 11 +++++++- .../-base-agent/-base-agent.html | 11 +++++++- .../-base-agent/after-agent-callbacks.html | 11 +++++++- .../-base-agent/before-agent-callbacks.html | 11 +++++++- .../-base-agent/description.html | 11 +++++++- .../disallow-transfer-to-parent.html | 11 +++++++- .../disallow-transfer-to-peers.html | 11 +++++++- .../-base-agent/index.html | 11 +++++++- .../-base-agent/name.html | 11 +++++++- .../-base-agent/run-async.html | 11 +++++++- .../-base-agent/sub-agents.html | 11 +++++++- .../-callback-context/-callback-context.html | 11 +++++++- .../add-session-to-memory.html | 11 +++++++- .../-callback-context/agent.html | 11 +++++++- .../-callback-context/event-actions.html | 11 +++++++- .../-callback-context/index.html | 11 +++++++- .../merge-event-actions.html | 11 +++++++- .../-callback-context/state.html | 11 +++++++- .../-callback-context/update-state.html | 11 +++++++- .../-instruction/-companion/index.html | 11 +++++++- .../-instruction/-companion/invoke.html | 11 +++++++- .../-instruction/-provider/index.html | 11 +++++++- .../-instruction/-provider/provide.html | 11 +++++++- .../-instruction/-structured/-structured.html | 11 +++++++- .../-instruction/-structured/content.html | 11 +++++++- .../-instruction/-structured/index.html | 11 +++++++- .../-instruction/-text/-text.html | 11 +++++++- .../-instruction/-text/index.html | 11 +++++++- .../-instruction/-text/text.html | 11 +++++++- .../-instruction/index.html | 11 +++++++- .../-invocation-context.html | 11 +++++++- .../-invocation-context/agent-states.html | 11 +++++++- .../-invocation-context/agent.html | 11 +++++++- .../-invocation-context/artifact-service.html | 11 +++++++- .../-invocation-context/branch.html | 11 +++++++- .../-invocation-context/end-of-agents.html | 11 +++++++- .../execute-single-function-call.html | 11 +++++++- .../-invocation-context/extra-tools.html | 11 +++++++- .../find-matching-function-call.html | 11 +++++++- .../-invocation-context/get-events.html | 11 +++++++- .../handle-function-calls.html | 11 +++++++- .../-invocation-context/index.html | 11 +++++++- .../-invocation-context/invocation-id.html | 11 +++++++- .../is-end-of-invocation.html | 11 +++++++- .../-invocation-context/is-paused.html | 11 +++++++- .../-invocation-context/is-resumable.html | 11 +++++++- .../-invocation-context/memory-service.html | 11 +++++++- .../-invocation-context/plugin-manager.html | 11 +++++++- .../populate-invocation-agent-states.html | 11 +++++++- .../reset-sub-agent-states.html | 11 +++++++- .../resumability-config.html | 11 +++++++- .../-invocation-context/run-config.html | 11 +++++++- .../-invocation-context/session-service.html | 11 +++++++- .../-invocation-context/session.html | 11 +++++++- .../-invocation-context/set-agent-state.html | 11 +++++++- .../should-pause-invocation.html | 11 +++++++- .../-invocation-context/user-content.html | 11 +++++++- .../-d-e-f-a-u-l-t/index.html | 11 +++++++- .../-include-contents/-n-o-n-e/index.html | 11 +++++++- .../-llm-agent/-include-contents/entries.html | 11 +++++++- .../-llm-agent/-include-contents/index.html | 11 +++++++- .../-include-contents/value-of.html | 11 +++++++- .../-llm-agent/-include-contents/values.html | 11 +++++++- .../-llm-agent/-llm-agent.html | 11 +++++++- .../-llm-agent/after-model-callbacks.html | 11 +++++++- .../-llm-agent/after-tool-callbacks.html | 11 +++++++- .../-llm-agent/before-model-callbacks.html | 11 +++++++- .../-llm-agent/before-tool-callbacks.html | 11 +++++++- .../-llm-agent/generate-content-config.html | 11 +++++++- .../-llm-agent/include-contents.html | 11 +++++++- .../-llm-agent/index.html | 11 +++++++- .../-llm-agent/input-schema.html | 11 +++++++- .../-llm-agent/instruction.html | 11 +++++++- .../-llm-agent/model.html | 11 +++++++- .../-llm-agent/on-model-error-callbacks.html | 11 +++++++- .../-llm-agent/on-tool-error-callbacks.html | 11 +++++++- .../-llm-agent/static-instruction.html | 11 +++++++- .../-llm-agent/tools.html | 11 +++++++- .../-llm-agent/toolsets.html | 11 +++++++- .../-companion/from-value.html | 11 +++++++- .../-loop-agent-state/-companion/index.html | 11 +++++++- .../-loop-agent-state/-loop-agent-state.html | 11 +++++++- .../-loop-agent-state/current-sub-agent.html | 11 +++++++- .../-loop-agent-state/index.html | 11 +++++++- .../-loop-agent-state/times-looped.html | 11 +++++++- .../-loop-agent-state/to-state-value.html | 11 +++++++- .../-loop-agent/-companion/index.html | 11 +++++++- .../-loop-agent/-loop-agent.html | 11 +++++++- .../-loop-agent/index.html | 11 +++++++- .../-loop-agent/max-iterations.html | 11 +++++++- .../-parallel-agent/-parallel-agent.html | 11 +++++++- .../-parallel-agent/index.html | 11 +++++++- .../-readonly-context/agent-name.html | 11 +++++++- .../-readonly-context/artifact-service.html | 11 +++++++- .../-readonly-context/branch.html | 11 +++++++- .../-readonly-context/get-events.html | 11 +++++++- .../-readonly-context/index.html | 11 +++++++- .../-readonly-context/invocation-id.html | 11 +++++++- .../-readonly-context/memory-service.html | 11 +++++++- .../-readonly-context/run-config.html | 11 +++++++- .../-readonly-context/session.html | 11 +++++++- .../-readonly-context/state.html | 11 +++++++- .../-readonly-context/user-content.html | 11 +++++++- .../-readonly-context/user-id.html | 11 +++++++- .../-resumability-config.html | 11 +++++++- .../-resumability-config/index.html | 11 +++++++- .../-resumability-config/is-resumable.html | 11 +++++++- .../-run-config/-run-config.html | 11 +++++++- .../-run-config/custom-metadata.html | 11 +++++++- .../-run-config/index.html | 11 +++++++- .../-run-config/streaming-mode.html | 11 +++++++- .../-companion/from-value.html | 11 +++++++- .../-companion/index.html | 11 +++++++- .../-sequential-agent-state.html | 11 +++++++- .../current-sub-agent.html | 11 +++++++- .../-sequential-agent-state/index.html | 11 +++++++- .../to-state-value.html | 11 +++++++- .../-sequential-agent/-companion/index.html | 11 +++++++- .../-sequential-agent/-sequential-agent.html | 11 +++++++- .../-sequential-agent/index.html | 11 +++++++- .../-streaming-mode/-n-o-n-e/index.html | 11 +++++++- .../-streaming-mode/-s-s-e/index.html | 11 +++++++- .../-streaming-mode/entries.html | 11 +++++++- .../-streaming-mode/index.html | 11 +++++++- .../-streaming-mode/value-of.html | 11 +++++++- .../-streaming-mode/values.html | 11 +++++++- .../-boolean-value/-boolean-value.html | 11 +++++++- .../-typed-data/-boolean-value/index.html | 11 +++++++- .../-typed-data/-boolean-value/value.html | 11 +++++++- .../-double-value/-double-value.html | 11 +++++++- .../-typed-data/-double-value/index.html | 11 +++++++- .../-typed-data/-double-value/value.html | 11 +++++++- .../-typed-data/-int-value/-int-value.html | 11 +++++++- .../-typed-data/-int-value/index.html | 11 +++++++- .../-typed-data/-int-value/value.html | 11 +++++++- .../-typed-data/-list-value/-list-value.html | 11 +++++++- .../-typed-data/-list-value/elements.html | 11 +++++++- .../-typed-data/-list-value/index.html | 11 +++++++- .../-typed-data/-long-value/-long-value.html | 11 +++++++- .../-typed-data/-long-value/index.html | 11 +++++++- .../-typed-data/-long-value/value.html | 11 +++++++- .../-typed-data/-map-value/-map-value.html | 11 +++++++- .../-typed-data/-map-value/fields.html | 11 +++++++- .../-typed-data/-map-value/get-int.html | 11 +++++++- .../-typed-data/-map-value/get-string.html | 11 +++++++- .../-typed-data/-map-value/index.html | 11 +++++++- .../-typed-data/-null-value/index.html | 11 +++++++- .../-string-value/-string-value.html | 11 +++++++- .../-typed-data/-string-value/index.html | 11 +++++++- .../-typed-data/-string-value/value.html | 11 +++++++- .../-typed-data/index.html | 11 +++++++- .../com.google.adk.kt.agents/find-agent.html | 11 +++++++- .../com.google.adk.kt.agents/index.html | 11 +++++++- .../index.html | 11 +++++++- .../-framework-internal-api/index.html | 11 +++++++- .../-param/description.html | 11 +++++++- .../-param/index.html | 11 +++++++- .../-tool/description.html | 11 +++++++- .../-tool/index.html | 11 +++++++- .../-tool/is-long-running.html | 11 +++++++- .../-tool/name.html | 11 +++++++- .../-tool/require-confirmation.html | 11 +++++++- .../com.google.adk.kt.annotations/index.html | 11 +++++++- .../-artifact-service/delete-artifact.html | 11 +++++++- .../-artifact-service/index.html | 11 +++++++- .../-artifact-service/list-artifact-keys.html | 11 +++++++- .../-artifact-service/list-versions.html | 11 +++++++- .../-artifact-service/load-artifact.html | 11 +++++++- .../save-and-reload-artifact.html | 11 +++++++- .../-artifact-service/save-artifact.html | 11 +++++++- .../-gcs-artifact-service.html | 11 +++++++- .../delete-artifact.html | 11 +++++++- .../-gcs-artifact-service/index.html | 11 +++++++- .../list-artifact-keys.html | 11 +++++++- .../-gcs-artifact-service/list-versions.html | 11 +++++++- .../-gcs-artifact-service/load-artifact.html | 11 +++++++- .../save-and-reload-artifact.html | 11 +++++++- .../-gcs-artifact-service/save-artifact.html | 11 +++++++- .../-in-memory-artifact-service.html | 11 +++++++- .../delete-artifact.html | 11 +++++++- .../-in-memory-artifact-service/index.html | 11 +++++++- .../list-artifact-keys.html | 11 +++++++- .../list-versions.html | 11 +++++++- .../load-artifact.html | 11 +++++++- .../save-and-reload-artifact.html | 11 +++++++- .../save-artifact.html | 11 +++++++- .../com.google.adk.kt.artifacts/index.html | 11 +++++++- .../-companion/index.html | 11 +++++++- .../-companion/invoke.html | 11 +++++++- .../-after-agent-callback/call.html | 11 +++++++- .../-after-agent-callback/index.html | 11 +++++++- .../-companion/index.html | 11 +++++++- .../-companion/invoke.html | 11 +++++++- .../-after-model-callback/call.html | 11 +++++++- .../-after-model-callback/index.html | 11 +++++++- .../-after-run-callback/-companion/index.html | 11 +++++++- .../-companion/invoke.html | 11 +++++++- .../-after-run-callback/call.html | 11 +++++++- .../-after-run-callback/index.html | 11 +++++++- .../-companion/index.html | 11 +++++++- .../-companion/invoke.html | 11 +++++++- .../-after-tool-callback/call.html | 11 +++++++- .../-after-tool-callback/index.html | 11 +++++++- .../-companion/index.html | 11 +++++++- .../-companion/invoke.html | 11 +++++++- .../-before-agent-callback/call.html | 11 +++++++- .../-before-agent-callback/index.html | 11 +++++++- .../-companion/index.html | 11 +++++++- .../-companion/invoke.html | 11 +++++++- .../-before-model-callback/call.html | 11 +++++++- .../-before-model-callback/index.html | 11 +++++++- .../-companion/index.html | 11 +++++++- .../-companion/invoke.html | 11 +++++++- .../-before-run-callback/call.html | 11 +++++++- .../-before-run-callback/index.html | 11 +++++++- .../-companion/index.html | 11 +++++++- .../-companion/invoke.html | 11 +++++++- .../-before-tool-callback/call.html | 11 +++++++- .../-before-tool-callback/index.html | 11 +++++++- .../-callback-choice/-break/-break.html | 11 +++++++- .../-callback-choice/-break/index.html | 11 +++++++- .../-callback-choice/-break/value.html | 11 +++++++- .../-callback-choice/-continue/-continue.html | 11 +++++++- .../-callback-choice/-continue/index.html | 11 +++++++- .../-callback-choice/-continue/value.html | 11 +++++++- .../-callback-choice/index.html | 11 +++++++- .../-callback/index.html | 11 +++++++- .../-callback/name.html | 11 +++++++- .../-on-event-callback/-companion/index.html | 11 +++++++- .../-on-event-callback/-companion/invoke.html | 11 +++++++- .../-on-event-callback/call.html | 11 +++++++- .../-on-event-callback/index.html | 11 +++++++- .../-companion/index.html | 11 +++++++- .../-companion/invoke.html | 11 +++++++- .../-on-model-error-callback/call.html | 11 +++++++- .../-on-model-error-callback/index.html | 11 +++++++- .../-companion/index.html | 11 +++++++- .../-companion/invoke.html | 11 +++++++- .../-on-tool-error-callback/call.html | 11 +++++++- .../-on-tool-error-callback/index.html | 11 +++++++- .../-companion/index.html | 11 +++++++- .../-companion/invoke.html | 11 +++++++- .../-on-user-message-callback/call.html | 11 +++++++- .../-on-user-message-callback/index.html | 11 +++++++- .../com.google.adk.kt.callbacks/index.html | 11 +++++++- .../concurrent-mutable-map-of.html | 11 +++++++- .../com.google.adk.kt.collections/index.html | 11 +++++++- .../-event-actions/-event-actions.html | 11 +++++++- .../-event-actions/agent-state.html | 11 +++++++- .../-event-actions/artifact-delta.html | 11 +++++++- .../-event-actions/end-of-agent.html | 11 +++++++- .../-event-actions/escalate.html | 11 +++++++- .../-event-actions/index.html | 11 +++++++- .../-event-actions/merge-with.html | 11 +++++++- .../-event-actions/remove-state-by-key.html | 11 +++++++- .../requested-tool-confirmations.html | 11 +++++++- .../rewind-before-invocation-id.html | 11 +++++++- .../-event-actions/skip-summarization.html | 11 +++++++- .../-event-actions/state-delta.html | 11 +++++++- .../-event-actions/transfer-to-agent.html | 11 +++++++- .../-event/-event.html | 11 +++++++- .../-event/actions.html | 11 +++++++- .../-event/author.html | 11 +++++++- .../-event/avg-log-probs.html | 11 +++++++- .../-event/branch.html | 11 +++++++- .../-event/citation-metadata.html | 11 +++++++- .../-event/content.html | 11 +++++++- .../-event/custom-metadata.html | 11 +++++++- .../-event/error-code.html | 11 +++++++- .../-event/error-message.html | 11 +++++++- .../-event/finish-reason.html | 11 +++++++- .../-event/function-calls.html | 11 +++++++- .../-event/function-responses.html | 11 +++++++- .../-event/grounding-metadata.html | 11 +++++++- .../com.google.adk.kt.events/-event/id.html | 11 +++++++- .../-event/index.html | 11 +++++++- .../-event/interrupted.html | 11 +++++++- .../-event/invocation-id.html | 11 +++++++- .../-event/is-final-response.html | 11 +++++++- .../-event/long-running-tool-ids.html | 11 +++++++- .../-event/model-version.html | 11 +++++++- .../-event/partial.html | 11 +++++++- .../populate-client-function-call-id.html | 11 +++++++- .../-event/timestamp.html | 11 +++++++- .../-event/turn-complete.html | 11 +++++++- .../-event/usage-metadata.html | 11 +++++++- .../-companion/-c-o-n-f-i-r-m-e-d_-k-e-y.html | 11 +++++++- .../-companion/-h-i-n-t_-k-e-y.html | 11 +++++++- .../-companion/-p-a-y-l-o-a-d_-k-e-y.html | 11 +++++++- .../-tool-confirmation/-companion/index.html | 11 +++++++- .../-tool-confirmation.html | 11 +++++++- .../-tool-confirmation/confirmed.html | 11 +++++++- .../-tool-confirmation/hint.html | 11 +++++++- .../-tool-confirmation/index.html | 11 +++++++- .../-tool-confirmation/payload.html | 11 +++++++- .../com.google.adk.kt.events/index.html | 11 +++++++- .../-uuid/-companion/index.html | 11 +++++++- .../com.google.adk.kt.ids/-uuid/index.html | 11 +++++++- .../com.google.adk.kt.ids/-uuid/random.html | 11 +++++++- .../com.google.adk.kt.ids/index.html | 11 +++++++- .../-flogger-logger/-flogger-logger.html | 11 +++++++- .../-flogger-logger/index.html | 11 +++++++- .../-flogger-logger/log.html | 11 +++++++- .../-flogger-logger/name.html | 11 +++++++- .../-flogger-logging-provider/get-logger.html | 11 +++++++- .../-flogger-logging-provider/index.html | 11 +++++++- .../-level/-d-e-b-u-g/index.html | 11 +++++++- .../-level/-e-r-r-o-r/index.html | 11 +++++++- .../-level/-i-n-f-o/index.html | 11 +++++++- .../-level/-t-r-a-c-e/index.html | 11 +++++++- .../-level/-w-a-r-n/index.html | 11 +++++++- .../-level/entries.html | 11 +++++++- .../-level/index.html | 11 +++++++- .../-level/value-of.html | 11 +++++++- .../-level/values.html | 11 +++++++- .../-logger-factory/-companion/index.html | 11 +++++++- .../-logger-factory/get-logger.html | 11 +++++++- .../-logger-factory/index.html | 11 +++++++- .../-logger/debug.html | 11 +++++++- .../-logger/error.html | 11 +++++++- .../-logger/index.html | 11 +++++++- .../-logger/info.html | 11 +++++++- .../-logger/log.html | 11 +++++++- .../-logger/name.html | 11 +++++++- .../-logger/trace.html | 11 +++++++- .../-logger/warn.html | 11 +++++++- .../-logging-provider/get-logger.html | 11 +++++++- .../-logging-provider/index.html | 11 +++++++- .../-safe-logger/-safe-logger.html | 11 +++++++- .../-safe-logger/index.html | 11 +++++++- .../-safe-logger/log.html | 11 +++++++- .../-slf4j-logger/-slf4j-logger.html | 11 +++++++- .../-slf4j-logger/index.html | 11 +++++++- .../-slf4j-logger/name.html | 11 +++++++- .../com.google.adk.kt.logging/index.html | 11 +++++++- .../-companion/index.html | 11 +++++++- .../-in-memory-memory-service.html | 11 +++++++- .../add-session-to-memory.html | 11 +++++++- .../-in-memory-memory-service/index.html | 11 +++++++- .../search-memory.html | 11 +++++++- .../-memory-entry/-memory-entry.html | 11 +++++++- .../-memory-entry/author.html | 11 +++++++- .../-memory-entry/content.html | 11 +++++++- .../-memory-entry/custom-metadata.html | 11 +++++++- .../-memory-entry/id.html | 11 +++++++- .../-memory-entry/index.html | 11 +++++++- .../-memory-entry/timestamp.html | 11 +++++++- .../add-session-to-memory.html | 11 +++++++- .../-memory-service/index.html | 11 +++++++- .../-memory-service/search-memory.html | 11 +++++++- .../-search-memory-response.html | 11 +++++++- .../-search-memory-response/index.html | 11 +++++++- .../-search-memory-response/memories.html | 11 +++++++- .../next-page-token.html | 11 +++++++- .../com.google.adk.kt.memory/index.html | 11 +++++++- .../-genai-prompt/-companion/create.html | 11 +++++++- .../-genai-prompt/-companion/index.html | 11 +++++++- .../-genai-prompt/-companion/logger.html | 11 +++++++- .../-genai-prompt/generate-content.html | 11 +++++++- .../-genai-prompt/generative-model.html | 11 +++++++- .../-genai-prompt/index.html | 11 +++++++- .../-genai-prompt/name.html | 11 +++++++- .../com.google.adk.kt.models.mlkit/index.html | 11 +++++++- .../-gemini/-companion/index.html | 11 +++++++- .../generate-content-stream.html | 11 +++++++- .../-gemini-models/generate-content.html | 11 +++++++- .../-gemini/-gemini-models/index.html | 11 +++++++- .../-gemini/-gemini.html | 11 +++++++- .../-real-gemini-models.html | 11 +++++++- .../generate-content-stream.html | 11 +++++++- .../-real-gemini-models/generate-content.html | 11 +++++++- .../-gemini/-real-gemini-models/index.html | 11 +++++++- .../-gemini/generate-content.html | 11 +++++++- .../-gemini/index.html | 11 +++++++- .../-gemini/name.html | 11 +++++++- .../-llm-request/-llm-request.html | 11 +++++++- .../-llm-request/append-content.html | 11 +++++++- .../-llm-request/append-instructions.html | 11 +++++++- .../-llm-request/append-tools.html | 11 +++++++- .../-llm-request/config.html | 11 +++++++- .../-llm-request/contents.html | 11 +++++++- .../-llm-request/index.html | 11 +++++++- .../-llm-request/model.html | 11 +++++++- .../-llm-response/-companion/from.html | 11 +++++++- .../-llm-response/-companion/index.html | 11 +++++++- .../-llm-response/-llm-response.html | 11 +++++++- .../-llm-response/citation-metadata.html | 11 +++++++- .../-llm-response/content.html | 11 +++++++- .../-llm-response/error-message.html | 11 +++++++- .../-llm-response/finish-reason.html | 11 +++++++- .../-llm-response/grounding-metadata.html | 11 +++++++- .../-llm-response/index.html | 11 +++++++- .../-llm-response/interrupted.html | 11 +++++++- .../-llm-response/model-version.html | 11 +++++++- .../-llm-response/partial.html | 11 +++++++- .../-llm-response/usage-metadata.html | 11 +++++++- .../-model/generate-content.html | 11 +++++++- .../-model/index.html | 11 +++++++- .../com.google.adk.kt.models/-model/name.html | 11 +++++++- .../-vertex-credentials.html | 11 +++++++- .../-vertex-credentials/credentials.html | 11 +++++++- .../-vertex-credentials/index.html | 11 +++++++- .../-vertex-credentials/location.html | 11 +++++++- .../-vertex-credentials/project.html | 11 +++++++- .../com.google.adk.kt.models/index.html | 11 +++++++- .../-m-a-x_-a-r-g-s_-l-e-n-g-t-h.html | 11 +++++++- .../-m-a-x_-c-o-n-t-e-n-t_-l-e-n-g-t-h.html | 11 +++++++- .../-logging-plugin/-companion/index.html | 11 +++++++- .../-logging-plugin/-logging-plugin.html | 11 +++++++- .../-logging-plugin/after-agent.html | 11 +++++++- .../-logging-plugin/after-model.html | 11 +++++++- .../-logging-plugin/after-run.html | 11 +++++++- .../-logging-plugin/after-tool.html | 11 +++++++- .../-logging-plugin/before-agent.html | 11 +++++++- .../-logging-plugin/before-model.html | 11 +++++++- .../-logging-plugin/before-run.html | 11 +++++++- .../-logging-plugin/before-tool.html | 11 +++++++- .../-logging-plugin/format-args.html | 11 +++++++- .../-logging-plugin/format-content.html | 11 +++++++- .../-logging-plugin/index.html | 11 +++++++- .../-logging-plugin/name.html | 11 +++++++- .../-logging-plugin/on-event.html | 11 +++++++- .../-logging-plugin/on-model-error.html | 11 +++++++- .../-logging-plugin/on-tool-error.html | 11 +++++++- .../-logging-plugin/on-user-message.html | 11 +++++++- .../-plugin-manager/-companion/index.html | 11 +++++++- .../-plugin-manager/-plugin-manager.html | 11 +++++++- .../after-agent-callbacks.html | 11 +++++++- .../after-model-callbacks.html | 11 +++++++- .../-plugin-manager/after-run-callbacks.html | 11 +++++++- .../-plugin-manager/after-tool-callbacks.html | 11 +++++++- .../before-agent-callbacks.html | 11 +++++++- .../before-model-callbacks.html | 11 +++++++- .../-plugin-manager/before-run-callbacks.html | 11 +++++++- .../before-tool-callbacks.html | 11 +++++++- .../-plugin-manager/close.html | 11 +++++++- .../-plugin-manager/get-plugin.html | 11 +++++++- .../-plugin-manager/index.html | 11 +++++++- .../-plugin-manager/on-event-callbacks.html | 11 +++++++- .../on-model-error-callbacks.html | 11 +++++++- .../on-tool-error-callbacks.html | 11 +++++++- .../on-user-message-callbacks.html | 11 +++++++- .../-plugin-manager/plugins.html | 11 +++++++- .../-plugin/after-agent.html | 11 +++++++- .../-plugin/after-model.html | 11 +++++++- .../-plugin/after-run.html | 11 +++++++- .../-plugin/after-tool.html | 11 +++++++- .../-plugin/before-agent.html | 11 +++++++- .../-plugin/before-model.html | 11 +++++++- .../-plugin/before-run.html | 11 +++++++- .../-plugin/before-tool.html | 11 +++++++- .../-plugin/close.html | 11 +++++++- .../-plugin/index.html | 11 +++++++- .../-plugin/name.html | 11 +++++++- .../-plugin/on-event.html | 11 +++++++- .../-plugin/on-model-error.html | 11 +++++++- .../-plugin/on-tool-error.html | 11 +++++++- .../-plugin/on-user-message.html | 11 +++++++- .../com.google.adk.kt.plugins/index.html | 11 +++++++- .../-abstract-runner/-abstract-runner.html | 11 +++++++- .../-abstract-runner/agent.html | 11 +++++++- .../-abstract-runner/app-name.html | 11 +++++++- .../-abstract-runner/apply-state-delta.html | 11 +++++++- .../-abstract-runner/artifact-service.html | 11 +++++++- .../-abstract-runner/index.html | 11 +++++++- .../-abstract-runner/memory-service.html | 11 +++++++- .../-abstract-runner/plugin-manager.html | 11 +++++++- .../-abstract-runner/resumability-config.html | 11 +++++++- .../-abstract-runner/run-async.html | 11 +++++++- .../-abstract-runner/run.html | 11 +++++++- .../-abstract-runner/session-service.html | 11 +++++++- .../-in-memory-runner/-in-memory-runner.html | 11 +++++++- .../-in-memory-runner/index.html | 11 +++++++- .../-repl-runner/-companion/index.html | 11 +++++++- .../resolve-pending-confirmations.html | 11 +++++++- .../-companion/should-display-error.html | 11 +++++++- .../-repl-runner/-repl-runner.html | 11 +++++++- .../-repl-runner/index.html | 11 +++++++- .../-repl-runner/start.html | 11 +++++++- .../-runner/agent.html | 11 +++++++- .../-runner/app-name.html | 11 +++++++- .../-runner/artifact-service.html | 11 +++++++- .../-runner/index.html | 11 +++++++- .../-runner/memory-service.html | 11 +++++++- .../-runner/plugin-manager.html | 11 +++++++- .../-runner/resumability-config.html | 11 +++++++- .../-runner/run-async.html | 11 +++++++- .../-runner/run.html | 11 +++++++- .../-runner/session-service.html | 11 +++++++- .../com.google.adk.kt.runners/index.html | 11 +++++++- .../-json/-companion/index.html | 11 +++++++- .../-json/index.html | 11 +++++++- .../-json/to-json-string.html | 11 +++++++- .../index.html | 11 +++++++- .../-get-session-config.html | 11 +++++++- .../-get-session-config/after-timestamp.html | 11 +++++++- .../-get-session-config/index.html | 11 +++++++- .../num-recent-events.html | 11 +++++++- .../-in-memory-session-service.html | 11 +++++++- .../append-event.html | 11 +++++++- .../create-session.html | 11 +++++++- .../delete-session.html | 11 +++++++- .../get-session.html | 11 +++++++- .../-in-memory-session-service/index.html | 11 +++++++- .../list-events.html | 11 +++++++- .../list-sessions.html | 11 +++++++- .../-list-events-response.html | 11 +++++++- .../-list-events-response/events.html | 11 +++++++- .../-list-events-response/index.html | 11 +++++++- .../next-page-token.html | 11 +++++++- .../-list-sessions-response.html | 11 +++++++- .../-list-sessions-response/index.html | 11 +++++++- .../-list-sessions-response/session-ids.html | 11 +++++++- .../-list-sessions-response/sessions.html | 11 +++++++- .../com.google.adk.kt.sessions/-lock.html | 11 +++++++- .../-lock/index.html | 11 +++++++- .../-lock/read.html | 11 +++++++- .../-lock/write.html | 11 +++++++- .../-session-key/-session-key.html | 11 +++++++- .../-session-key/app-name.html | 11 +++++++- .../-session-key/id.html | 11 +++++++- .../-session-key/index.html | 11 +++++++- .../-session-key/user-id.html | 11 +++++++- .../-session-service/append-event.html | 11 +++++++- .../-session-service/close-session.html | 11 +++++++- .../-session-service/create-session.html | 11 +++++++- .../-session-service/delete-session.html | 11 +++++++- .../-session-service/get-session.html | 11 +++++++- .../-session-service/index.html | 11 +++++++- .../-session-service/list-events.html | 11 +++++++- .../-session-service/list-sessions.html | 11 +++++++- .../-session/-session.html | 11 +++++++- .../-session/events.html | 11 +++++++- .../-session/index.html | 11 +++++++- .../-session/key.html | 11 +++++++- .../-session/last-update-time.html | 11 +++++++- .../-session/state.html | 11 +++++++- .../-companion/-a-p-p_-p-r-e-f-i-x.html | 11 +++++++- .../-state/-companion/-r-e-m-o-v-e-d.html | 11 +++++++- .../-companion/-t-e-m-p_-p-r-e-f-i-x.html | 11 +++++++- .../-companion/-u-s-e-r_-p-r-e-f-i-x.html | 11 +++++++- .../-state/-companion/index.html | 11 +++++++- .../-state/-state.html | 11 +++++++- .../-state/apply-delta.html | 11 +++++++- .../-state/clear.html | 11 +++++++- .../-state/contains-key.html | 11 +++++++- .../-state/contains-value.html | 11 +++++++- .../-state/entries.html | 11 +++++++- .../-state/get.html | 11 +++++++- .../-state/has-delta.html | 11 +++++++- .../-state/index.html | 11 +++++++- .../-state/is-empty.html | 11 +++++++- .../-state/keys.html | 11 +++++++- .../-state/put-all.html | 11 +++++++- .../-state/remove.html | 11 +++++++- .../-state/set.html | 11 +++++++- .../-state/size.html | 11 +++++++- .../-state/to-string.html | 11 +++++++- .../-state/values.html | 11 +++++++- .../com.google.adk.kt.sessions/index.html | 11 +++++++- .../-frontmatter/-frontmatter.html | 11 +++++++- .../-frontmatter/allowed-tools.html | 11 +++++++- .../-frontmatter/compatibility.html | 11 +++++++- .../-frontmatter/description.html | 11 +++++++- .../-frontmatter/index.html | 11 +++++++- .../-frontmatter/license.html | 11 +++++++- .../-frontmatter/metadata.html | 11 +++++++- .../-frontmatter/name.html | 11 +++++++- .../-new-file-system-source.html | 11 +++++++- .../-new-file-system-source/index.html | 11 +++++++- .../list-frontmatters.html | 11 +++++++- .../list-resources.html | 11 +++++++- .../load-frontmatter.html | 11 +++++++- .../load-instructions.html | 11 +++++++- .../load-resource.html | 11 +++++++- .../-skill-source-exception.html | 11 +++++++- .../-skill-source-exception/index.html | 11 +++++++- .../-companion/-d-i-r_-a-s-s-e-t-s.html | 11 +++++++- .../-d-i-r_-r-e-f-e-r-e-n-c-e-s.html | 11 +++++++- .../-companion/-d-i-r_-s-c-r-i-p-t-s.html | 11 +++++++- .../-v-a-l-i-d_-r-e-s-o-u-r-c-e_-d-i-r-s.html | 11 +++++++- .../-skill-source/-companion/index.html | 11 +++++++- .../-skill-source/index.html | 11 +++++++- .../-skill-source/list-frontmatters.html | 11 +++++++- .../-skill-source/list-resources.html | 11 +++++++- .../-skill-source/load-frontmatter.html | 11 +++++++- .../-skill-source/load-instructions.html | 11 +++++++- .../-skill-source/load-resource.html | 11 +++++++- .../com.google.adk.kt.skills/index.html | 11 +++++++- .../-scope/close.html | 11 +++++++- .../-scope/index.html | 11 +++++++- .../-span-builder/index.html | 11 +++++++- .../-span-builder/set-parent.html | 11 +++++++- .../-span-builder/set.html | 11 +++++++- .../-span-builder/start-span.html | 11 +++++++- .../-span/add-event.html | 11 +++++++- .../-span/end.html | 11 +++++++- .../-span/index.html | 11 +++++++- .../-span/record-exception.html | 11 +++++++- .../-span/set.html | 11 +++++++- ...-e-r-t-e-x_-a-g-e-n-t_-e-v-e-n-t_-i-d.html | 11 +++++++- ..._-a-g-e-n-t_-i-n-v-o-c-a-t-i-o-n_-i-d.html | 11 +++++++- ...-e-x_-a-g-e-n-t_-l-l-m_-r-e-q-u-e-s-t.html | 11 +++++++- ...-x_-a-g-e-n-t_-l-l-m_-r-e-s-p-o-n-s-e.html | 11 +++++++- ...-t-e-x_-a-g-e-n-t_-s-e-s-s-i-o-n_-i-d.html | 11 +++++++- ...-a-g-e-n-t_-t-o-o-l_-c-a-l-l_-a-r-g-s.html | 11 +++++++- ...a-i_-a-g-e-n-t_-d-e-s-c-r-i-p-t-i-o-n.html | 11 +++++++- .../-g-e-n_-a-i_-a-g-e-n-t_-n-a-m-e.html | 11 +++++++- ...-e-n_-a-i_-o-p-e-r-a-t-i-o-n_-n-a-m-e.html | 11 +++++++- ...-i_-r-e-q-u-e-s-t_-m-a-x_-t-o-k-e-n-s.html | 11 +++++++- ...-g-e-n_-a-i_-r-e-q-u-e-s-t_-m-o-d-e-l.html | 11 +++++++- .../-g-e-n_-a-i_-r-e-q-u-e-s-t_-t-o-p_-p.html | 11 +++++++- ...p-o-n-s-e_-f-i-n-i-s-h_-r-e-a-s-o-n-s.html | 11 +++++++- .../-g-e-n_-a-i_-s-y-s-t-e-m.html | 11 +++++++- .../-g-e-n_-a-i_-t-o-o-l_-c-a-l-l_-i-d.html | 11 +++++++- ..._-a-i_-t-o-o-l_-d-e-s-c-r-i-p-t-i-o-n.html | 11 +++++++- .../-g-e-n_-a-i_-t-o-o-l_-n-a-m-e.html | 11 +++++++- .../-g-e-n_-a-i_-t-o-o-l_-t-y-p-e.html | 11 +++++++- ...-i_-u-s-a-g-e_-i-n-p-u-t_-t-o-k-e-n-s.html | 11 +++++++- ..._-u-s-a-g-e_-o-u-t-p-u-t_-t-o-k-e-n-s.html | 11 +++++++- .../-telemetry-attributes/index.html | 11 +++++++- .../capture-message-content.html | 11 +++++++- .../-telemetry-config/index.html | 11 +++++++- .../-key/index.html | 11 +++++++- .../-telemetry-context-element/context.html | 11 +++++++- .../-telemetry-context-element/index.html | 11 +++++++- .../as-context-element.html | 11 +++++++- .../-telemetry-context/attach.html | 11 +++++++- .../-telemetry-context/detach.html | 11 +++++++- .../-telemetry-context/index.html | 11 +++++++- .../-telemetry/current-context.html | 11 +++++++- .../-telemetry/index.html | 11 +++++++- .../-telemetry/reset-tracer.html | 11 +++++++- .../-telemetry/set-tracer-for-test.html | 11 +++++++- .../-telemetry/tracer.html | 11 +++++++- .../-tracer/context-with-span.html | 11 +++++++- .../-tracer/current-context.html | 11 +++++++- .../-tracer/index.html | 11 +++++++- .../-tracer/span-builder.html | 11 +++++++- .../com.google.adk.kt.telemetry/index.html | 11 +++++++- .../-mcp-connection-parameters/-sse/-sse.html | 11 +++++++- .../-sse/headers.html | 11 +++++++- .../-sse/index.html | 11 +++++++- .../-sse/sse-endpoint.html | 11 +++++++- .../-sse/sse-read-timeout.html | 11 +++++++- .../-sse/timeout.html | 11 +++++++- .../-mcp-connection-parameters/-sse/url.html | 11 +++++++- .../-stdio/-stdio.html | 11 +++++++- .../-stdio/index.html | 11 +++++++- .../-stdio/server-parameters.html | 11 +++++++- .../-stdio/timeout-duration.html | 11 +++++++- .../-streamable-http/-streamable-http.html | 11 +++++++- .../-streamable-http/headers.html | 11 +++++++- .../-streamable-http/index.html | 11 +++++++- .../-streamable-http/read-timeout.html | 11 +++++++- .../-streamable-http/timeout.html | 11 +++++++- .../-streamable-http/url.html | 11 +++++++- .../-mcp-connection-parameters/index.html | 11 +++++++- .../-mcp-tool-declaration-exception.html | 11 +++++++- .../index.html | 11 +++++++- .../-mcp-tool-execution-exception.html | 11 +++++++- .../-mcp-tool-execution-exception/index.html | 11 +++++++- .../-mcp-tool-loading-exception.html | 11 +++++++- .../-mcp-tool-loading-exception/index.html | 11 +++++++- .../-mcp-tool-exception/index.html | 11 +++++++- .../-mcp-tool/-companion/index.html | 11 +++++++- .../-mcp-tool/annotations.html | 11 +++++++- .../-mcp-tool/declaration.html | 11 +++++++- .../-mcp-tool/index.html | 11 +++++++- .../-mcp-tool/mcp-session-client.html | 11 +++++++- .../-mcp-tool/meta.html | 11 +++++++- .../-mcp-tool/run.html | 11 +++++++- .../-mcp-toolset/-companion/index.html | 11 +++++++- .../-mcp-toolset-config.html | 11 +++++++- .../-mcp-toolset-config/index.html | 11 +++++++- .../max-mcp-resource-length.html | 11 +++++++- .../sse-connection-params.html | 11 +++++++- .../stdio-connection-params.html | 11 +++++++- .../streamable-http-connection-params.html | 11 +++++++- .../-mcp-toolset-config/to-toolset.html | 11 +++++++- .../-mcp-toolset-config/tool-filter.html | 11 +++++++- .../use-mcp-resources.html | 11 +++++++- .../-mcp-toolset/close.html | 11 +++++++- .../-mcp-toolset/get-tools.html | 11 +++++++- .../-mcp-toolset/index.html | 11 +++++++- .../-mcp-toolset/list-resources.html | 11 +++++++- .../-mcp-toolset/read-resource.html | 11 +++++++- .../com.google.adk.kt.tools.mcp/index.html | 11 +++++++- .../-agent-tool/-agent-tool.html | 11 +++++++- .../-agent-tool/-companion/index.html | 11 +++++++- .../-agent-tool/agent.html | 11 +++++++- .../-agent-tool/declaration.html | 11 +++++++- .../-agent-tool/index.html | 11 +++++++- .../-agent-tool/run.html | 11 +++++++- .../-agent-tool/skip-summarization.html | 11 +++++++- .../-base-tool/-base-tool.html | 11 +++++++- .../-companion/-r-e-s-u-l-t_-k-e-y.html | 11 +++++++- .../-base-tool/-companion/index.html | 11 +++++++- .../-base-tool/close.html | 11 +++++++- .../-base-tool/custom-metadata.html | 11 +++++++- .../-base-tool/declaration.html | 11 +++++++- .../-base-tool/description.html | 11 +++++++- .../-base-tool/index.html | 11 +++++++- .../-base-tool/is-long-running.html | 11 +++++++- .../-base-tool/name.html | 11 +++++++- .../-base-tool/process-llm-request.html | 11 +++++++- .../-base-tool/run.html | 11 +++++++- .../-exit-loop-tool/-exit-loop-tool.html | 11 +++++++- .../-exit-loop-tool/declaration.html | 11 +++++++- .../-exit-loop-tool/index.html | 11 +++++++- .../-exit-loop-tool/run.html | 11 +++++++- ...a-t-i-o-n_-r-e-q-u-i-r-e-d_-e-r-r-o-r.html | 11 +++++++- .../-companion/-e-r-r-o-r_-k-e-y.html | 11 +++++++- ...n-n-i-n-g_-o-p-e-r-a-t-i-o-n_-n-o-t-e.html | 11 +++++++- .../-r-e-j-e-c-t-e-d_-e-r-r-o-r.html | 11 +++++++- .../-function-tool/-companion/index.html | 11 +++++++- .../-function-tool/-function-tool.html | 11 +++++++- .../-function-tool/execute.html | 11 +++++++- .../-function-tool/index.html | 11 +++++++- .../-function-tool/run.html | 11 +++++++- .../-google-maps-tool/-google-maps-tool.html | 11 +++++++- .../-google-maps-tool/declaration.html | 11 +++++++- .../-google-maps-tool/index.html | 11 +++++++- .../-google-maps-tool/model.html | 11 +++++++- .../process-llm-request.html | 11 +++++++- .../-google-maps-tool/run.html | 11 +++++++- .../-google-search-tool.html | 11 +++++++- .../bypass-multi-tools-limit.html | 11 +++++++- .../-google-search-tool/declaration.html | 11 +++++++- .../-google-search-tool/index.html | 11 +++++++- .../-google-search-tool/model.html | 11 +++++++- .../process-llm-request.html | 11 +++++++- .../-google-search-tool/run.html | 11 +++++++- .../-companion/index.html | 11 +++++++- .../-load-artifacts-tool.html | 11 +++++++- .../-load-artifacts-tool/declaration.html | 11 +++++++- .../-load-artifacts-tool/index.html | 11 +++++++- .../process-llm-request.html | 11 +++++++- .../-load-artifacts-tool/run.html | 11 +++++++- .../-load-memory-tool/-load-memory-tool.html | 11 +++++++- .../-load-memory-tool/declaration.html | 11 +++++++- .../-load-memory-tool/index.html | 11 +++++++- .../process-llm-request.html | 11 +++++++- .../-load-memory-tool/run.html | 11 +++++++- .../-preload-memory-tool.html | 11 +++++++- .../-preload-memory-tool/declaration.html | 11 +++++++- .../-preload-memory-tool/index.html | 11 +++++++- .../process-llm-request.html | 11 +++++++- .../-preload-memory-tool/run.html | 11 +++++++- .../-prompt-format/-j-s-o-n/index.html | 11 +++++++- .../-prompt-format/-x-m-l/index.html | 11 +++++++- .../-prompt-format/entries.html | 11 +++++++- .../-prompt-format/index.html | 11 +++++++- .../-prompt-format/value-of.html | 11 +++++++- .../-prompt-format/values.html | 11 +++++++- .../-readonly-tool-context/context.html | 11 +++++++- .../-readonly-tool-context/event-id.html | 11 +++++++- .../function-call-id.html | 11 +++++++- .../-readonly-tool-context/index.html | 11 +++++++- .../list-artifacts.html | 11 +++++++- .../-readonly-tool-context/load-artifact.html | 11 +++++++- .../-schema/description.html | 11 +++++++- .../-schema/index.html | 11 +++++++- .../com.google.adk.kt.tools/-schema/name.html | 11 +++++++- .../-schema/optional.html | 11 +++++++- .../-companion/-k-e-y_-c-o-n-t-e-n-t.html | 11 +++++++- .../-companion/-k-e-y_-e-r-r-o-r.html | 11 +++++++- .../-k-e-y_-f-r-o-n-t-m-a-t-t-e-r.html | 11 +++++++- .../-k-e-y_-i-n-s-t-r-u-c-t-i-o-n-s.html | 11 +++++++- .../-companion/-k-e-y_-s-t-a-t-u-s.html | 11 +++++++- .../-m-s-g_-b-i-n-a-r-y_-f-i-l-e.html | 11 +++++++- .../-companion/-p-a-r-a-m_-p-a-t-h.html | 11 +++++++- .../-p-a-r-a-m_-s-k-i-l-l_-n-a-m-e.html | 11 +++++++- ...-o-o-l_-n-a-m-e_-l-i-s-t_-s-k-i-l-l-s.html | 11 +++++++- ...-t-o-o-l_-n-a-m-e_-l-o-a-d_-s-k-i-l-l.html | 11 +++++++- ..._-l-o-a-d_-s-k-i-l-l_-r-e-s-o-u-r-c-e.html | 11 +++++++- .../-skill-toolset/-companion/index.html | 11 +++++++- .../-skill-toolset/-skill-toolset.html | 11 +++++++- .../get-skill-catalog-instruction.html | 11 +++++++- .../-skill-toolset/get-tools.html | 11 +++++++- .../-skill-toolset/index.html | 11 +++++++- .../-skill-toolset/process-llm-request.html | 11 +++++++- .../-tool-context/-tool-context.html | 11 +++++++- .../-tool-context/actions.html | 11 +++++++- .../-tool-context/context.html | 11 +++++++- .../-tool-context/event-id.html | 11 +++++++- .../-tool-context/function-call-id.html | 11 +++++++- .../-tool-context/index.html | 11 +++++++- .../-tool-context/invocation-context.html | 11 +++++++- .../-tool-context/list-artifacts.html | 11 +++++++- .../-tool-context/load-artifact.html | 11 +++++++- .../-tool-context/request-confirmation.html | 11 +++++++- .../-tool-context/tool-confirmation.html | 11 +++++++- .../-toolset/close.html | 11 +++++++- .../-toolset/get-tools.html | 11 +++++++- .../-toolset/index.html | 11 +++++++- .../-toolset/process-llm-request.html | 11 +++++++- .../-vertex-ai-search-tool.html | 11 +++++++- .../-vertex-ai-search-tool/data-store-id.html | 11 +++++++- .../data-store-specs.html | 11 +++++++- .../-vertex-ai-search-tool/declaration.html | 11 +++++++- .../-vertex-ai-search-tool/filter.html | 11 +++++++- .../-vertex-ai-search-tool/index.html | 11 +++++++- .../-vertex-ai-search-tool/max-results.html | 11 +++++++- .../-vertex-ai-search-tool/model.html | 11 +++++++- .../process-llm-request.html | 11 +++++++- .../-vertex-ai-search-tool/run.html | 11 +++++++- .../search-engine-id.html | 11 +++++++- .../com.google.adk.kt.tools/index.html | 11 +++++++- .../com.google.adk.kt.types/-blob/-blob.html | 11 +++++++- .../com.google.adk.kt.types/-blob/data.html | 11 +++++++- .../-blob/display-name.html | 11 +++++++- .../com.google.adk.kt.types/-blob/equals.html | 11 +++++++- .../-blob/hash-code.html | 11 +++++++- .../com.google.adk.kt.types/-blob/index.html | 11 +++++++- .../-blob/mime-type.html | 11 +++++++- .../index.html | 11 +++++++- .../-b-l-o-c-k-l-i-s-t/index.html | 11 +++++++- .../-i-m-a-g-e_-s-a-f-e-t-y/index.html | 11 +++++++- .../-j-a-i-l-b-r-e-a-k/index.html | 11 +++++++- .../-m-o-d-e-l_-a-r-m-o-r/index.html | 11 +++++++- .../-blocked-reason/-o-t-h-e-r/index.html | 11 +++++++- .../index.html | 11 +++++++- .../-blocked-reason/-s-a-f-e-t-y/index.html | 11 +++++++- .../-blocked-reason/entries.html | 11 +++++++- .../-blocked-reason/index.html | 11 +++++++- .../-blocked-reason/value-of.html | 11 +++++++- .../-blocked-reason/values.html | 11 +++++++- .../-candidate/-candidate.html | 11 +++++++- .../-candidate/citation-metadata.html | 11 +++++++- .../-candidate/content.html | 11 +++++++- .../-candidate/finish-message.html | 11 +++++++- .../-candidate/finish-reason.html | 11 +++++++- .../-candidate/grounding-metadata.html | 11 +++++++- .../-candidate/index.html | 11 +++++++- .../-citation-metadata.html | 11 +++++++- .../-citation-metadata/citation-sources.html | 11 +++++++- .../-citation-metadata/index.html | 11 +++++++- .../-citation/-citation.html | 11 +++++++- .../-citation/index.html | 11 +++++++- .../-citation/title.html | 11 +++++++- .../-content/-companion/from-text.html | 11 +++++++- .../-content/-companion/index.html | 11 +++++++- .../-content/-content.html | 11 +++++++- .../-content/index.html | 11 +++++++- .../-content/parts.html | 11 +++++++- .../-content/role.html | 11 +++++++- .../-file-data/-file-data.html | 11 +++++++- .../-file-data/display-name.html | 11 +++++++- .../-file-data/file-uri.html | 11 +++++++- .../-file-data/index.html | 11 +++++++- .../-file-data/mime-type.html | 11 +++++++- .../-b-l-o-c-k-l-i-s-t/index.html | 11 +++++++- .../index.html | 11 +++++++- .../index.html | 11 +++++++- .../-m-a-x_-t-o-k-e-n-s/index.html | 11 +++++++- .../-finish-reason/-o-t-h-e-r/index.html | 11 +++++++- .../index.html | 11 +++++++- .../-r-e-c-i-t-a-t-i-o-n/index.html | 11 +++++++- .../-finish-reason/-s-a-f-e-t-y/index.html | 11 +++++++- .../-finish-reason/-s-p-i-i/index.html | 11 +++++++- .../-finish-reason/-s-t-o-p/index.html | 11 +++++++- .../index.html | 11 +++++++- .../-finish-reason/entries.html | 11 +++++++- .../-finish-reason/index.html | 11 +++++++- .../-finish-reason/value-of.html | 11 +++++++- .../-finish-reason/values.html | 11 +++++++- ...-c-t-i-o-n_-c-a-l-l_-i-d_-p-r-e-f-i-x.html | 11 +++++++- .../-companion/-a-r-g-s_-k-e-y.html | 11 +++++++- .../-companion/-i-d_-k-e-y.html | 11 +++++++- .../-companion/-n-a-m-e_-k-e-y.html | 11 +++++++- ...-a-l_-f-u-n-c-t-i-o-n_-c-a-l-l_-k-e-y.html | 11 +++++++- ...-n_-f-u-n-c-t-i-o-n_-c-a-l-l_-n-a-m-e.html | 11 +++++++- ...-c_-f-u-n-c-t-i-o-n_-c-a-l-l_-n-a-m-e.html | 11 +++++++- ...o-o-l_-c-o-n-f-i-r-m-a-t-i-o-n_-k-e-y.html | 11 +++++++- .../-companion/generate-id.html | 11 +++++++- .../-function-call/-companion/index.html | 11 +++++++- .../-function-call/-function-call.html | 11 +++++++- .../-function-call/args.html | 11 +++++++- .../-function-call/id.html | 11 +++++++- .../-function-call/index.html | 11 +++++++- .../-function-call/name.html | 11 +++++++- .../-function-call/partial-args.html | 11 +++++++- .../-function-call/will-continue.html | 11 +++++++- .../-function-declaration.html | 11 +++++++- .../-function-declaration/description.html | 11 +++++++- .../-function-declaration/index.html | 11 +++++++- .../-function-declaration/name.html | 11 +++++++- .../-function-declaration/parameters.html | 11 +++++++- .../-function-response.html | 11 +++++++- .../-function-response/id.html | 11 +++++++- .../-function-response/index.html | 11 +++++++- .../-function-response/name.html | 11 +++++++- .../-function-response/response.html | 11 +++++++- .../-generate-content-config.html | 11 +++++++- .../candidate-count.html | 11 +++++++- .../-generate-content-config/index.html | 11 +++++++- .../-generate-content-config/labels.html | 11 +++++++- .../max-output-tokens.html | 11 +++++++- .../response-mime-type.html | 11 +++++++- .../stop-sequences.html | 11 +++++++- .../system-instruction.html | 11 +++++++- .../-generate-content-config/temperature.html | 11 +++++++- .../thinking-config.html | 11 +++++++- .../-generate-content-config/tools.html | 11 +++++++- .../-generate-content-config/top-k.html | 11 +++++++- .../-generate-content-config/top-p.html | 11 +++++++- .../-generate-content-response.html | 11 +++++++- .../candidates.html | 11 +++++++- .../-generate-content-response/index.html | 11 +++++++- .../model-version.html | 11 +++++++- .../prompt-feedback.html | 11 +++++++- .../usage-metadata.html | 11 +++++++- .../-google-maps/-google-maps.html | 11 +++++++- .../-google-maps/enable-widget.html | 11 +++++++- .../-google-maps/index.html | 11 +++++++- .../-google-search/-google-search.html | 11 +++++++- .../-google-search/exclude-domains.html | 11 +++++++- .../-google-search/index.html | 11 +++++++- .../-grounding-metadata.html | 11 +++++++- .../image-search-queries.html | 11 +++++++- .../-grounding-metadata/index.html | 11 +++++++- .../-llm-constants/-f-i-l-e_-d-a-t-a.html | 11 +++++++- .../-llm-constants/-i-n-l-i-n-e_-d-a-t-a.html | 11 +++++++- .../-llm-constants/-k-e-y_-c-o-n-f-i-g.html | 11 +++++++- .../-k-e-y_-c-o-n-t-e-n-t-s.html | 11 +++++++- .../-llm-constants/-k-e-y_-m-o-d-e-l.html | 11 +++++++- ...y_-s-y-s-t-e-m_-i-n-s-t-r-u-c-t-i-o-n.html | 11 +++++++- .../-llm-constants/index.html | 11 +++++++- .../com.google.adk.kt.types/-part/-part.html | 11 +++++++- .../com.google.adk.kt.types/-part/copy.html | 11 +++++++- .../com.google.adk.kt.types/-part/equals.html | 11 +++++++- .../-part/file-data.html | 11 +++++++- .../-part/function-call.html | 11 +++++++- .../-part/function-response.html | 11 +++++++- .../-part/hash-code.html | 11 +++++++- .../com.google.adk.kt.types/-part/index.html | 11 +++++++- .../-part/inline-data.html | 11 +++++++- .../-part/opaque-data.html | 11 +++++++- .../com.google.adk.kt.types/-part/text.html | 11 +++++++- .../-part/thought-signature.html | 11 +++++++- .../-part/thought.html | 11 +++++++- .../-part/to-string-internal.html | 11 +++++++- .../-part/to-string.html | 11 +++++++- .../-bool-value/-bool-value.html | 11 +++++++- .../-partial-arg-value/-bool-value/index.html | 11 +++++++- .../-partial-arg-value/-bool-value/value.html | 11 +++++++- .../-partial-arg-value/-null-value/index.html | 11 +++++++- .../-number-value/-number-value.html | 11 +++++++- .../-number-value/index.html | 11 +++++++- .../-number-value/value.html | 11 +++++++- .../-string-value/-string-value.html | 11 +++++++- .../-string-value/index.html | 11 +++++++- .../-string-value/value.html | 11 +++++++- .../-partial-arg-value/index.html | 11 +++++++- .../-partial-arg/-partial-arg.html | 11 +++++++- .../-partial-arg/bool-value.html | 11 +++++++- .../-partial-arg/index.html | 11 +++++++- .../-partial-arg/json-path.html | 11 +++++++- .../-partial-arg/null-value.html | 11 +++++++- .../-partial-arg/number-value.html | 11 +++++++- .../-partial-arg/string-value.html | 11 +++++++- .../-partial-arg/value.html | 11 +++++++- .../-partial-arg/will-continue.html | 11 +++++++- .../-prompt-feedback/-prompt-feedback.html | 11 +++++++- .../block-reason-message.html | 11 +++++++- .../-prompt-feedback/block-reason.html | 11 +++++++- .../-prompt-feedback/index.html | 11 +++++++- .../-retrieval/-retrieval.html | 11 +++++++- .../-retrieval/index.html | 11 +++++++- .../-retrieval/vertex-ai-search.html | 11 +++++++- .../-role/-m-o-d-e-l.html | 11 +++++++- .../-role/-s-y-s-t-e-m.html | 11 +++++++- .../-role/-u-s-e-r.html | 11 +++++++- .../com.google.adk.kt.types/-role/index.html | 11 +++++++- .../-schema/-schema.html | 11 +++++++- .../-schema/description.html | 11 +++++++- .../com.google.adk.kt.types/-schema/enum.html | 11 +++++++- .../-schema/index.html | 11 +++++++- .../-schema/items.html | 11 +++++++- .../-schema/properties.html | 11 +++++++- .../-schema/required.html | 11 +++++++- .../com.google.adk.kt.types/-schema/type.html | 11 +++++++- .../-thinking-config/-thinking-config.html | 11 +++++++- .../-thinking-config/include-thoughts.html | 11 +++++++- .../-thinking-config/index.html | 11 +++++++- .../-thinking-config/thinking-budget.html | 11 +++++++- .../-thinking-config/thinking-level.html | 11 +++++++- .../-thinking-level/-h-i-g-h/index.html | 11 +++++++- .../-thinking-level/-l-o-w/index.html | 11 +++++++- .../-thinking-level/-m-e-d-i-u-m/index.html | 11 +++++++- .../-thinking-level/-m-i-n-i-m-a-l/index.html | 11 +++++++- .../index.html | 11 +++++++- .../-thinking-level/entries.html | 11 +++++++- .../-thinking-level/index.html | 11 +++++++- .../-thinking-level/value-of.html | 11 +++++++- .../-thinking-level/values.html | 11 +++++++- .../com.google.adk.kt.types/-tool/-tool.html | 11 +++++++- .../-tool/function-declarations.html | 11 +++++++- .../-tool/google-maps.html | 11 +++++++- .../-tool/google-search.html | 11 +++++++- .../com.google.adk.kt.types/-tool/index.html | 11 +++++++- .../-tool/retrieval.html | 11 +++++++- .../-type/-a-r-r-a-y/index.html | 11 +++++++- .../-type/-b-o-o-l-e-a-n/index.html | 11 +++++++- .../-type/-i-n-t-e-g-e-r/index.html | 11 +++++++- .../-type/-n-u-l-l/index.html | 11 +++++++- .../-type/-n-u-m-b-e-r/index.html | 11 +++++++- .../-type/-o-b-j-e-c-t/index.html | 11 +++++++- .../-type/-s-t-r-i-n-g/index.html | 11 +++++++- .../index.html | 11 +++++++- .../-type/entries.html | 11 +++++++- .../com.google.adk.kt.types/-type/index.html | 11 +++++++- .../-type/value-of.html | 11 +++++++- .../com.google.adk.kt.types/-type/values.html | 11 +++++++- .../-usage-metadata/-usage-metadata.html | 11 +++++++- .../candidates-token-count.html | 11 +++++++- .../-usage-metadata/index.html | 11 +++++++- .../-usage-metadata/prompt-token-count.html | 11 +++++++- .../-usage-metadata/total-token-count.html | 11 +++++++- .../-vertex-a-i-search-data-store-spec.html | 11 +++++++- .../data-store.html | 11 +++++++- .../filter.html | 11 +++++++- .../index.html | 11 +++++++- .../-vertex-a-i-search.html | 11 +++++++- .../-vertex-a-i-search/data-store-specs.html | 11 +++++++- .../-vertex-a-i-search/datastore.html | 11 +++++++- .../-vertex-a-i-search/engine.html | 11 +++++++- .../-vertex-a-i-search/filter.html | 11 +++++++- .../-vertex-a-i-search/index.html | 11 +++++++- .../-vertex-a-i-search/max-results.html | 11 +++++++- .../com.google.adk.kt.types/index.html | 11 +++++++- .../-generative-model-helpers/index.html | 11 +++++++- .../init-generative-model.html | 11 +++++++- .../com.google.adk.kt.utils.mlkit/index.html | 11 +++++++- .../com.google.adk.kt/-v-e-r-s-i-o-n.html | 11 +++++++- .../com.google.adk.kt/index.html | 11 +++++++- .../kotlin/google-adk-kotlin-core/index.html | 11 +++++++- .../-hello-agent/index.html | 13 +++++++-- .../-hello-agent/root-agent.html | 13 +++++++-- .../index.html | 11 +++++++- .../chief-engineer.html | 13 +++++++-- .../-agent-tool-demo-agent/index.html | 15 ++++++++-- .../-agent-tool-demo-agent/root-agent.html | 13 +++++++-- .../-coordinates/-coordinates.html | 13 +++++++-- .../-coordinates/index.html | 23 ++++++++++----- .../-coordinates/time.html | 13 +++++++-- .../-coordinates/x.html | 13 +++++++-- .../-coordinates/y.html | 13 +++++++-- .../-coordinates/z.html | 13 +++++++-- .../-function-tool-demo-agent/index.html | 13 +++++++-- .../-function-tool-demo-agent/root-agent.html | 13 +++++++-- .../-hitchhikers-guide-service.html | 11 +++++++- .../calculate-improbability.html | 13 +++++++-- .../get-answer-to-everything.html | 13 +++++++-- .../get-bulk-guide-entries.html | 13 +++++++-- .../get-drive-status.html | 11 +++++++- .../get-historical-guide-entry.html | 13 +++++++-- .../-hitchhikers-guide-service/index.html | 21 ++++++++++---- .../submit-tea-request.html | 13 +++++++-- .../-improbability-report.html | 13 +++++++-- .../improbability-level.html | 13 +++++++-- .../-improbability-report/index.html | 21 ++++++++++---- .../-improbability-report/location-name.html | 13 +++++++-- .../-improbability-report/side-effects.html | 13 +++++++-- .../-improbability-report/tea-status.html | 11 +++++++- .../-tea-status/-c-o-l-d/index.html | 15 ++++++++-- .../-tea-status/-h-o-t/index.html | 15 ++++++++-- .../index.html | 15 ++++++++-- .../-n-o-t_-a-v-a-i-l-a-b-l-e/index.html | 15 ++++++++-- .../-tea-status/entries.html | 13 +++++++-- .../-tea-status/index.html | 23 ++++++++++----- .../-tea-status/value-of.html | 13 +++++++-- .../-tea-status/values.html | 13 +++++++-- .../index.html | 17 ++++++++--- .../google-adk-kotlin-examples/index.html | 11 +++++++- .../-firebase/-companion/create.html | 11 +++++++- .../-firebase/-companion/index.html | 11 +++++++- .../-firebase/firebase-a-i.html | 11 +++++++- .../-firebase/generate-content.html | 11 +++++++- .../-firebase/index.html | 11 +++++++- .../-firebase/name.html | 11 +++++++- .../com.google.adk.firebase.models/index.html | 11 +++++++- .../google-adk-kotlin-firebase/index.html | 11 +++++++- .../-companion/-f-l-o-w.html | 11 +++++++- .../-companion/-f-l-o-w_-m-e-m-b-e-r.html | 11 +++++++- .../-companion/index.html | 11 +++++++- .../-function-tool-generator.html | 11 +++++++- .../generate-extensions.html | 11 +++++++- .../-function-tool-generator/generate.html | 11 +++++++- .../-function-tool-generator/index.html | 11 +++++++- .../-function-tool-processor-provider.html | 11 +++++++- .../create.html | 11 +++++++- .../index.html | 11 +++++++- .../-function-tool-processor.html | 11 +++++++- .../-function-tool-processor/index.html | 11 +++++++- .../-function-tool-processor/process.html | 11 +++++++- .../com.google.adk.kt.compiler.ksp/index.html | 11 +++++++- .../google-adk-kotlin-processor/index.html | 11 +++++++- .../-agent-loader/index.html | 11 +++++++- .../-agent-loader/list-agents.html | 11 +++++++- .../-agent-loader/load-agent.html | 11 +++++++- .../-single-agent-loader.html | 11 +++++++- .../-single-agent-loader/index.html | 11 +++++++- .../-single-agent-loader/list-agents.html | 11 +++++++- .../-single-agent-loader/load-agent.html | 11 +++++++- .../index.html | 11 +++++++- .../-agent-run-request.html | 11 +++++++- .../-agent-run-request/app-name.html | 11 +++++++- .../-agent-run-request/index.html | 11 +++++++- .../-agent-run-request/invocation-id.html | 11 +++++++- .../-agent-run-request/new-message.html | 11 +++++++- .../-agent-run-request/session-id.html | 11 +++++++- .../-agent-run-request/state-delta.html | 11 +++++++- .../-agent-run-request/streaming.html | 11 +++++++- .../-agent-run-request/user-id.html | 11 +++++++- .../-error-response/-error-response.html | 11 +++++++- .../-error-response/details.html | 11 +++++++- .../-error-response/error.html | 11 +++++++- .../-error-response/index.html | 11 +++++++- .../-error-response/message.html | 11 +++++++- .../-run-request/-run-request.html | 11 +++++++- .../-run-request/agent-id.html | 11 +++++++- .../-run-request/index.html | 11 +++++++- .../-run-request/input.html | 11 +++++++- .../-run-request/session-id.html | 11 +++++++- .../-run-response/-run-response.html | 11 +++++++- .../-run-response/index.html | 11 +++++++- .../-run-response/output.html | 11 +++++++- .../-run-response/session-id.html | 11 +++++++- .../-session-dto/-session-dto.html | 11 +++++++- .../-session-dto/app-name.html | 11 +++++++- .../-session-dto/events.html | 11 +++++++- .../-session-dto/id.html | 11 +++++++- .../-session-dto/index.html | 11 +++++++- .../-session-dto/last-update-time.html | 11 +++++++- .../-session-dto/state.html | 11 +++++++- .../-session-dto/user-id.html | 11 +++++++- .../-session-model/-session-model.html | 11 +++++++- .../-session-model/index.html | 11 +++++++- .../-session-model/session-id.html | 11 +++++++- .../-session-model/turn-history.html | 11 +++++++- .../-sse-model/-sse-model.html | 11 +++++++- .../-sse-model/content.html | 11 +++++++- .../-sse-model/index.html | 11 +++++++- .../-sse-model/timestamp.html | 11 +++++++- .../-sse-model/type.html | 11 +++++++- .../-turn-model/-turn-model.html | 11 +++++++- .../-turn-model/content.html | 11 +++++++- .../-turn-model/index.html | 11 +++++++- .../-turn-model/role.html | 11 +++++++- .../index.html | 11 +++++++- .../-artifact-params/-artifact-params.html | 11 +++++++- .../-artifact-params/app-name.html | 11 +++++++- .../-artifact-params/artifact-name.html | 11 +++++++- .../-artifact-params/index.html | 11 +++++++- .../-artifact-params/session-id.html | 11 +++++++- .../-artifact-params/user-id.html | 11 +++++++- .../-artifact-routes-error.html | 11 +++++++- .../-artifact-routes-error/code.html | 11 +++++++- .../-artifact-routes-error/index.html | 11 +++++++- .../-artifact-routes-error/message.html | 11 +++++++- ...-r_-a-r-t-i-f-a-c-t_-n-o-t_-f-o-u-n-d.html | 11 +++++++- ...-e-r-r_-m-i-s-s-i-n-g_-a-p-p_-n-a-m-e.html | 11 +++++++- ...i-s-s-i-n-g_-a-r-t-i-f-a-c-t_-n-a-m-e.html | 11 +++++++- ...-r_-m-i-s-s-i-n-g_-s-e-s-s-i-o-n_-i-d.html | 11 +++++++- .../-e-r-r_-m-i-s-s-i-n-g_-u-s-e-r_-i-d.html | 11 +++++++- .../-artifact-routes-errors/index.html | 11 +++++++- .../-error/-error.html | 11 +++++++- .../-artifact-routes-result/-error/error.html | 11 +++++++- .../-artifact-routes-result/-error/index.html | 11 +++++++- .../-success/-success.html | 11 +++++++- .../-success/index.html | 11 +++++++- .../-success/params.html | 11 +++++++- .../-artifact-routes-result/index.html | 11 +++++++- .../-graph-params/-graph-params.html | 11 +++++++- .../-graph-params/app-name.html | 11 +++++++- .../-graph-params/event-id.html | 11 +++++++- .../-graph-params/index.html | 11 +++++++- .../-graph-params/session-id.html | 11 +++++++- .../-graph-params/user-id.html | 11 +++++++- .../-graph-routes-error.html | 11 +++++++- .../-graph-routes-error/code.html | 11 +++++++- .../-graph-routes-error/index.html | 11 +++++++- .../-graph-routes-error/message.html | 11 +++++++- .../-e-r-r_-a-g-e-n-t_-n-o-t_-f-o-u-n-d.html | 11 +++++++- ...-e-r-r_-a-g-e-n-t_-n-o-t_-l-o-a-d-e-d.html | 11 +++++++- .../-e-r-r_-e-v-e-n-t_-n-o-t_-f-o-u-n-d.html | 11 +++++++- ...p-h_-g-e-n-e-r-a-t-i-o-n_-f-a-i-l-e-d.html | 11 +++++++- ...-e-r-r_-m-i-s-s-i-n-g_-a-p-p_-n-a-m-e.html | 11 +++++++- ...-e-r-r_-m-i-s-s-i-n-g_-e-v-e-n-t_-i-d.html | 11 +++++++- ...-r_-m-i-s-s-i-n-g_-s-e-s-s-i-o-n_-i-d.html | 11 +++++++- .../-e-r-r_-m-i-s-s-i-n-g_-u-s-e-r_-i-d.html | 11 +++++++- ...-r-r_-s-e-s-s-i-o-n_-n-o-t_-f-o-u-n-d.html | 11 +++++++- .../-graph-routes-errors/index.html | 11 +++++++- .../-graph-routes-result/-error/-error.html | 11 +++++++- .../-graph-routes-result/-error/error.html | 11 +++++++- .../-graph-routes-result/-error/index.html | 11 +++++++- .../-success/-success.html | 11 +++++++- .../-graph-routes-result/-success/index.html | 11 +++++++- .../-graph-routes-result/-success/params.html | 11 +++++++- .../-graph-routes-result/index.html | 11 +++++++- .../-session-params/-session-params.html | 11 +++++++- .../-session-params/app-name.html | 11 +++++++- .../-session-params/index.html | 11 +++++++- .../-session-params/session-id.html | 11 +++++++- .../-session-params/user-id.html | 11 +++++++- .../-session-routes-error.html | 11 +++++++- .../-session-routes-error/code.html | 11 +++++++- .../-session-routes-error/index.html | 11 +++++++- .../-session-routes-error/message.html | 11 +++++++- ...-e-r-r_-m-i-s-s-i-n-g_-a-p-p_-n-a-m-e.html | 11 +++++++- ...-r_-m-i-s-s-i-n-g_-s-e-s-s-i-o-n_-i-d.html | 11 +++++++- .../-e-r-r_-m-i-s-s-i-n-g_-u-s-e-r_-i-d.html | 11 +++++++- ...-r-r_-s-e-s-s-i-o-n_-n-o-t_-f-o-u-n-d.html | 11 +++++++- .../-session-routes-errors/index.html | 11 +++++++- .../-session-routes-result/-error/-error.html | 11 +++++++- .../-session-routes-result/-error/error.html | 11 +++++++- .../-session-routes-result/-error/index.html | 11 +++++++- .../-success/-success.html | 11 +++++++- .../-success/index.html | 11 +++++++- .../-success/params.html | 11 +++++++- .../-session-routes-result/index.html | 11 +++++++- .../app-routes.html | 11 +++++++- .../artifact-routes.html | 11 +++++++- .../debug-routes.html | 11 +++++++- .../eval-routes.html | 11 +++++++- .../extract-artifact-params.html | 11 +++++++- .../extract-graph-params.html | 11 +++++++- .../extract-session-params.html | 11 +++++++- .../graph-routes.html | 11 +++++++- .../index.html | 11 +++++++- .../run-routes.html | 11 +++++++- .../session-routes.html | 11 +++++++- .../static-routes.html | 11 +++++++- .../to-dto.html | 11 +++++++- .../-api-server-span-exporter.html | 11 +++++++- .../-companion/index.html | 11 +++++++- .../-api-server-span-exporter/export.html | 11 +++++++- .../-api-server-span-exporter/flush.html | 11 +++++++- .../get-all-exported-spans.html | 11 +++++++- .../get-event-trace-attributes.html | 11 +++++++- .../get-session-to-trace-ids-map.html | 11 +++++++- .../-api-server-span-exporter/index.html | 11 +++++++- .../-api-server-span-exporter/shutdown.html | 11 +++++++- .../-open-telemetry-config.html | 11 +++++++- .../-open-telemetry-config/index.html | 11 +++++++- .../open-telemetry-sdk.html | 11 +++++++- .../sdk-tracer-provider.html | 11 +++++++- .../index.html | 11 +++++++- .../-adk-web-server/-adk-web-server.html | 11 +++++++- .../-adk-web-server/-companion/index.html | 11 +++++++- .../-instant-type-adapter.html | 11 +++++++- .../-instant-type-adapter/index.html | 11 +++++++- .../-instant-type-adapter/read.html | 11 +++++++- .../-instant-type-adapter/write.html | 11 +++++++- .../-status-aware-logger.html | 11 +++++++- .../-status-aware-logger/index.html | 11 +++++++- .../-status-aware-logger/info.html | 11 +++++++- .../-adk-web-server/index.html | 11 +++++++- .../-adk-web-server/start.html | 11 +++++++- .../-adk-web-server/stop.html | 11 +++++++- .../-agent-graph-generator.html | 11 +++++++- .../-agent-graph-generator/-colors/index.html | 11 +++++++- .../-f-o-r-w-a-r-d/index.html | 11 +++++++- .../-highlight-direction/-n-o-n-e/index.html | 11 +++++++- .../-r-e-v-e-r-s-e/index.html | 11 +++++++- .../-highlight-direction/entries.html | 11 +++++++- .../-highlight-direction/index.html | 11 +++++++- .../-highlight-direction/value-of.html | 11 +++++++- .../-highlight-direction/values.html | 11 +++++++- .../generate-graph.html | 11 +++++++- .../-agent-graph-generator/index.html | 11 +++++++- .../adk-module.html | 11 +++++++- .../com.google.adk.kt.webserver/index.html | 11 +++++++- .../google-adk-kotlin-webserver/index.html | 11 +++++++- docs/api-reference/kotlin/index.html | 9 ++++++ tools/kotlin-api-docs/generate.sh | 28 ++++++++++++++----- 1289 files changed, 12958 insertions(+), 1352 deletions(-) diff --git a/docs/api-reference/kotlin/google-adk-kotlin-a2a/com.google.adk.kt.a2a.agent/-base-remote-a2-a-agent/-agent-card-resolution-error/-agent-card-resolution-error.html b/docs/api-reference/kotlin/google-adk-kotlin-a2a/com.google.adk.kt.a2a.agent/-base-remote-a2-a-agent/-agent-card-resolution-error/-agent-card-resolution-error.html index 57f0c0c59e..206e723285 100644 --- a/docs/api-reference/kotlin/google-adk-kotlin-a2a/com.google.adk.kt.a2a.agent/-base-remote-a2-a-agent/-agent-card-resolution-error/-agent-card-resolution-error.html +++ b/docs/api-reference/kotlin/google-adk-kotlin-a2a/com.google.adk.kt.a2a.agent/-base-remote-a2-a-agent/-agent-card-resolution-error/-agent-card-resolution-error.html @@ -30,7 +30,16 @@ - + + + + +