diff --git a/Graphs/Looping.ipynb b/Graphs/Looping.ipynb index 90d30fa..e2cbc4d 100644 --- a/Graphs/Looping.ipynb +++ b/Graphs/Looping.ipynb @@ -48,14 +48,14 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": null, "id": "cbfd7047", "metadata": {}, "outputs": [], "source": [ "def greeting_node(state: AgentState) -> AgentState:\n", " \"\"\"Greeting Node which says hi to the person\"\"\"\n", - " state[\"name\"] = f\"Hi there, {state[\"name\"]}\"\n", + " state[\"name\"] = f\"Hi there, {state['name']}\"\n", " state[\"counter\"] = 0 \n", "\n", " return state\n",