Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions python/agents/travel-concierge/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,12 +151,11 @@ Expand on the "Key Components" from above.
gcloud auth application-default login
```

5. Activate the virtual environment set up by Poetry, run:
5. (Optional) Activate the virtual environment:
```bash
eval $(poetry env activate)
(travel-concierge-py3.12) $ # Virtualenv entered
source .venv/bin/activate
```
Repeat this command whenever you have a new shell, before running the commands in this README.
Note: If you prefer not to activate the environment, you can run any command in this README by prefixing it with `uv run` (e.g., `uv run adk run travel_concierge`).

## Running the Agent

Expand All @@ -167,13 +166,13 @@ You may talk to the agent using the CLI:

```bash
# Under the travel-concierge directory:
adk run travel_concierge
uv run adk run travel_concierge
```

or via its web interface:
```bash
# Under the travel-concierge directory:
adk web
uv run adk web
```

This will start a local web server on your machine. You may open the URL, select "travel_concierge" in the top-left drop-down menu, and
Expand Down