Skip to content

Commit 5e79043

Browse files
docs: Update langchain_quick_start.ipynb (#81)
* docs: Update langchain_quick_start.ipynb Tweak into to match memory store + AlloyDB's introductions * docs: Update langchain_quick_start.ipynb changes gcs bucket names --------- Co-authored-by: Averi Kitsch <akitsch@google.com>
1 parent caadf4d commit 5e79043

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

samples/langchain_quick_start.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"---\n",
3535
"# **Introduction**\n",
3636
"\n",
37-
"In this codelab you will learn how to create an interactive generative AI application with Retrieval Augmented Generation using [Cloud SQL for PostgreSQL](https://cloud.google.com/sql/docs/postgres) and [LangChain](https://www.langchain.com/). We will be creating an application grounded in a [Netflix Movie dataset](https://www.kaggle.com/datasets/shivamb/netflix-shows)."
37+
"In this codelab, you'll learn how to create a powerful interactive generative AI application using Retrieval Augmented Generation powered by [Cloud SQL for PostgreSQL](https://cloud.google.com/sql/docs/postgres) and [LangChain](https://www.langchain.com/). We will be creating an application grounded in a [Netflix Movie dataset](https://www.kaggle.com/datasets/shivamb/netflix-shows), allowing you to interact with movie data in exciting new ways."
3838
]
3939
},
4040
{
@@ -341,7 +341,7 @@
341341
"outputs": [],
342342
"source": [
343343
"# Import the Netflix titles table using gcloud command\n",
344-
"import_command_output = !gcloud sql import sql {instance_name} gs://cloud-samples-data/langchain/postgres/langchain_postgres_netflix_titles.sql --database={database_name} --quiet\n",
344+
"import_command_output = !gcloud sql import sql {instance_name} gs://cloud-samples-data/langchain/cloud-sql/postgres/first_five_netflix_titles.sql --database={database_name} --quiet\n",
345345
"\n",
346346
"if \"Imported data\" in str(import_command_output):\n",
347347
" print(import_command_output)\n",
@@ -608,7 +608,7 @@
608608
"outputs": [],
609609
"source": [
610610
"# Import the netflix titles with vector table using gcloud command\n",
611-
"import_command_output = !gcloud sql import sql {instance_name} gs://cloud-samples-data/langchain/postgres/netflix_titles_vector_table.sql --database={database_name} --quiet\n",
611+
"import_command_output = !gcloud sql import sql {instance_name} gs://cloud-samples-data/langchain/cloud-sql/postgres/netflix_titles_vector_table.sql --database={database_name} --quiet\n",
612612
"\n",
613613
"if \"Imported data\" in str(import_command_output):\n",
614614
" print(import_command_output)\n",

0 commit comments

Comments
 (0)