An open API service indexing awesome lists of open source software.

https://github.com/sangeetagarwal/ai-agents-langgraph

Become an expert in constructing and refining AI agents. Explore how to create flow-driven applications, employ agentic search methods, and integrate human-in-the-loop systems using the robust components of LangGraph.
https://github.com/sangeetagarwal/ai-agents-langgraph

agent-accuracy agent-components agent-development agentic-search ai-agents ai-enhancements essay-writing-agent flow-based-applications human-in-the-loop langchain langgraph state-management task-division

Last synced: about 2 months ago
JSON representation

Become an expert in constructing and refining AI agents. Explore how to create flow-driven applications, employ agentic search methods, and integrate human-in-the-loop systems using the robust components of LangGraph.

Awesome Lists containing this project

README

          

# [AI Agents in LangGraph](https://www.deeplearning.ai/short-courses/ai-agents-in-langgraph/)

4. **Persistence**: Implement persistence in agents, enabling state management across multiple threads, conversation switching, and the ability to reload previous states.

**Note:** `SqliteSaver.from_conn_string()` is being used as a checkpointer in the course but that is now a context manager so per [github issue](https://github.com/langchain-ai/langgraph/discussions/1696#discussioncomment-10626265) the code has been updated as

```python
with SqliteSaver.from_conn_string(":memory:") as memory:
abot = Agent(model, [tool], system=prompt, checkpointer=memory)
messages = HumanMessage(content="who won the second last soccer world cup?")
...
```

## Credits

**Harrison Chase** is the Co-Founder and CEO of LangChain, bringing extensive expertise in AI and agent systems to guide you through this course.

**Rotem Weiss** is the Co-founder and CEO of Tavily, specializing in AI agent design and implementation, to help you master the use of LangGraph.

🔗 To enroll in the course or for further information, visit [deeplearning.ai](https://www.deeplearning.ai/short-courses/).