Introduction to LangGraph: A Quick Dive into Core Concepts

  Рет қаралды 13,891

Coding Crash Courses

Coding Crash Courses

Күн бұрын

Пікірлер: 64
@xratlas1
@xratlas1 6 ай бұрын
Looking forward to deeper tutorials on this, it was a good one, excited about Lang graph agent workflow!
@nullvoid12
@nullvoid12 6 ай бұрын
+1
@paulntalo1425
@paulntalo1425 12 күн бұрын
Thank you for sharing such information..🎉
@raymobula
@raymobula 3 ай бұрын
Excellent. Concise! And no super hyped language.
@shimotown
@shimotown 5 ай бұрын
Nice one! Waiting for the next one!
@anthonybateman8470
@anthonybateman8470 29 күн бұрын
Great explanation and precise as per the German mindset :-) Fantastic. Thank you.
@codingcrashcourses8533
@codingcrashcourses8533 29 күн бұрын
@@anthonybateman8470 thank you ;)
@TomVanSchoor
@TomVanSchoor 5 ай бұрын
I can't remember if you mentioned it, but you can use your crewai crews as nodes in the langgraph ecosystem as well. That means you can create custom workflows between your trusted crews too.
@codingcrashcourses8533
@codingcrashcourses8533 5 ай бұрын
Yes of course, you can pretty much use everything in a node. You can even use different agents build with different frameworks.
@ChristopherFoster-McBride
@ChristopherFoster-McBride 4 ай бұрын
Excellent demo - only thing I would say is show at the beginning what the outcome/you are trying to build so you can see how it all ties together.
@codingcrashcourses8533
@codingcrashcourses8533 4 ай бұрын
Thanks for the Feedback
@oluwaseunakinropo6318
@oluwaseunakinropo6318 5 ай бұрын
God bless you Coding Crashcourses
@solidkundi
@solidkundi 6 ай бұрын
this is amazing.. I've been going through few langgraph tutorials. I think you really know how to dumb it down for me thanks
@peyman6827
@peyman6827 5 ай бұрын
well explained, Thank you so much
@MarcoAerlic-wv7gz
@MarcoAerlic-wv7gz 5 ай бұрын
Very good tutorial. Thank you.
@codingcrashcourses8533
@codingcrashcourses8533 5 ай бұрын
Thank you for your comment:)
@Danishkhan-ni5qf
@Danishkhan-ni5qf 6 ай бұрын
This video is juiced with knowledge! Amazing content
@meisherenow
@meisherenow 2 ай бұрын
Nicely explained.
@Lirim_K
@Lirim_K 3 ай бұрын
Fantastic LangGraph tutorial. Thank you. I'd love to see something more advanced like a chatbot that can give product recommendations using RAG search.
@codingcrashcourses8533
@codingcrashcourses8533 3 ай бұрын
That´s something I will probably build as final project in my udemy course. It´s too big for youtube
@arslanabid2245
@arslanabid2245 2 ай бұрын
@@codingcrashcourses8533 please make soon! I am also waiting for a project like this.
@Lirim_K
@Lirim_K Ай бұрын
@@codingcrashcourses8533 Let me know when this is complete, I'd gladly take that course.
@codingcrashcourses8533
@codingcrashcourses8533 Ай бұрын
@@Lirim_K yes i will make an annoucement video :)
@-d3th-384
@-d3th-384 6 ай бұрын
Hey! Thank you for your short but impactful course. I have one question though to ask. Have you ever come across a situation where your agent was stuck in a continuous tool calling loop without exiting and thus providing a concrete final answer? I'm facing this problem right now and I do not know what to do.
@codingcrashcourses8533
@codingcrashcourses8533 6 ай бұрын
Gonna demonstrate that in the next video:)
@GeorgAubele
@GeorgAubele 5 ай бұрын
Excellent tutorial. But what do you need the `from langchain_openai import ChatOpenAI` for in the first cycles example?
@codingcrashcourses8533
@codingcrashcourses8533 5 ай бұрын
the package langchain-openai :)
@GeorgAubele
@GeorgAubele 5 ай бұрын
But you don't use the ChatOpenAI package on that example, do you? I mean - you define a model, but where is it used? The decision to stop the cycle comes from the the algorithm, does it? I don't see any AI model involved into that cycle example. Edit: Ah, ok, the decision on the cycle is made by the model!
@techme1972
@techme1972 3 ай бұрын
Great video!! Thank you for taking the time! My confusion is…How would I create a multi agent graph where the initial agent asks the user a few questions to determine intent -> based on that it determines what agent to send the user to - this 2nd agent has its own LLM prompt logic -> when this 2nd agent requires feedback from the user … does it communicate with the user directly ? Or does the initial agent only communicate with the user That is where I’m really confused - any guidance would be great! Thank you again!!
@codingcrashcourses8533
@codingcrashcourses8533 3 ай бұрын
It is actually totally up to you. When only the initial agent is talking to the user, you have a so called hierarchial agent. But you can allow every agent to interact with a user. That´s totally up to you. If you make a system with intent classificatio and route to different agents, I would probably let the agent directly talk to the agent, since the first agent is just the classifier and probably only should do that task
@techme1972
@techme1972 3 ай бұрын
@@codingcrashcourses8533 Anyway I could talk to you more about it - of course I’d compensate you for your time Thank you!
@GeorgAubele
@GeorgAubele 5 ай бұрын
On your Github Site, there is a repository for an "Advanced RAG with Langchain" Course - I cannot find it on Udemy. Is it already live? When can I expect it online?
@codingcrashcourses8533
@codingcrashcourses8533 5 ай бұрын
3 weeks and it will be finished
@GeorgAubele
@GeorgAubele 5 ай бұрын
@@codingcrashcourses8533 ❤️
@SeeFoodDie
@SeeFoodDie 6 ай бұрын
Excellent. Thank you.
@gw1284
@gw1284 5 ай бұрын
well explained, Thanks
@SanthoshKammari-ug2gj
@SanthoshKammari-ug2gj 6 ай бұрын
Loved it!
@Leonid.Shamis
@Leonid.Shamis 6 ай бұрын
Great content! (as usual :)) Are you aware of any visual editors (like Flowise, Langflow, etc.) supporting the construction of LangGraph workflows in a drag-and-drop way? Wouldn't that be amazing?
@codingcrashcourses8533
@codingcrashcourses8533 6 ай бұрын
No i was not yet. As far as I like These for Exploration, i would really like to have a yaml for a declarative approach or so :)
@i2c_jason
@i2c_jason 3 ай бұрын
Thank you so much! Can anyone recommend a workflow for hosting my very simple LangGraph code on my website using the AWS toolsuite? I'd love to have some kind of scalable pay-for-compute that can just grow with my web traffic right from the start, rather than getting everything into a notebook and then having to figure out how to host it. I'm a firmware / Python guy and have no clue what I'm doing when it comes to hosting something like this for a very small business.
@codingcrashcourses8533
@codingcrashcourses8533 3 ай бұрын
I would just use a small Server and host everything on my own
@limjuroy7078
@limjuroy7078 6 ай бұрын
Looks impressive and powerful, but I need some time to fully understand it. By the way, I'd like to share my thoughts - perhaps you could consider exploring the LLM OS from Phidata. Their agents are quite powerful, but they are not interconnected, which means you have to run different Python files to use specific tools. I'm not sure if LangGraph can solve this issue or not.
@codingcrashcourses8533
@codingcrashcourses8533 6 ай бұрын
It takes it´s time and is more complex than the alternatives, but in my opinion worth learning it. LLM OS looks quite high level, whats the difference to let´s say CrewAI?
@limjuroy7078
@limjuroy7078 6 ай бұрын
@@codingcrashcourses8533 Looks like it's quite similar to CrewAI.
@limjuroy7078
@limjuroy7078 6 ай бұрын
@@codingcrashcourses8533 Yes, it does seem quite similar to CrewAI; however, CrewAI has the capability to manage all the tools without the need to run a specific Python file.
@limjuroy7078
@limjuroy7078 6 ай бұрын
Hmm, I have never tried CrewAI before, but Phidata does look quite high-level compared to the Lang graph.
@chakerayachi8468
@chakerayachi8468 6 ай бұрын
thanks for your amazing content as usual but i have a question in my mind is it possible to take two answers from each node and combine them into the final answer for exemple i have a tools that generate image and an other tool that describe the image i want to get the image and the description as the final answer
@codingcrashcourses8533
@codingcrashcourses8533 6 ай бұрын
You want to use gpt-vision to describe it?
@chakerayachi8468
@chakerayachi8468 6 ай бұрын
@@codingcrashcourses8533 exactly
@chakerayachi8468
@chakerayachi8468 5 ай бұрын
@@codingcrashcourses8533 yeah exactly so the idea is the generation of the image then the description of it but i need to get the two answers as the final output
@luanmotta5591
@luanmotta5591 6 ай бұрын
Nice video!!
@maysammansor
@maysammansor 2 ай бұрын
I follow your channel and even Udemy course but here please give the exact github code link. sometimes it's confusing to find the right git repo
@codingcrashcourses8533
@codingcrashcourses8533 2 ай бұрын
sorry, that was an error! I updated the link in the description :-)
@maysammansor
@maysammansor 2 ай бұрын
@@codingcrashcourses8533 Thanks
@maysammansor
@maysammansor 2 ай бұрын
@@codingcrashcourses8533 Thanks
@thegrandline24
@thegrandline24 3 ай бұрын
nice
@vutuan-p3d
@vutuan-p3d 6 ай бұрын
finally, thank
@StephenRayner
@StephenRayner 6 ай бұрын
LangGraph,.js plz
@codingcrashcourses8533
@codingcrashcourses8533 6 ай бұрын
Maybe in the future :)
@StephenRayner
@StephenRayner 5 ай бұрын
@@codingcrashcourses8533 are we there yet? LangChain channel release a video on generative UI hit the spot nicely. Did you see it?
@abhishakeyadav1793
@abhishakeyadav1793 6 ай бұрын
first comment
@codingcrashcourses8533
@codingcrashcourses8533 6 ай бұрын
great :p
@say.xy_
@say.xy_ 6 ай бұрын
If you don’t reach 10k subs quickly after this video then langchain/AI community don’t deserve you ffs Their LOSS!
@codingcrashcourses8533
@codingcrashcourses8533 6 ай бұрын
thank you man^^
LangGraph: Hierarchical Agents - How to build Boss & Subordinate Agents
13:35
Coding Crash Courses
Рет қаралды 2,7 М.
Learn LangGraph - The Easy Way
28:29
AI with Misbah
Рет қаралды 33 М.
How Many Balloons To Make A Store Fly?
00:22
MrBeast
Рет қаралды 108 МЛН
How Much Tape To Stop A Lamborghini?
00:15
MrBeast
Рет қаралды 215 МЛН
LangChain vs LangGraph: A Tale of Two Frameworks
9:55
IBM Technology
Рет қаралды 28 М.
AI Agents Build me a Website While I Slept (Here's The Code!) 🚀
23:15
LangGraph 101: it's better than LangChain
32:26
James Briggs
Рет қаралды 85 М.
Conceptual Guide: Multi Agent Architectures
8:58
LangChain
Рет қаралды 24 М.
LangGraph - SQL Agent - Let an LLM interact with your SQL Database
20:22
Coding Crash Courses
Рет қаралды 2,8 М.
LangGraph - Tool based Customer Support bot with DB Interaction
23:57
Coding Crash Courses
Рет қаралды 2,9 М.
Local GraphRAG with LLaMa 3.1 - LangChain, Ollama & Neo4j
15:01
Coding Crash Courses
Рет қаралды 29 М.
How Many Balloons To Make A Store Fly?
00:22
MrBeast
Рет қаралды 108 МЛН