Skip to content

Commit bbafc80

Browse files
committed
update readme
1 parent f9687f3 commit bbafc80

File tree

4 files changed

+24
-10
lines changed

4 files changed

+24
-10
lines changed

examples/a2a-adk-app/airbnb_agent/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
An example langgraph agent .
1+
# Remote agent built by LangGraph
22

33
## Getting started
44

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
# An example host agent frond end
12

2-
3-
> **⚠️ DISCLAIMER: THIS IS NOT AN OFFICIALLY SUPPORTED GOOGLE PRODUCT. THIS PROJECT IS INTENDED FOR DEMONSTRATION PURPOSES ONLY. IT IS NOT INTENDED FOR USE IN A PRODUCTION ENVIRONMENT.**
4-
5-
3+
- Start the server
4+
```bash
5+
uv run app.py
6+
```
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Host Agent built by ADK
2+
3+
This example shows how to create an A2A Server that uses an ADK-based Agent.
4+
5+
6+
## Setting up the agent
7+
8+
1. Create the .env file with your API Key
9+
```bash
10+
OOGLE_GENAI_USE_VERTEXAI=TRUE
11+
GOOGLE_CLOUD_PROJECT="your project id"
12+
GOOGLE_CLOUD_LOCATION=us-central1
13+
AIR_AGENT_URL=http://localhost:10002
14+
WEA_AGENT_URL=http://localhost:10001
15+
```
16+

examples/a2a-adk-app/weather_agent/README.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
1-
# ADK Agent
1+
# Remote Agent built by ADK
22

33
This example shows how to create an A2A Server that uses an ADK-based Agent.
44

5-
65
## Running the example
76

8-
1. Create the .env file with your API Key and OAuth2.0 Client details
7+
1. Create the .env file with the following content:
98

109
```bash
1110
echo "GOOGLE_API_KEY=your_api_key_here" > .env
12-
echo "GOOGLE_CLIENT_ID=your_client_id_here" >> .env
13-
echo "GOOGLE_CLIENT_SECRET=your_client_secret_here" >> .env
1411
```
1512

1613
2. Run the example

0 commit comments

Comments
 (0)