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
6 changes: 3 additions & 3 deletions 06_OpenSource_examples/simple-langgraph-agent-setup.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@
"from langchain_core.runnables.config import RunnableConfig\n",
"from langchain_core.prompts import ChatPromptTemplate, MessagesPlaceholder\n",
"\n",
"bedrock_client = boto3.client(\"bedrock-runtime\", region_name=\"us-west-2\")\n",
"bedrock_client = boto3.client(\"bedrock-runtime\", region_name=\"us-east-1\")\n",
"model_id = \"us.amazon.nova-lite-v1:0\"\n",
"provider_id = \"amazon\"\n",
"\n",
Expand Down Expand Up @@ -769,7 +769,7 @@
},
{
"cell_type": "code",
"execution_count": 14,
"execution_count": null,
"metadata": {
"ExecuteTime": {
"end_time": "2025-02-13T20:33:39.439454Z",
Expand All @@ -783,7 +783,7 @@
"from langchain_core.runnables.history import RunnableWithMessageHistory\n",
"\n",
"\n",
"bedrock_client = boto3.client(\"bedrock-runtime\", region_name=\"us-west-2\")\n",
"bedrock_client = boto3.client(\"bedrock-runtime\", region_name=\"us-east-1\")\n",
"model_id = \"us.amazon.nova-micro-v1:0\"\n",
"\n",
"provider_id = \"amazon\"\n",
Expand Down