Skip to content

Commit

Permalink
added agent frameworks
Browse files Browse the repository at this point in the history
  • Loading branch information
rcarrata committed Nov 7, 2024
1 parent 4b2ffad commit 01656a7
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion content/modules/ROOT/pages/03-02-langgraph.adoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
= LangGraph
include::_attributes.adoc[]

TBD
**Language**: Python
**Company**: LangChain Inc.
**License**: MIT

**LangGraph** is a library designed for creating complex, stateful applications that use large language models (LLMs) to manage agent and multi-agent workflows. Unlike traditional frameworks, LangGraph uses graph-based cycles instead of directed acyclic graphs (DAGs), enabling more intricate and adaptable workflows. This approach supports advanced use cases where agents may revisit tasks or adjust based on dynamic changes.

== Key Features

- **Graph-based Cycles**: By supporting cycles, LangGraph allows for flexible, iterative workflows, suitable for multi-agent interactions and feedback loops in applications requiring complex decision paths.

- **Controllability**: LangGraph provides fine-grained control over agent flows and state management, giving developers more precise handling of agent interactions and process adjustments.

- **Persistence**: With built-in support for memory and human-in-the-loop functionalities, LangGraph allows agents to retain context across interactions, facilitating advanced, long-term workflows and adaptable responses.

=== Important Note

For our upcoming workshop, we will be using LangGraph to demonstrate the potential of graph-based language agents in building sophisticated, real-world applications. Its flexibility and control make it an ideal choice for showcasing multi-agent interactions, memory, and dynamic workflows.

0 comments on commit 01656a7

Please sign in to comment.