Skip to content

Commit 255b9fb

Browse files
committed
fix: add readme for google adk samples
1 parent caf1b40 commit 255b9fb

4 files changed

Lines changed: 54 additions & 0 deletions

File tree

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# UiPath Google ADK Samples
2+
3+
Sample agents built with [Google ADK](https://google.github.io/adk-docs/) and [UiPath LLM providers](../src/uipath_google_adk/chat/).
4+
5+
| Sample | Description |
6+
|--------|-------------|
7+
| [quickstart-agent](./quickstart-agent/) | Single agent with tool calling — fetches live weather data for any location |
8+
| [typed-agent](./typed-agent/) | Sequential agent with typed input/output — researches topics via Wikipedia and returns structured JSON |
9+
| [multi-agent](./multi-agent/) | Multi-agent pipeline — coordinates research, code generation, and report formatting with multiple sub-agents |
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Multi-Agent
2+
3+
A three-stage sequential agent that coordinates research (Wikipedia + Tavily), code generation, and structured report formatting.
4+
5+
## Run
6+
7+
```
8+
uipath run main '{"topic": "machine learning", "depth": "detailed"}'
9+
```
10+
11+
## Debug
12+
13+
```
14+
uipath dev web
15+
```
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Quickstart Agent
2+
3+
A simple weather assistant that fetches current weather data for any location using the Open-Meteo API. Uses LLMs through the UiPath LLM Gateway.
4+
5+
## Run
6+
7+
```
8+
uipath run main "What's the weather in San Francisco?"
9+
```
10+
11+
## Debug
12+
13+
```
14+
uipath dev web
15+
```
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Typed Agent
2+
3+
A two-stage sequential agent that researches a topic via Wikipedia and produces structured JSON output using the formatter pattern.
4+
5+
## Run
6+
7+
```
8+
uipath run main '{"topic": "artificial intelligence", "max_sources": 3, "language": "en"}'
9+
```
10+
11+
## Debug
12+
13+
```
14+
uipath dev web
15+
```

0 commit comments

Comments
 (0)