Skip to main content
Tooling
0 votes
0 replies
76 views

I'm currently working on extracting personal data from personal and institutional documents. I'm looking specifically for full names and ID numbers in a variety of documents. In our team, we already ...
Marcos Filipe Capella's user avatar
1 vote
1 answer
83 views

I'm trying to learn langgraph, and reloading the code has been a major issue. In theory, code reload should be automatic, but it does not work. Sometimes I change the code and the change happens, ...
lfagundes's user avatar
  • 3,088
0 votes
0 answers
48 views

I'm building a FastAPI application that uses LangGraph's functional API (@entrypoint) for defining workflows. Each entrypoint requires a checkpointer, and I want to use PostgresSaver in production but ...
Джон Сноу's user avatar
Best practices
0 votes
0 replies
80 views

In the official docs they only show how to test Graph API (StateGraph): https://docs.langchain.com/oss/python/langgraph/test#getting-started Our team is discussing alternatives to write such tests for ...
Ferran Maylinch's user avatar
3 votes
1 answer
138 views

I'm using langchain==0.3.24. I converted an image to base 64 and now I want to put it in a chatPromptTemplate: ... image_data = ... #converting image to base64 and store it in the variable ...
Mohammed Baashar's user avatar
0 votes
1 answer
185 views

I downloaded the weights of a llama model from huggingface. It works for simple tasks, but I don't know how to use it with langgraph to create agents or how to bind tools. Here is how I downloaded it: ...
jottbe's user avatar
  • 4,564
1 vote
0 answers
136 views

I'm building a Streamlit app using LangChain (latest), LangGraph, and Groq with the model: llama-3.3-70b-versatile I'm using the modern create_agent() API (LangGraph-backed). The agent has two tools: ...
Ravikiran Arasur T S's user avatar
2 votes
1 answer
112 views

I've been using Langchain and Langgraph for some time now and have gained experience working with various multi-agent models, including hierarchical agents and collaboration agents. Recently, I came ...
Melvin Dow's user avatar
Advice
1 vote
3 replies
72 views

I am trying to override the Langgraph's state["messages"] before it reaches the agent, but not sure if I am doing it right. I need to remove some messages from state before sending it to ...
Triko's user avatar
  • 3
0 votes
1 answer
89 views

import os, asyncio, json from dotenv import load_dotenv from autogen_agentchat.agents import AssistantAgent from autogen_agentchat.teams import DiGraphBuilder, GraphFlow from chromadb import ...
Sushruth Kamarushi's user avatar
0 votes
0 answers
191 views

I'm using Langgraph version 1.2.7 to build a workflow composed of several nodes. Many of these nodes may interrupt the flow by asking the user for clarifications or additional information. The user ...
lcs_godoy's user avatar
  • 103
0 votes
0 answers
112 views

I’m experiencing an issue where the LLM correctly invokes a tool (tool call is successful), but it appears unable to interpret or process the tool’s result. Here is the code to reproduce the issue: ...
Gad82's user avatar
  • 131
1 vote
0 answers
159 views

I am designing a complex workflow in Langgraph where there will be multiple agents. Some of the agents will be intermediary and some other will be user-facing (that is I will show the output of those ...
hafiz031's user avatar
  • 2,994
Tooling
0 votes
0 replies
105 views

I'm trying to use metadata in RAG systems using LangChain. I see a lot of tutorials using SelfQueryRetriever, but it appears that this was deprecated in recent versions. Is this correct? I couldn't ...
Augusto Firmo's user avatar
0 votes
1 answer
127 views

Why does update_state in LangGraph modify fields even if I didn't specify them? code Here is my code. Import some lib first... from langgraph.graph import StateGraph from typing import TypedDict from ...
mzvltr's user avatar
  • 1

15 30 50 per page
1
2 3 4 5
10