Google、Gemini Enterprise Agent Platform の実演デモ 13 を公開
本文の状態
日本語全文を表示中
詳細モードで約11分の本文を読めます。
同じ出来事の情報源
この情報源を基点に整理
Google Cloud AI
Google は Gemini Enterprise Agent Platform の機能を紹介する 13 のハンズオンデモを公開し、各デモで概念やアーキテクチャの学習と即座の実装方法を解説した。
AI深層分析を開く2026年8月4日 11:53
AI深層分析
キーポイント
13 の実践的デモ公開
Gemini Enterprise Agent Platform で実現可能な概念、パターン、アーキテクチャを学ぶための 13 のデモが提供され、それぞれ即座に実装可能な知見を含んでいる。
Agents CLI による開発フローの革新
Antigravity や Claude Code などの既存コーディングエージェントに Agents CLI をインストールすることで、七つのスキルを付与され、自然言語での指示だけでエージェントのスケーリング、評価、デプロイ、監視が可能になる。
ADK ベースの基礎から応用へ
提供されるデモはコードファーストの ADK(Agent Development Kit)を基盤としており、基本的な対話型エージェントの構築から、人間が関与するイベント駆動型の承認フローまで段階的に学習できる構成となっている。
セキュリティと自動化の両立
特定のデモでは、閾値以下の経費を自動承認し、それ以上の金額については LLM による PII(個人識別情報)削除などの事前セキュリティスクリーンを経由する、実務に即したワークフローが示されている。
人間を介在させたイベント駆動型承認エージェントの構築
ADK 2.0 のグラフベースワークフロー API を用いて、閾値以下の経費は自動承認し、それ以上はセキュリティチェックと Gemini コンプライアンス分析を経て人間のレビューで完了するエージェントを構築できる。FastAPI にマウントして Pub/Sub イベントからトリガーし、LLM-as-judge で評価を行う完全なデモである。
重要な引用
You don't have to follow them step-by-step.
Describe what you want to build in plain English, and your coding agent scaffolds, evaluates, deploys, and monitors the agent for you.
The ADK Foundation codelab is your perfect on-ramp.
The agent literally assembles the UI the user needs, on the fly.
編集コメントを表示
編集コメント
Google は Agent Platform の実装可能性を高めるため、学習リソースと開発ツールの統合に注力している。特に既存のコーディングエージェントとの親和性を高めるアプローチは、開発者の採用障壁を下げる有効な戦略と言える。
Source Article
元記事を日本語で読む
本文に関係しない購読案内、埋め込み通知、サイト内プロモーションは除いています。
今年初、私たちは Gemini Enterprise Agent Platform を発表しました。このプラットフォームでは、エージェントの構築、スケーリング、ガバナンス、最適化が可能です。今日は、Agent Platform の capabilities を解説する 13 のデモをご紹介します。それぞれが特定の概念やパターン、あるいはすぐに活用できるアーキテクチャを学べる内容になっています。
何より素晴らしいのは、これらを一つずつ順に実行する必要がないことです。お気に入りのコーディングエージェント(Antigravity、Claude Code、Codex など)に Agents CLI をインストールするだけで、ADK と Agent Platform のエキスパートとして振る舞うための 7 つのスキルが即座に付与されます。英語で「何を作りたいか」を伝えると、コーディングエージェントが自動的にスケルトンを作成し、評価・デプロイ・監視まで行ってくれるのです。エディターから離れる必要もありません。
それでは詳しく見ていきましょう!
AI エージェントの構築
これらすべてのデモは、コードファーストの ADK をベースに作られています。基礎から順を追って解説していきます。
1. まずはここから:ADK で最初のエージェントを構築する。 ADK Foundation codelab が最適な入り口です。ここでは環境のセットアップ、Gemini を基盤とした基本的な会話型エージェントの定義、設定の調整、そしてコマンドラインインターフェースと Web UI の両方でのテストを行います。ADK は初めて触るという方は、まずこれを実行することをお勧めします。
- 人間が関与するイベント駆動型の承認エージェントを構築する
このセットの中で最も「プラットフォームの実践」を体現したデモが、ambient expense agent codelab です。ここでは ADK 2.0 のグラフベースのワークフロー API を活用して、企業向け経費処理エージェントを構築します。
しきい値以下の経費申請は、シンプルな Python コードで自動承認されます。一方、しきい値を超える申請については、まず事前の LLM によるセキュリティチェック(個人識別情報の隠蔽やプロンプトインジェクションへの対策)を経て、Gemini によるコンプライアンス分析が実行されます。その後、最終決定を下す前に人間によるレビュー(ヒューマン・イン・ザ・ループ)で待機状態となり、承認プロセスが完了します。
このエージェントは FastAPI の背後に配置され、Pub/Sub イベントによってトリガーされます。評価には LLM-as-judge という手法を用います。このエージェントは後述する「スケール」と「ガバナンス」のセクションでも再度登場するので、ぜひ覚えておいてください。
- モデル・コンテキスト・プロトコル(MCP)でエージェントにデータを接続する
MCP codelab では、Gemini が BigQuery のクエリ実行やファイル検索、API 呼び出しを可能にする再利用可能な MCP ツールの構築方法を解説しています。MCP はオープンプロトコルであるため、ここで構築したツールは異なるベンダーやフレームワーク間でも互換性を持って動作します。
- エージェントと UI を連携させた動的なフロントエンドを構築する
最高のユーザーエクスペリエンスは、視覚的に豊かであるものです。A2UI コードラボ では、会話の進行に合わせてリアルタイムで更新される実際の UI コンポーネント(レイアウト、チャート、対話型メニューなど)をレンダリングするエージェントの構築方法を解説しています。このエージェントは、必要なユーザーインターフェースをその場で組み立てるのです。
スケーラブルな AI エージェントの実装
ノートパソコン上で動くプロトタイプを作るのと、本番環境でのトラフィック処理、メモリ管理、オーケストレーションを担うのは別問題です。ここからが次のステップとなります。
- 状態保持型のデータサイエンスエージェントを Agent Runtime(旧:Agent Engine)にデプロイする
Stateful Data Science Agent のコードラボでは、Memory Bank を活用してセッション間を通じてユーザーの好みを記憶し続ける BigQuery エージェントの構築方法と、それを直接 Agent Runtime にデプロイする手順を詳しく解説しています。基盤となるインフラストラクチャのスケーリングやセッション管理はすべて自動的に処理されます。
- 一時停止、再開が可能で、コンテキストを失わない長期実行型エージェントの構築
単一のプロンプトに応答するエージェントを作るのは簡単ですが、実際の企業ワークフローは数日、あるいは数週間にわたって完了することがあります。この チュートリアル では、数週間安定して稼働するエージェントの構築方法を解説しています。ここで学ぶのは、永続的な状態マシン、イベント駆動型のアイドル時間処理、そして永続セッションを伴うチェックポイントと再開という 3 つのアーキテクチャパターンです。例として紹介されるのは、コンテナの再起動に耐え、中断した場所から正確に再開するオンボーディングコーディネーターエージェントです。
- エージェント CLI を使用して、環境対応型の経費精算エージェントを Agent Runtime にデプロイする
「構築」セクションで取り上げた経費精算エージェントを覚えていますか?Agent Runtime へのデプロイ Codelab では、そのエージェントを引き継ぎ、本番環境へ移行する手順を示しています。Agents CLI を使ってデプロイ設定を scaffolding(骨組み作成)し、ドライランでプレビューした後にライブデプロイを実行します。Cloud Trace、Cloud Logging、BigQuery Agent Analytics は自動的に連携され、エージェントは Agent Registry に自動登録されるため、本番環境に投入された瞬間から組織全体で検出可能になります。
- 本番環境のエージェントにリアルなフロントエンドを。
frontend codelab で、すべての要素が統合されます。ここでは Cloud Run にマネージャーダッシュボードを構築し、OIDC 認証された Pub/Sub パイプラインを通じて Agent Runtime と接続します。これにより、管理者はブラウザから一時停止された人間介入(human-in-the-loop)セッションを再開できるようになります。結果として、経費管理エージェントとデプロイが結びつき、完全なエンドツーエンドのエンタープライズアーキテクチャが完成します。
AI エージェントのガバナンス
組織全体でエージェントをスケーリングするには、アクセス権限の管理、エンドポイントの追跡、トラフィックのフィルタリングを行うための組み込みガードレールが必要です。
- 最初のコミットからエージェントのライフサイクルを保護する。
Secure Agentic Coding codelab では、テストファーストアプローチでショッピングアシスタントを開発する方法が示されています。ここではテスト駆動開発(TDD)を用いて構築し、カスタムの STRIDE 脅威モデルを適用し、Semgrep の pre-commit フックを設定します。さらに、実行前にリスクのあるアクションをブロックする PreToolUse ゲートも構成します。意図的にハードコードされた API キーを埋め込んでおくと、フックが作動した瞬間にエージェントがそれを検知して修正してくれます。
10. エージェントゲートウェイでエージェントへのアクセスを制御する。 Agent Gateway のコデラブ では、ランタイムガバナンスについて解説しています。ここでは、Cloud Run 上の MCP サーバーを Agent Gateway を経由して呼び出すマルチツール ADK エージェントを、Agent Runtime にデプロイします。各エージェントには一意の ID が付与され、エンドツーエンドの mTLS が適用されます。すべての外部呼び出しは IAP 認証と IAM 権限管理を経由します。さらに、Model Armor がすべてのコンテンツを検査し、プロンプトインジェクションやデータ漏洩を防ぎます。これは、1 つのデモで完結する本番環境対応のガバナンススタックです。
AI エージェントの最適化
エージェントをリリースすることは始まりに過ぎません。重要なのは、次のプロンプトの微調整が実際に改善をもたらしているのか、それとも他の 10 の機能を静かに壊してしまっているのかを見極めることです。Agent Platform は、そのループを閉じるためのツールを提供します。
11. コーディングエージェントからエージェント品質の好循環を回す
プロンプトを微調整しました。3 つの例では改善されたように見えても、他の 10 のケースで壊れていないか心配はありませんか?この チュートリアル では、コーディングエージェントから直接実行できる 5 ステージの評価サイクル(フライホイール)を紹介します。具体的には、データの準備(OTel トレースや手作業で作成したケース、合成されたシナリオなど)、推論の実行、Google の適応型 AutoRaters による採点、失敗クラスタの分析、そしてターゲットを絞った最適化の実行です。AutoRaters は、Google が自社モデルやファーストパーティエージェントの評価に用いるのと同じ原則に基づいて構築されており、DeepMind との共同開発によって実現されました。
測定したい内容を自然言語で記述するだけで、コーディングエージェントが残りの処理を担います。
12. A2A を活用したクロス言語マルチエージェントパイプラインの構築
大企業では、異なるチームがそれぞれ異なるプログラミング言語でエージェントを構築するのが一般的です。この チュートリアル では、契約コンプライアンスのパイプライン構築事例を紹介します。ここでは、Gemini を使用して条項を抽出する Python ベースのエージェントと、企業ポリシーに基づいてそれらを検証する Go ベースのエージェントが連携します。両サービスは Agent-to-Agent (A2A) プロトコルで接続され、ADK によってオーケストレーションされます。
また、数行のコードで A2A に準拠した任意のサービスをローカルサブエージェントに変換する RemoteA2aAgent の仕組みについても学べます。
- CrewAI、LangGraph、A2A、ADK を活用して、複数のフレームワークにまたがってエージェントをスケールさせる。 実際の運用チームの多くは、特定の 1 つのエージェントフレームワークに標準化することはありません。codelab では、これらすべてのフレームワークにまたがるオーケストレーションの方法を紹介しています。具体的には、ADK のコントロールルームが計画を LangGraph の状態マシンに委譲し、その状態マシンがタスクを CrewAI の実行チームへ配信します。これらはすべて A2A プロトコルによって接続されています。もし 1 つのステップで失敗が発生しても、コントロールルームが自動的に再計画を行います。
はじめに
10 分以内でエージェント開発のライフサイクル全体を確認したい場合は、このウォークスルー をご覧ください。それ以外の場合は、Agents CLI をインストールし、コーディングエージェントを起動して、今日から 構築を開始 してください。
原文を表示
Earlier this year, we introduced Gemini Enterprise Agent Platform, where you can build, scale, govern, and optimize agents. Today, we’re sharing 13 demos that walk you through what Agent Platform can do. Each one teaches a concept, a pattern, or an architecture you can put to work immediately.
The best part? You don't have to follow them step-by-step. Install Agents CLI into your favorite coding agent (Antigravity, Claude Code, Codex, whatever you use) and it instantly gets seven skills that make it an expert in ADK and Agent Platform. Describe what you want to build in plain English, and your coding agent scaffolds, evaluates, deploys, and monitors the agent for you. You’ll never have to leave your editor.
Let’s dive in!
Build AI agents
These demos are all built on the code-first ADK. They start at the foundation and work up.
1. Start here: build your first agent with ADK. The ADK Foundation codelab is your perfect on-ramp. You set up your environment, define a basic conversational agent powered by Gemini, configure its settings, and test it through both a command-line interface and a web UI. If you've never touched ADK before, do this one first.
2. Build an event-driven approval agent with human-in-the-loop. The ambient expense agent codelab is the most complete "Agent Platform in action" demo in the set. You build a corporate expense agent using ADK 2.0's graph-based workflow API. Expenses under a threshold get auto-approved in plain Python. Anything above goes through a pre-LLM security screen (PII redaction, prompt-injection defense), passes a Gemini compliance analysis, and pauses for a human-in-the-loop review before anything is finalized. You mount it behind FastAPI, trigger it from Pub/Sub events, and grade it with an LLM-as-judge eval. Keep this agent in mind – it comes back in the Scale and Govern sections.
3. Connect agents to your data with the Model Context Protocol. The MCP codelab shows you how to build reusable MCP tools that let Gemini query BigQuery, search files, and call APIs. MCP is an open protocol, so the tools you build work across different vendors and frameworks.
4. Build a dynamic frontend with Agent-to-UI (A2UI). The best user experiences are highly visual. The A2UI codelab shows you how to build an agent that renders real interface components (layouts, charts, interactive menus) that update dynamically in real time as the conversation flows. The agent literally assembles the UI the user needs, on the fly.
Scale AI agents
A prototype on your laptop is one thing. Handling production traffic, memory, and orchestration is what comes next.
5. Deploy a stateful data science agent to Agent Runtime (formerly known as Agent Engine). The Stateful Data Science Agent codelab walks you through building a BigQuery agent that remembers user preferences across sessions via Memory Bank, then deploying it directly to Agent Runtime. All of the underlying infrastructure, scaling, and session management are handled for you automatically.
6. Build long-running agents that pause, resume, and never lose context. Building an agent that responds to a single prompt is easy, but real enterprise workflows often take days or weeks to complete. This tutorial walks through building agents that run reliably for weeks. You'll learn three architectural patterns: durable state machines, event-driven idle time handling, and checkpoint-and-resume with persistent sessions. The example is an onboarding coordinator agent that survives container restarts and picks up exactly where it left off.
7. Deploy an ambient expense agent to Agent Runtime with the Agents CLI. Remember the expense agent from the Build section? The Deploy to Agent Runtime codelab picks up that agent and takes it to production. You scaffold your deployment config with the Agents CLI, preview it with a dry run, then deploy it live. Cloud Trace, Cloud Logging, and BigQuery Agent Analytics wire in automatically, and the agent auto-registers in Agent Registry, so it’s discoverable across your org the moment it goes live.
8. Give your production agent a real front end. The frontend codelab is where everything comes together. You build a manager dashboard on Cloud Run, connect it to Agent Runtime through an OIDC-authenticated Pub/Sub pipeline, and give managers the ability to resume paused human-in-the-loop sessions from the browser. It ties the expense agent and the deployment together into a complete end-to-end enterprise architecture.
Govern AI agents
Scaling agents across an organization requires a system of built-in guardrails to manage access, track endpoints, and filter traffic.
9. Secure your agent's lifecycle from the first commit. The Secure Agentic Coding codelab shows you how to build a shopping assistant test-first with test-driven development (TDD), wire in a custom STRIDE threat model, set up a Semgrep pre-commit hook, and configure a PreToolUse gate that blocks risky actions before execution. You deliberately plant a hardcoded API key, and the agent catches and fixes it the moment the hook fires.
10. Control agent access with Agent Gateway. The Agent Gateway codelab covers runtime governance. You deploy a multi-tool ADK agent on Agent Runtime that calls MCP servers on Cloud Run through Agent Gateway. Each agent gets a unique identity with end-to-end mTLS. Every outbound call goes through IAP authentication and IAM authorization. On top of that, Model Armor inspects all content for prompt injection and data leakage. It’s a complete, production-grade governance stack in one demo.
Optimize AI agents
Shipping an agent is the start. The hard part is knowing whether your next prompt tweak actually makes it better or quietly breaks ten other things. Agent Platform gives you the tools to close that loop.
11. Drive the agent quality flywheel from your coding agent. You tweaked a prompt. It looks better on three examples, but did you just break ten others? This tutorial introduces a five-stage evaluation flywheel you run directly from your coding agent: prepare data (from OTel traces, hand-crafted cases, or synthesized scenarios), run inference, grade with Google's adaptive AutoRaters, analyze failure clusters, and execute targeted optimizations. The AutoRaters are built on the same principles Google uses to evaluate its own models and first-party agents, developed in partnership with DeepMind. Describe what you want measured in plain language. Your coding agent picks up the rest.
12. Build a cross-language multi-agent pipeline with A2A. In a large enterprise, different teams will inevitably build agents in different languages. This tutorial walks through a contract compliance pipeline where a Python-based agent extracts terms using Gemini and a Go-based agent validates them against corporate policy. The two services connect via the Agent-to-Agent (A2A) protocol and are orchestrated by ADK. You'll learn how RemoteA2aAgent turns any A2A-compliant service into a local sub-agent with a few lines of code.
- Scale agents across frameworks with CrewAI, LangGraph, A2A, and ADK. Most production teams don't standardize on one agent framework. The codelab shows you how to orchestrate across all of them: an ADK control room delegates planning to a LangGraph state machine, which dispatches tasks to a CrewAI execution crew, all connected via the A2A protocol. If one step fails, the control room re-plans automatically.
Get started
If you want to see the full agent development lifecycle in under 10 minutes, watch this walkthrough. Otherwise, install Agents CLI, open up your coding agent, and start building today.
AI算出
技術分析ainew評価標準
AI エージェントの構築と運用に関する具体的な技術的知見(ADK、MCP、ヒューマン・イン・ザ・ループ等)を多数含んでおり、実装ガイドとしての価値が高い。ただし、日本固有のコンプライアンスや価格情報などは含まれていないため、日本の関連性は低めとなる。
6つの評価軸を見る
- AI関連度
- 100
- 情報源の信頼性
- 25
- 新規性
- 75
- 調べる価値
- 75
- 重複の少なさ
- 100
- 日本での有用性
- 25
今日のまとめ
AIデイリーブリーフで今日の重要ニュースをまとめ読み