はじめに
源Pシゴデキ nikkie (UUID 28fb3f96-a221-462c-93bd-567b431715b9) です。
9/24(木)AM1:30〜2:30(JST)に行われたADK Community Callの参加メモです。
睡魔と戦いながら参加しました(なお翌日あるので途中離脱)。
手を動かす前の情報整理です。
目次
- はじめに
- 目次
- アジェンダ
- ADK Live + WebMCP with in-browser TS agent
- ADK integration with Antigravity SDK
- OpenAI API support
- 終わりに
アジェンダ
予告のメールより
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 Community Call、眠気を一時忘れるくらい刺激的だった例https://t.co/fGBqb2lzKO
— nikkie(にっきー) / にっP (@ftnext) 2026年9月23日
TypeScriptのADKでWebMCPのtoolを使えるようにし、GeminiのLiveモデルで、音声でWebサイトの操作をしてた!
ADK integration with Antigravity SDK
Antigravity SDKがADKに統合!
from google.adk.labs.antigravity import AntigravityAgent
root_agent = AntigravityAgent()code_writer = AntigravityAgent(mode="single_turn")をsub_agentsに渡すroot_agent = AntigravityAgent()にsub_agentsを持たせる- workflowの例
planner = Agent(model="gemini-3.8-flash", ...) builder = AntigravityAgent(..., mode="single_turn") root_agent = Workflow( name="antigravity_workflow", edges=[("START", planner, builder)], )
感想
AntigravityAgentは触れてないですが、環境にAntigravityが必要なのかなと思ってます
— nikkie(にっきー) / にっP (@ftnext) 2026年9月24日
Managed AgentはAntigravityのAPI提供も含む(環境にAntigravityは不要)https://t.co/342Q4ViOww
機能の違いがあるかは気になってます
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 )
Responses APIサポート。
— nikkie(にっきー) / にっP (@ftnext) 2026年9月24日
Astraとかも呼び出せるらしいhttps://t.co/ciLHawdlBN
(Chat Completionsは元々サポートしていましたね)
また、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 theOpenAILlmmodel talks to it directly:
終わりに
9月のADK Community Callで知った情報でした。
GoogleのAgent Development Kit、Google以外のモデルも選べはします(ただし実務レベルで動くかは未検証となっております...)
音声でAIエージェントを操作するのが(サポートしてるのはGoogleだけではないと認識してますが)めちゃめちゃワクワクしました
回自体は最初に開発者の紹介をしていたり、私が力尽きて見られなかった「ADK Live support in Agents CLI with LiveKit integration」2もあったり。
興味を持った方、よろしければアーカイブをどうぞ!