You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Agent Development Kit (ADK) is designed for developers seeking fine-grained control and flexibility when building advanced AI agents that are tightly integrated with services in Google Cloud. It allows you to define agent behavior, orchestration, and tool use directly in code, enabling robust debugging, versioning, and deployment anywhere – from your laptop to the cloud.
10
20
@@ -25,7 +35,7 @@ The Agent Development Kit (ADK) is designed for developers seeking fine-grained
25
35
26
36
## 🚀 Installation
27
37
28
-
You can install the Agent Developer Kit using `pip`:
38
+
You can install the ADK using `pip`:
29
39
30
40
```bash
31
41
pip install google-adk
@@ -42,7 +52,7 @@ from google.adk.tools import google_search
42
52
43
53
root_agent = Agent(
44
54
name="search_assistant",
45
-
model="gemini-1.5-flash-latest", # Or your preferred model like gemini-2.0-flash-001
55
+
model="gemini-2.0-flash-exp", # Or your preferred Gemini model
46
56
instruction="You are a helpful assistant. Answer user questions using Google Search when needed.",
47
57
description="An assistant that can search the web.",
48
58
tools=[google_search]
@@ -68,19 +78,18 @@ Or launch the Web UI from the folder that contains `my_agent` folder:
68
78
adk web
69
79
```
70
80
71
-
For a full step-by-step guide, check out the quickstart or sample agents.
81
+
For a full step-by-step guide, check out the [quickstart](https://google.github.io/adk-docs/get-started/quickstart/) or [sample agents](https://github.com/google/adk-samples).
72
82
73
83
## 📚 Resources
74
84
75
85
Explore the full documentation for detailed guides on building, evaluating, and deploying agents:
0 commit comments