Excellent breakdown! This video really helped me grasp the concepts, and it's one of the first Langchain videos that clicked for me. While Harrison's brilliance is undeniable, Lance, you're truly a great teacher.I love your approach of using diagrams to break down complex code into easily understandable logic. It really enhances the learning experience!
@anshumansrivastava8108Күн бұрын
This is definitely helpful . So clear explanation
@donb552111 ай бұрын
great video Lance! The way you diagrammed the flow made it easy to understand the concepts.
@preston_is_on_youtube11 ай бұрын
This is sooooo cool 🤯 And I love that you guys are putting out all these educational videos - thank you!
@UGMurthy11 ай бұрын
Thank you. This video was informative. Your explanation was clear. For me personally the examples that us local LLMs are interesting. Thanks once again.
@jim0237711 ай бұрын
Great tutorial. Keep up the great work!
@advfuk8 ай бұрын
Thanks Lance for more one great tutorial! Really useful and easy to follow.
@ОлександрМельник-ь1у8 ай бұрын
Lance, you are great! Thank you for your splendid video!
@ramzirebai36616 ай бұрын
Very Clear and informative . Thank you
@hamzafarouk153811 ай бұрын
wow. Excellent demonstration.
@JoshuaMcQueen11 ай бұрын
Really great video! Keep 'em coming
@Armenian-abrank10 ай бұрын
Thank you for the great explanation!
@jzam54269 ай бұрын
Thank you for breaking this down! Is there a way to do cyclical/iterative agents when one produces an answer and the other checks the answer, and if not correct/satisfied with it, sends it back to the first agent to produce a better answer?
@neonnftz11 ай бұрын
Please record your videos in 1080p
@r.lancemartin799210 ай бұрын
(This is Lance, guy in the video.) Good feedback. I record w/ Loom. It was a UX issue w/ Loom where vids were not defaulted recorded to 1080p. Apologies!
@RossClaytor11 ай бұрын
Lance - isn't the workflow you outline here a DAG? The LangGraph docs are very explicit about not using LangGraph for DAGs - can you help us understand this nuance? "The main use is for adding cycles to your LLM application. Crucially, this is NOT a DAG framework. If you want to build a DAG, you should just use LangChain Expression Language."
@carloszelabueno4327 ай бұрын
Great video! I have a question about recent RAG papers which talking about RAG paradigms such as advanced RAG and modular RAG. Could we say that using LangGraph have we applying modular rag? I’m not sure in which paradigm fall self rag and crag. Thanks!!
@MLA2639 ай бұрын
Thanks for that ! Do you have a video that helps build an ui associated for prompting ?
@anshubhatia65328 ай бұрын
Hi, I have one question here related to the Retrieval Evaluator. Let's suppose we are not allowed to do a web search. Can we again play around with chunking and different retrieval methods?
@LordPBA9 ай бұрын
What are other possibly ways to utilize this on a local database? I mean, if there are no relevant docs what it can do?
@urd46518 ай бұрын
very helpful! thank you.
@corybilyeu44908 ай бұрын
Do you have any resources for deploying this type of solution on AWS/GCP?
@janwillemaltink221611 ай бұрын
at around 13 minutes, based on your story i would assume that it wouldnt run web search as there are at least a few documents that are relevant, but as i understand even if 1 of the retrieved documents isnt relevant it will do a web search?
@r.lancemartin799210 ай бұрын
(This is Lance, guy in the video.) Yes, with this logic it will do web search if *any* documents are irrelevant.
@siddharthchauhan34049 ай бұрын
How to deploy langgraph using langserve, can you please help me do it?
@GREENDAYROKS111 ай бұрын
Very interesting, I assume this would have very long response times?
@r.lancemartin799210 ай бұрын
(This is Lance, guy in the video.) I'm running on a Mac M2, 32GB. Latency is ~5-10 sec for final generations.
@Slimshady6835610 ай бұрын
@@r.lancemartin7992 lance from langchain has a nice ring to it😅😂
@seansullivan626311 ай бұрын
is thsi still effective with conversational memory?
@dex00111 ай бұрын
I'm working on developing RAG Application on CSV File. It is working fine for some queries, but queries like 1. Get total count of persons 2. Get average salary These type of questions that include to search all the rows of the given document Is not working fine. Is there any fix I can do or Implementing RAG is not a correct option.
@anuragmishra-yu2yx11 ай бұрын
Are you using csv agent for the solution you built? if not, then you can try either csv agent or pandasAI.
@Tushii11 ай бұрын
What worked for me was converting my CSV / multi page xlsx into a minimal database And then query that database, SQL queries worked much better for me
@sridevigogusetty837111 ай бұрын
It works for csv's but if it's pdf @tushii
@Tushii11 ай бұрын
@@sridevigogusetty8371 what would you like to do with your pdf ?
@sridevigogusetty837111 ай бұрын
@@Tushii for example if I have some pdf which has financial transactions of i want to query how I will convert that to db