Skip to content

AI

Long-Term memory in LangGraph

Enhance LangGraph with Long-Term Memory: A Beginner’s Guide

Memory plays a vital role in any workflow within LangGraph, as it enables tailored outputs based on the conversation’s history. To support this functionality, LangGraph offers both short-term and long-term memory options. In this article, we will guide you through enhancing LangGraph with long-term memory to improve AI performance and create more personalized interactions. What is long-term memory As the… Continue readingEnhance LangGraph with Long-Term Memory: A Beginner’s Guide

Trustcall for Data Extraction and Long-Term Memory Storage in LangGraph

Ultimate Guide: Using Trustcall for Data Extraction and Long-Term Memory Storage in LangGraph

LangGraph allows you to store both short-term memory, which is accessible within the same thread, and long-term memory, which is accessible across threads, making it versatile for various use cases. However, extracting data from complex JSON schemas can be unreliable and costly. This is where Trustcall comes in—a powerful Python library that simplifies data extraction and enables efficient long-term memory… Continue readingUltimate Guide: Using Trustcall for Data Extraction and Long-Term Memory Storage in LangGraph

Top 5 Methods to Create a State in LangGraph

Top 5 Methods to Create a State in LangGraph

The state is a crucial component in LangGraph. Using state, you can transfer information into different nodes of the graph. Due to LangGraph’s flexibility, There are many ways to define State in LangGraph. Let’s check all the other ways. Define state in LangGraph by inheriting classes In Python, certain predefined classes, such as TypedDict and Pydantic, allow their properties to… Continue readingTop 5 Methods to Create a State in LangGraph

React agent with LangGraph

Effortlessly Create an Amazing ReAct Agent with LangGraph

Langgraph is a powerful library that helps build AI Agents for your goal-specific tasks. Due to its flexibility and robustness, anyone can make any AI agent easily. Today, in this blog you will learn exactly how to create a simple React agent using LangGraph. If you are new to LangGraph, I suggest first understanding the core concepts of LangGraph from… Continue readingEffortlessly Create an Amazing ReAct Agent with LangGraph

LangGraph: An Introduction to the LangGraph Components

What is LangGraph? Langraph is an open-source framework designed to build applications with language models (LLMs) using a graph-based approach. LangGraph is used to create AI Agent that use to do automation tasks. It allows developers to create workflows where tasks are broken into nodes, each representing a specific function, such as calling an LLM, executing a tool, or interacting… Continue readingLangGraph: An Introduction to the LangGraph Components

Appointment Bot using Langchain and Google sheet

How to make an appointment bot using Langchain and Google Sheets in Python easily

Introduction In this blog, we’ll dive into the fascinating world of building an appointment bot using Langchain and integrating it with Google Sheets using Python. Imagine having an automated system that updates your Google Sheets for efficient record-keeping. Make an API in Google Sheet Before creating the AI chatbot that helps to create an appointment. We need to create one… Continue readingHow to make an appointment bot using Langchain and Google Sheets in Python easily