LangGraph + CrewAI: Crash Course for Beginners [Source Code Included]

  Рет қаралды 28,881

codewithbrandon

codewithbrandon

Күн бұрын

Пікірлер: 88
@MaksymLiamin-y9n
@MaksymLiamin-y9n 4 ай бұрын
THIS IS MINDBLOWING! The combo of CrewAI and LangGraph is just golden!
@andydataguy
@andydataguy 4 ай бұрын
Excited to see more people combining LangGraph and CrewAI! I've been experimenting with it but am still getting my feet wet as a developer. Seeing this live makes me want to drop everything, put my head down, and train until reaching multi-agent gigachad mode. Thanks for the inspo!!
@yunjinbak7478
@yunjinbak7478 3 ай бұрын
I can't find the source code from your github can you make it public?
@goforit5
@goforit5 4 ай бұрын
Wow - too good. I would love to see more of this personal automation use case type videos. I think we all need help automating our lives with AI to do things like reviewing and replying to emails for us so we can spend time on more immportant things. I’d love to see more videos with Crews and LangGraph and Agents running 24/7. Thanks for the content.
@Beenee_AI
@Beenee_AI 4 ай бұрын
Brandon - you have made just another diamond out there!!! I am becoming your groupie dude! Can you please update your Github repo with this code? Thanks!
@ChristopherFoster-McBride
@ChristopherFoster-McBride 3 ай бұрын
Is this on GitHub Brandon, I couldn't see it
@MR_GREEN1337
@MR_GREEN1337 4 ай бұрын
why not just do all of it using Langgraph?
@MachineLearningZuu
@MachineLearningZuu 3 ай бұрын
Because of Multi Agent Aspect which doesn’t capable only in these data frameworks
@theitaliandev
@theitaliandev 3 ай бұрын
I would do it using just langgraph, totally agree with you
@maged_helmy
@maged_helmy 3 ай бұрын
I can not stress how important this question is. Can someone please give a more detailed answer?
@theitaliandev
@theitaliandev 3 ай бұрын
@@maged_helmy a detailed answer could be: there is no need to use CrewAI with Langgraph! Langgraph can do everything CrewAI can do + more!!!
@ArianeQube
@ArianeQube Ай бұрын
@@MachineLearningZuuLanggraph can and indeed does handle multiagent graphs. That is the whole point of the library.
@theitaliandev
@theitaliandev 3 ай бұрын
Am I the only one not understanding the need to use Langgraph with CrewAI? Why not just LangGraph?
@aaronabuusama
@aaronabuusama 3 ай бұрын
Exactly what I was thinking
@bambanx
@bambanx Ай бұрын
Why not using crewai or langgraph alone? Thanks you so much
@maertscisum
@maertscisum 4 ай бұрын
Workflow has it's use, however, State Machine is better for this purpose and more resilient.
@manjunathkampali8942
@manjunathkampali8942 Ай бұрын
Could you please bring out LangraphStudio integration here ? that will be awesome
@jesseybijl2104
@jesseybijl2104 4 ай бұрын
Thanks for all your hard work. Love every video.
@bhancock_ai
@bhancock_ai 4 ай бұрын
Thanks Jessey 😁 I really appreciate it!
@alexandrtortik
@alexandrtortik 2 ай бұрын
Thanks for the fascinating material! I'm sorry for what I want to advise, but auto-formatting a line to fit the screen without placing hard hyphens is + Thanks again for your activity!!!
@RobShocks
@RobShocks 4 ай бұрын
Another fantastic video, you’re covering some great topics. Will def hop into your skool.
@myhendry
@myhendry 3 ай бұрын
excellent stuff. i don't see the source code for this on brandon's github repo
@TJTHEFOOTBALLPROPHET
@TJTHEFOOTBALLPROPHET 4 ай бұрын
This video is your Billie Jean on a Thriller album full of Number 1 Hits - not sure you can top it LOL! OMG YOU WERE BORN TO TEACH!!!!
@a.........1._.2..__..._.....__
@a.........1._.2..__..._.....__ 4 ай бұрын
Fantastic video, still watching. Been using langgraph +crewai for a bit (all guess work).
@johnvicente796
@johnvicente796 3 ай бұрын
I love you videos and content. Please keep it coming. What would be super helpful is if you created a video on how to build an agent swarm with langgraph using SQL databases..not crew ai but all with langgraph. Please and thank you
@bhancock_ai
@bhancock_ai 3 ай бұрын
That’s a really good idea! I have 4 LangChain videos in the queue and then I want to dive deep into LangGraph. I think your idea would be a great suggestion! If you need help with this idea before I’m able to make a video around it, I definitely recommend checking out our Skool community to ask questions as you build out your solution! www.skool.com/ai-developer-accelerator/about
@robel_asefa
@robel_asefa 2 ай бұрын
Please make a video on LangGraph
@bhancock_ai
@bhancock_ai 2 ай бұрын
It’s definitely in the queue! Thanks for letting me know you want to see it!
@CodeSnap01
@CodeSnap01 4 ай бұрын
sir please make a video on deployment also . As pipelining these projects can be tricky. Hope you understand and will implement such major topic.
@bhancock_ai
@bhancock_ai 4 ай бұрын
Great suggestion! As soon as CrewAI+ is ready for production, I’ll make a ton of tutorials to show you guys how you can deploy your crews!
@maxym8559
@maxym8559 3 ай бұрын
Nice video. Actually, in 47:06 I didn't know how to do this step with OpenAI key
@hwasti
@hwasti 2 ай бұрын
I don't see crewai-langgraph repo to check source code
@jofus521
@jofus521 4 ай бұрын
Would be cool to have a state pointer object with methods on it and then only pass the methods to nodes. That might make the state updates a bit clearer. Is that possible here? Coming from golang, so not really a python person.
@sanderschat
@sanderschat 4 ай бұрын
Great content! as usuall Question: possible to make a video on how (and maybe where) to set this up on a hosting platform? My little laptop is asking for peace and quietness these days. But also, when it is on my hosting, i can access the endpoints just via my browser anywhere.
@adebayoadenekan8106
@adebayoadenekan8106 4 ай бұрын
Thank you for these tutorials you make. I have two questions: 1) can we use pydantic's 'BaseModel' for the 'EmailState' class model instead of 'TypedDict' 2) is it safe to think of states & nodes as another implementation of cron-jobs?
@IR240474
@IR240474 2 ай бұрын
Thanks for these great videos! I signed up and got the email, now I have access to the files you use.
@thealwayssmileguy9060
@thealwayssmileguy9060 4 ай бұрын
This is really cool! Just wondering as i am a beginner programmer, how long did i take you to create this full project?
@chjpiu
@chjpiu 4 ай бұрын
Excellent video. Thanks for sharing, Brandon. I also see a lot of potential in Phidata. Could you consider to combine the Phidata with Langgraph or CrewAI
@out-of-sight
@out-of-sight 4 ай бұрын
Thank you for the tutorial Brandon, could you please create another tutorial on CrewAI and Next.js soon? 🤩
@harshilpatel4989
@harshilpatel4989 3 ай бұрын
People are questioning here why not only langgraph, my question is why not only OpenAI api and python?
@virgilbarnard4343
@virgilbarnard4343 4 ай бұрын
Curious, is there a graphical UI for LangGraph yet?
@HomunMage
@HomunMage 4 ай бұрын
i like both LangGraph and crewai i think the future is that LATS will merge into them
@jinil9002
@jinil9002 4 ай бұрын
wow, excellent video. and what is the drawing tool? where can i get it?
@olb47
@olb47 4 ай бұрын
Yeah I wonder too, because I like your approach and would like to implement it as well!
@devisoul
@devisoul 3 ай бұрын
the drawing tool is excalidraw
@Damirnah
@Damirnah 4 ай бұрын
Awesome video, as always. Does somebody know how do these agents perform in other languages then English?
@vastvitamins1966
@vastvitamins1966 4 ай бұрын
Amazing video we get so many emails. Will definitely try this
@lbf5984
@lbf5984 4 ай бұрын
how about incorporating some threading into your crew?
@vinoopb
@vinoopb 4 ай бұрын
Another great one Brandon, thanks for this!
@tomaszzielinski4521
@tomaszzielinski4521 3 ай бұрын
What's the tool you use to draw these cool graphs?
@AIdevel
@AIdevel 4 ай бұрын
Thank you so much for sharing this great tool , can I use it to automatically fill a form ?
@nits_koh
@nits_koh 4 ай бұрын
What terminal do you use and what enables the auto-completion?
@deftuncut
@deftuncut Ай бұрын
So helpful
@umutsonmez5214
@umutsonmez5214 24 күн бұрын
hi guys ı dont have openai api key can ı run this project ?
@bhancock_ai
@bhancock_ai 15 күн бұрын
Unfortunately you’ll need an OpenAI key to run the project. The good news is this whole project will cost a few pennies!
@cudaking777
@cudaking777 4 ай бұрын
It is really great work, thank you. I have question if i reoeate the same action every 30 secs will it not be waste of resources can we use a trigger the moment we receive an email or we can do it every 6 hours.
@olb47
@olb47 4 ай бұрын
Oh that's cool, **python has a spread operator as ... JavaScript! Didn't know that!
@israelcrawford8734
@israelcrawford8734 4 ай бұрын
Keep up the good work Brandon
@daniell.6463
@daniell.6463 4 ай бұрын
I guess you're system is not sending out code to yahoo emails.
@madhudson1
@madhudson1 4 ай бұрын
I kind of feel like you could just cut crewai out and use langgraph for it all
@sr.modanez
@sr.modanez 4 ай бұрын
muito bom professor, top top top, tenho uma sugestao, tem como o sr ensinar usar agentes para escrever sobre um assunto especifico gerar uma imagem e postar no instagram tudo automaticamente ?
@felipefedesign
@felipefedesign 4 ай бұрын
Good usage of CrewAi
@st.3m906
@st.3m906 4 ай бұрын
Join his Skool or else you aren't cool. -Mitch
@bhancock_ai
@bhancock_ai 4 ай бұрын
Thanks Mitch! This cracked me up! 😂
@trendgameshorts3831
@trendgameshorts3831 4 ай бұрын
Incredible !
@KenChase-l2p
@KenChase-l2p 3 ай бұрын
I am waiting for someone to do what everyone is scared of: Create an AI solution that has the ability to rewrite it's own code to give itself abilities that it needs for completing a given task.
@mori-hosseini
@mori-hosseini 2 ай бұрын
Great video
@free_thinker4958
@free_thinker4958 4 ай бұрын
You're the man 😎👏🤘
@terbeest
@terbeest 4 ай бұрын
what software do you use to draw the diagrams?
@terbeest
@terbeest 4 ай бұрын
just caught it... excalidraw... where TF has it been hiding all my life. So great! Visio need not be open ever again.
@yazanrisheh5127
@yazanrisheh5127 4 ай бұрын
Did someone find the source code of this project?
@krysc4d
@krysc4d 4 ай бұрын
Is there an option that the system will save the emails as drafts on gmail?
@bhancock_ai
@bhancock_ai 4 ай бұрын
Hey! That’s exactly what it does! The drafts will appear in your Gmail drafts so you can quickly edit them and send them out!
@krysc4d
@krysc4d 4 ай бұрын
@@bhancock_ai amazing job. Thanks man. I wonder how to connect all the amazing tool into one manager.
@akj3344
@akj3344 4 ай бұрын
I cant find the source code on your github. Perhaps the repo is private.
@yazanrisheh5127
@yazanrisheh5127 4 ай бұрын
Same
@RetiredVet1
@RetiredVet1 Ай бұрын
github.com/crewAIInc/crewAI-examples/tree/main/CrewAI-LangGraph is the code it looks like Brandon is using.
@teprox7690
@teprox7690 4 ай бұрын
4:30: The use case sounds scary to me. In a few months, we will be spammed with AI newsletters that no longer have any real content. Nevertheless, your videos are great!
@maankabe01
@maankabe01 4 ай бұрын
langchain crash course
@bhancock_ai
@bhancock_ai 4 ай бұрын
You’ve read my mind! I’m going to start working on a LangChain video this week
@dbwstein
@dbwstein 4 ай бұрын
I’d love to see if I can use langchain with ollama, but where ollama is not local; ie if i have ollama in 1 container and my backend in a different container.
How To Connect Local LLMs to CrewAI [Ollama, Llama2, Mistral]
25:07
codewithbrandon
Рет қаралды 69 М.
Win This Dodgeball Game or DIE…
00:36
Alan Chikin Chow
Рет қаралды 9 МЛН
小丑妹妹插队被妈妈教训!#小丑#路飞#家庭#搞笑
00:12
家庭搞笑日记
Рет қаралды 36 МЛН
Amazing Parenting Hacks! 👶✨ #ParentingTips #LifeHacks
00:18
Snack Chat
Рет қаралды 20 МЛН
CrewAI Tutorial: Complete Crash Course for Beginners
1:05:43
codewithbrandon
Рет қаралды 185 М.
Has Generative AI Already Peaked? - Computerphile
12:48
Computerphile
Рет қаралды 988 М.
LangChain Master Class For Beginners 2024 [+20 Examples, LangChain V0.2]
3:17:51
LangGraph Simplified: Master Custom AI Agent Creation
43:51
Data Centric
Рет қаралды 31 М.
LangChain Explained in 13 Minutes | QuickStart Tutorial for Beginners
12:44
Why Agent Frameworks Will Fail (and what to use instead)
19:21
Dave Ebbelaar
Рет қаралды 61 М.
How To Connect Llama3 to CrewAI [Groq + Ollama]
31:42
codewithbrandon
Рет қаралды 32 М.
Local GraphRAG with LLaMa 3.1 - LangChain, Ollama & Neo4j
15:01
Coding Crash Courses
Рет қаралды 18 М.
Stop using ChatGPT, build Agents instead - Maya Akim
1:28:47
David Ondrej
Рет қаралды 65 М.
18 Months of Building Autonomous AI Agents in 42 Minutes
42:12
Devin Kearns | CUSTOM AI STUDIO
Рет қаралды 122 М.
Win This Dodgeball Game or DIE…
00:36
Alan Chikin Chow
Рет қаралды 9 МЛН