langgraph/tutorials/rag/langgraph_adaptive_rag/ #689
Replies: 11 comments 9 replies
-
Second last example here got stuck in a (seemingly) infinite loop :-/ |
Beta Was this translation helpful? Give feedback.
-
I would love to see some Memory specific Langgraph tutorials. That explain how to create a conversational agent that can save memories and also recall from previous chat sessions, perhaps using some sort of RAG technique. Similar to you Journaling App. Thanks! |
Beta Was this translation helpful? Give feedback.
-
Nice, I really like Langgraph with making apps like this much easier. However on the document grading part I am not that happy. It takes long until the LLM graded all retrieved docs, even if there are only 3 docs with 1000 chars retrieved. What could be done to make the grading part faster? In a production environment I think it takes too long for me unfortunately. |
Beta Was this translation helpful? Give feedback.
-
Amazing Tuto, Thanks LangGraph Team |
Beta Was this translation helpful? Give feedback.
-
@LangGraph Team , it's possible to build Multiple Graphs, and then combine them in One System with certain communication between them , so we can handle big a and complexe Tasks ? |
Beta Was this translation helpful? Give feedback.
-
a great tool for multi-agent, Thanks LangGraph Team |
Beta Was this translation helpful? Give feedback.
-
After implementing this code, I get the graph where routing is taking place from the START. When it reaches to the node web_search, it does not know about the state attribute 'document'. So, it gives an error that it can't append data to a None type. I am running this on "gpt-4o-mini". To mitigate this, I added a dummy node starter after START and routing everything from the starter node instead of START. def starter(state: GraphState):
|
Beta Was this translation helpful? Give feedback.
-
I implemented this code step by step. TypeError: unhashable type: 'RouteQuery' Please suggest. |
Beta Was this translation helpful? Give feedback.
-
If want to use DDG, try:
|
Beta Was this translation helpful? Give feedback.
-
Hi, this code is working very well in my side. However, I have added a memory like this : Compilecompiled_agent = workflow.compile(checkpointer=memory) But it didn't work, any idea why ? Thanks in advance. |
Beta Was this translation helpful? Give feedback.
-
If a query is initially routed to web_search because it's unrelated to the index, but later fails validation after generate, it gets redirected to transform_query, which then routes it back to retrieve. This creates an inconsistent logic flow because the original routing decision deemed retrieve irrelevant. The query should instead loop back to web_search or exit gracefully after retries, not switch paths illogically. Is this a bug or am I tripping? |
Beta Was this translation helpful? Give feedback.
-
langgraph/tutorials/rag/langgraph_adaptive_rag/
Build language agents as graphs
https://langchain-ai.github.io/langgraph/tutorials/rag/langgraph_adaptive_rag/
Beta Was this translation helpful? Give feedback.
All reactions