From 09a3f1138d75d3999d2c2dd78c72e7d7bd493f6c Mon Sep 17 00:00:00 2001 From: Madhu Nunna Date: Fri, 24 Apr 2026 18:22:39 -0700 Subject: [PATCH] fix: update product-review-agent dataset URL to canonical UCSD lab domain The jmcauley.ucsd.edu dataset URL still works today but Prof. McAuley's canonical lab site is now mcauleylab.ucsd.edu. Updating to the canonical URL reduces risk of future breakage when the legacy personal domain is decommissioned, and is consistent with the replacement URL suggested by the reporter of issue #542. Fixes #542 --- .../use-case-examples/product-review-agent/README.md | 2 +- .../use-case-examples/product-review-agent/main.ipynb | 2 +- .../use-case-examples/product-review-agent/main.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/agents-and-function-calling/bedrock-agents/use-case-examples/product-review-agent/README.md b/agents-and-function-calling/bedrock-agents/use-case-examples/product-review-agent/README.md index c09eefeea..c37fd4d18 100644 --- a/agents-and-function-calling/bedrock-agents/use-case-examples/product-review-agent/README.md +++ b/agents-and-function-calling/bedrock-agents/use-case-examples/product-review-agent/README.md @@ -8,7 +8,7 @@ The agent integrates with the knowledge base **without an explicit association** ## Dataset -This example uses the [amazon reviews 2018 dataset](https://jmcauley.ucsd.edu/data/amazon_v2/categoryFilesSmall/All_Beauty_5.json.gz) with these fields - review (string), rating (number), timestamp (number), reviewers (string list). +This example uses the [amazon reviews 2018 dataset](https://mcauleylab.ucsd.edu/public_datasets/data/amazon_v2/categoryFilesSmall/All_Beauty_5.json.gz) with these fields - review (string), rating (number), timestamp (number), reviewers (string list). We create the following metadata file for each of the text chunks (review) in the knowledge base. diff --git a/agents-and-function-calling/bedrock-agents/use-case-examples/product-review-agent/main.ipynb b/agents-and-function-calling/bedrock-agents/use-case-examples/product-review-agent/main.ipynb index 0906535c8..5eb4c1277 100644 --- a/agents-and-function-calling/bedrock-agents/use-case-examples/product-review-agent/main.ipynb +++ b/agents-and-function-calling/bedrock-agents/use-case-examples/product-review-agent/main.ipynb @@ -171,7 +171,7 @@ }, "outputs": [], "source": [ - "!curl -o 'data/All_Beauty_5.json.gz' 'https://jmcauley.ucsd.edu/data/amazon_v2/categoryFilesSmall/All_Beauty_5.json.gz' --insecure" + "!curl -o 'data/All_Beauty_5.json.gz' 'https://mcauleylab.ucsd.edu/public_datasets/data/amazon_v2/categoryFilesSmall/All_Beauty_5.json.gz' --insecure" ] }, { diff --git a/docs/agents-and-function-calling/bedrock-agents/use-case-examples/product-review-agent/main.md b/docs/agents-and-function-calling/bedrock-agents/use-case-examples/product-review-agent/main.md index 081df19a0..3e40cf2e6 100644 --- a/docs/agents-and-function-calling/bedrock-agents/use-case-examples/product-review-agent/main.md +++ b/docs/agents-and-function-calling/bedrock-agents/use-case-examples/product-review-agent/main.md @@ -107,7 +107,7 @@ except: ```python -!curl -o 'data/All_Beauty_5.json.gz' 'https://jmcauley.ucsd.edu/data/amazon_v2/categoryFilesSmall/All_Beauty_5.json.gz' --insecure +!curl -o 'data/All_Beauty_5.json.gz' 'https://mcauleylab.ucsd.edu/public_datasets/data/amazon_v2/categoryFilesSmall/All_Beauty_5.json.gz' --insecure ```