|
1 | 1 | # Build Your First Intelligent Agent Team: A Progressive Weather Bot with ADK
|
2 | 2 |
|
3 |
| - |
| 3 | +<!-- Optional outer container for overall padding/spacing --> |
| 4 | +<div style="padding: 10px 0;"> |
| 5 | + |
| 6 | + <!-- Line 1: Open in Colab --> |
| 7 | + <!-- This div ensures the link takes up its own line and adds space below --> |
| 8 | + <div style="margin-bottom: 10px;"> |
| 9 | + <a href="https://colab.research.google.com/github/google/adk-docs/blob/main/examples/python/notebooks/adk_tutorial.ipynb" target="_blank" style="display: inline-flex; align-items: center; gap: 5px; text-decoration: none; color: #4285F4;"> |
| 10 | + <img width="32px" src="https://www.gstatic.com/pantheon/images/bigquery/welcome_page/colab-logo.svg" alt="Google Colaboratory logo"> |
| 11 | + <span>Open in Colab</span> |
| 12 | + </a> |
| 13 | + </div> |
| 14 | + |
| 15 | + <!-- Line 2: Share Links --> |
| 16 | + <!-- This div acts as a flex container for the "Share to" text and icons --> |
| 17 | + <div style="display: flex; align-items: center; gap: 10px; flex-wrap: wrap;"> |
| 18 | + <!-- Share Text --> |
| 19 | + <span style="font-weight: bold;">Share to:</span> |
| 20 | + |
| 21 | + <!-- Social Media Links --> |
| 22 | + <a href="https://www.linkedin.com/sharing/share-offsite/?url=https%3A//github.com/google/adk-docs/blob/main/examples/python/notebooks/adk_tutorial.ipynb" target="_blank" title="Share on LinkedIn"> |
| 23 | + <img width="20px" src="https://upload.wikimedia.org/wikipedia/commons/8/81/LinkedIn_icon.svg" alt="LinkedIn logo" style="vertical-align: middle;"> |
| 24 | + </a> |
| 25 | + <a href="https://bsky.app/intent/compose?text=https%3A//github.com/google/adk-docs/blob/main/examples/python/notebooks/adk_tutorial.ipynb" target="_blank" title="Share on Bluesky"> |
| 26 | + <img width="20px" src="https://upload.wikimedia.org/wikipedia/commons/7/7a/Bluesky_Logo.svg" alt="Bluesky logo" style="vertical-align: middle;"> |
| 27 | + </a> |
| 28 | + <a href="https://twitter.com/intent/tweet?url=https%3A//github.com/google/adk-docs/blob/main/examples/python/notebooks/adk_tutorial.ipynb" target="_blank" title="Share on X (Twitter)"> |
| 29 | + <img width="20px" src="https://upload.wikimedia.org/wikipedia/commons/5/5a/X_icon_2.svg" alt="X logo" style="vertical-align: middle;"> |
| 30 | + </a> |
| 31 | + <a href="https://reddit.com/submit?url=https%3A//github.com/google/adk-docs/blob/main/examples/python/notebooks/adk_tutorial.ipynb" target="_blank" title="Share on Reddit"> |
| 32 | + <img width="20px" src="https://redditinc.com/hubfs/Reddit%20Inc/Brand/Reddit_Logo.png" alt="Reddit logo" style="vertical-align: middle;"> |
| 33 | + </a> |
| 34 | + <a href="https://www.facebook.com/sharer/sharer.php?u=https%3A//github.com/google/adk-docs/blob/main/examples/python/notebooks/adk_tutorial.ipynb" target="_blank" title="Share on Facebook"> |
| 35 | + <img width="20px" src="https://upload.wikimedia.org/wikipedia/commons/5/51/Facebook_f_logo_%282019%29.svg" alt="Facebook logo" style="vertical-align: middle;"> |
| 36 | + </a> |
| 37 | + </div> |
| 38 | + |
| 39 | +</div> |
4 | 40 | This tutorial extends from the [Quickstart example](https://google.github.io/adk-docs/get-started/quickstart/) for [Agent Development Kit](https://google.github.io/adk-docs/get-started/). Now, you're ready to dive deeper and construct a more sophisticated, **multi-agent system**.
|
5 | 41 |
|
6 | 42 | We'll embark on building a **Weather Bot agent team**, progressively layering advanced features onto a simple foundation. Starting with a single agent that can look up weather, we will incrementally add capabilities like:
|
|
0 commit comments