Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion Exercises/Exercise_Graph1.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"def compliment_node(state: AgentState) -> AgentState:\n",
" \"\"\"Simple node that compliments the user\"\"\"\n",
"\n",
" state['name'] = state[\"name\"] + \" you're doing an amazing job learning LangGraph!\"\n",
" state['name'] = state[\"name\"] + \", you're doing an amazing job learning LangGraph!\"\n",
"\n",
" return state "
]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# LangGraph Course

Repository for all of the code written for the FreeCodeCamp LangGraph Course, including solutions for all exercises. This repo provides practical examples of using [LangGraph](https://github.com/langchain-ai/langgraph) for building agent-based applications through Python scripts and interactive Jupyter notebooks.

Repository for all of the code written for the [freeCodeCamp LangGraph Course](https://www.youtube.com/watch?v=jGg_1h0qzaM), including solutions for all exercises. This repo provides practical examples of using [LangGraph](https://github.com/langchain-ai/langgraph) for building agent-based applications through Python scripts and interactive Jupyter notebooks.
`
---

## Table of Contents
Expand Down