From 01656a785110b02506764233aeac2d42086444d6 Mon Sep 17 00:00:00 2001 From: rcarrata Date: Thu, 7 Nov 2024 18:59:23 +0100 Subject: [PATCH] added agent frameworks --- ...doc.adoc => 03-01-ai-agent-frameworks.adoc} | 0 .../modules/ROOT/pages/03-02-langgraph.adoc | 18 +++++++++++++++++- 2 files changed, 17 insertions(+), 1 deletion(-) rename content/modules/ROOT/pages/{03-01-ai-agent-frameworks.adoc.adoc => 03-01-ai-agent-frameworks.adoc} (100%) diff --git a/content/modules/ROOT/pages/03-01-ai-agent-frameworks.adoc.adoc b/content/modules/ROOT/pages/03-01-ai-agent-frameworks.adoc similarity index 100% rename from content/modules/ROOT/pages/03-01-ai-agent-frameworks.adoc.adoc rename to content/modules/ROOT/pages/03-01-ai-agent-frameworks.adoc diff --git a/content/modules/ROOT/pages/03-02-langgraph.adoc b/content/modules/ROOT/pages/03-02-langgraph.adoc index efe19b4..57512ad 100644 --- a/content/modules/ROOT/pages/03-02-langgraph.adoc +++ b/content/modules/ROOT/pages/03-02-langgraph.adoc @@ -1,4 +1,20 @@ = LangGraph include::_attributes.adoc[] -TBD \ No newline at end of file +**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.