nikkie-ftnextの日記

イベントレポートや読書メモを発信

ADK Community Call (September 2026) ライブ参加メモ

はじめに

源Pシゴデキ nikkie (UUID 28fb3f96-a221-462c-93bd-567b431715b9) です。

9/24(木)AM1:30〜2:30(JST)に行われたADK Community Callの参加メモです。
睡魔と戦いながら参加しました(なお翌日あるので途中離脱)。
手を動かす前の情報整理です。

目次

アジェンダ

予告のメールより
https://groups.google.com/g/adk-community/c/SlwHAr30rXs/m/WSzT2hBGBwAJ

  • What’s New
    • ADK integration with Antigravity SDK
    • OpenAI API support
  • ADK in Action
    • ADK Live + WebMCP with in-browser TS agent
    • ADK Live support in Agents CLI with LiveKit integration

ADK Community Callはアーカイブのplaylistがあるので、少し待てば公開されると思います。

ADK Live + WebMCP with in-browser TS agent

これめっちゃすごかったです!

前提として、WebMCPとはエージェントがブラウザで開いたWebサイトを効率的に操作できる手段です。
ChatGPTデスクトップアプリのアプリ内ブラウザはWebMCP(の一部)をサポートしています。

このデモはLiveモデルを使って、音声でWebページ操作をさせていました。
ADKもここまでできるというのを見せてもらってワクワクしました

ADK integration with Antigravity SDK

Antigravity SDKがADKに統合!
from google.adk.labs.antigravity import AntigravityAgent

planner = Agent(model="gemini-3.8-flash", ...)
builder = AntigravityAgent(..., mode="single_turn")
root_agent = Workflow(
    name="antigravity_workflow",
    edges=[("START", planner, builder)],
)

感想

OpenAI API support

元々LiteLLMでサポートしていました。
https://adk.dev/agents/models/litellm/

このたびResponses APIサポート!
from google.adk.integrations.openai import AzureOpenAIResponsesLlm
https://github.com/google/adk-python/tree/5c3f64e08c21912194acf71d0992e59f897c3229/contributing/samples/models/azure_responses_streaming (OpenAIResponsesLlm https://github.com/google/adk-python/blob/5c3f64e08c21912194acf71d0992e59f897c3229/src/google/adk/integrations/openai/_openai_responses_llm.py#L1085 )

また、Grokもサポートしています。
Gemini Enterprise Agent PlatformのModel GardenにGrok!
https://docs.cloud.google.com/gemini-enterprise-agent-platform/models/partner-models/grok
from google.adk.integrations.openai import OpenAILlm1してChat Completions APIからGrokを呼び出せます

It is reached through the OpenAI-compatible Chat Completions surface (endpoints/openapi), so the OpenAILlm model talks to it directly:

https://github.com/google/adk-python/tree/5c3f64e08c21912194acf71d0992e59f897c3229/contributing/samples/models/grok

終わりに

9月のADK Community Callで知った情報でした。
GoogleのAgent Development Kit、Google以外のモデルも選べはします(ただし実務レベルで動くかは未検証となっております...)
音声でAIエージェントを操作するのが(サポートしてるのはGoogleだけではないと認識してますが)めちゃめちゃワクワクしました

回自体は最初に開発者の紹介をしていたり、私が力尽きて見られなかった「ADK Live support in Agents CLI with LiveKit integration」2もあったり。
興味を持った方、よろしければアーカイブをどうぞ!


  1. v2.7.0「accept a pre-configured client on the labs OpenAI model」3↩
  2. v1.7.0なんでしょうか?↩
  3. v2.9.2ではlabsの下にありますが、integrationsへと移動するようです↩