I made a step by step guide for building this project, if you are interested in learning LangChain, LangGraph, RAG, Vector DB's and Similarity Search with one project, then look no further: th-cam.com/video/ShEOoJLSLbI/w-d-xo.html
Can you do a video on your portfolio website and an update on what your job entails. Also it’s AI engineer right? So I can check job postings out. Sheesh maybe you can also review a few job postings in that video too and go over some of the duties. That would be slamming. Just subscribed
Wow thanks for all the ideas. I am as we speak recording an in-depth tutorial on making this project. But I will add those suggestions to my calendar. AI Engineer yes, but there is a lot of title confusion in the ML and AI industries now, so they are not often the same roles at different companies! Love the name btw, sounds like a nootropics haha.
Hi Gustav, thank you for the amazing content over the past week. A detailed tutorial spanning several hours explaining exactly how you made Conda GPT will help out a lot of new learners, including me and will be much appreciated. Hope you will be interested in making one in the future. Thanks again.
Thanks for the feedback I appreciate it! I will consider perhaps making a LangChain course like this, but it would take some time. Is there anything specific that this video didn't answer that you would like help with in a longer video?
Just a from scratch implementation of Conda GPT. It would really help me understand your thought process while coding. I would definitely code along, but with my own use case
I was thinking the same for exec(code), never a good approach to use it, as the LLMs are not deterministic. And for the SQL commands, we can also set another blockage, like, a regex pattern which checks for DML commands and if present, will send it back to the LLM stating to either change it or do something else based on the user question
I like the regex approach for DML commands! As for the exec(code) how would you improve this approach and make it safer? I personally haven't looked much into it..
@@PropTechFounder One way is to run the code in a sandboxed environment, so it does not interact with the host system. Another approach is to check the LLM content by another Model before executing it, to see if any malicious code is present or not
@@tharunbhaskar6795 These are good, I updated the issue with the suggestions. I would like to leave it open to someone to contribute (yourself or someone else). I think checking the LLM content with another model could work, but it goes against the principle of "never fully trust the LLM" so it shouldnt be the only solution
@@PropTechFounder Sure, I will be happy to contribute. I have been working with AI/ML since few years, would love to get involved in some projects By another model, I mean a encoder based model like BERT or any other Sequence Classification Model not another LLM. Or again, I think, we can use regex to find patterns, like check if the code generated by LLM contains something like import os and other stuff that can execute commands that might delete files or modify some other things in the host system By the way, can we connect in discord, maybe we can expand our discussion more on this
Do you have a video tutorial on your process of how you created the code? Did you use AI development tools? Would love to see a AI walk through with the project to help us learn. God bless
@@PropTechFounder , Oh, nice! Didn't hear of Condo Cube before. My wife is a Realtor in Vancouver, Canada. It's an interesting project as I haven't seen any project like this using AI. Yes, would love to see your process as it will help others learn too. When you have time... :) God bless
@@agsvk-com Hey man, I just released 2 videos on my process for developing this project, here is the latest one: th-cam.com/video/ShEOoJLSLbI/w-d-xo.html
Thanks for this example its amazing. I am not python coder just 20% knowledge .. do I have the ability to use ChatGPT to write the codes for me .. is this accepted in the companies now in Europe or USA if u know?
Hey thanks for the feedback. Nothing is stopping you from using ChatGPT (I use mostly Claude AI) but you need to make sure you understand the code and can answer questions about it. Are you a software developer in another language? You can use LangChain in JS as well. Perhaps I will make a video of the interview questions I faced when presenting my projects...
@@PropTechFounder I am a Data Engineer and in this field I encounter a huge amount of tools to know and understand which let me not able to get deep learn python as an example
@@ahmedsomir This is a great foundation for getting into AI and ML, but you should definitely brush up on your python skills and be able to write some code. I am making a tutorial on this project and how to code it so you should try following along to that and see if you are able to make something similar by yourself afterwards.
can i become ai engineer starting with n8n? I'm dyslexic looking at hundreds of line code... always challenging but with n8n i only face to face less code step by step n8n help alot
Never heard of n8n so not sure.. the AI Engineer role is still quite new. If you have trouble focusing on reading code, check out the tips in this video th-cam.com/video/4bz7Ey2ZNiM/w-d-xo.htmlsi=lEqHn9Zg0TKkv5bV
Cool, looks interesting. By the way, can you add the hacktober fest tag to the issues, so more people would be willing to contribute, especially as a part of hacktoberfest
Great suggestion, thank you! I added the 'topic' on the repo, but I couldn't find a way to do so on the issues, did you mean to add the hacktoberfest as a label on each issue?
I made a step by step guide for building this project, if you are interested in learning LangChain, LangGraph, RAG, Vector DB's and Similarity Search with one project, then look no further:
th-cam.com/video/ShEOoJLSLbI/w-d-xo.html
This was high value. Thanks for the boost, Gustav!
Thanks for the great comment, in-depth AI Engineering tutorials coming soon!
Can you do a video on your portfolio website and an update on what your job entails. Also it’s AI engineer right? So I can check job postings out. Sheesh maybe you can also review a few job postings in that video too and go over some of the duties. That would be slamming. Just subscribed
Wow thanks for all the ideas. I am as we speak recording an in-depth tutorial on making this project. But I will add those suggestions to my calendar.
AI Engineer yes, but there is a lot of title confusion in the ML and AI industries now, so they are not often the same roles at different companies!
Love the name btw, sounds like a nootropics haha.
Hi Gustav, thank you for the amazing content over the past week. A detailed tutorial spanning several hours explaining exactly how you made Conda GPT will help out a lot of new learners, including me and will be much appreciated. Hope you will be interested in making one in the future. Thanks again.
Thanks for the feedback I appreciate it!
I will consider perhaps making a LangChain course like this, but it would take some time. Is there anything specific that this video didn't answer that you would like help with in a longer video?
Just a from scratch implementation of Conda GPT. It would really help me understand your thought process while coding. I would definitely code along, but with my own use case
@@nazmusas Alright I'll be making this soon!
@@PropTechFounder Looking forward to it!
@@nazmusas hey man, as promised, I just released the tutorial! Check it out below:
th-cam.com/video/ShEOoJLSLbI/w-d-xo.html
thank you!
Glad you liked it!
I was thinking the same for exec(code), never a good approach to use it, as the LLMs are not deterministic. And for the SQL commands, we can also set another blockage, like, a regex pattern which checks for DML commands and if present, will send it back to the LLM stating to either change it or do something else based on the user question
I like the regex approach for DML commands!
As for the exec(code) how would you improve this approach and make it safer? I personally haven't looked much into it..
@@PropTechFounder One way is to run the code in a sandboxed environment, so it does not interact with the host system. Another approach is to check the LLM content by another Model before executing it, to see if any malicious code is present or not
@@PropTechFounder regex can do a lot more than we can think, leveraging it properly, we can filter out a lot from the outputs generated by the LLMs
@@tharunbhaskar6795 These are good, I updated the issue with the suggestions. I would like to leave it open to someone to contribute (yourself or someone else).
I think checking the LLM content with another model could work, but it goes against the principle of "never fully trust the LLM" so it shouldnt be the only solution
@@PropTechFounder Sure, I will be happy to contribute. I have been working with AI/ML since few years, would love to get involved in some projects
By another model, I mean a encoder based model like BERT or any other Sequence Classification Model not another LLM. Or again, I think, we can use regex to find patterns, like check if the code generated by LLM contains something like import os and other stuff that can execute commands that might delete files or modify some other things in the host system
By the way, can we connect in discord, maybe we can expand our discussion more on this
Please make a tutorial this looks really good
Thanks! The tutorial is on the way, should come out next weekend
Hey man, I took your suggestion and made a tutorial :) check it out here:
th-cam.com/video/ShEOoJLSLbI/w-d-xo.html
A step by step would be the best video ever about RAG
You mean a step by step tutorial to develop this project?
@@PropTechFounder yes
@@joseduarte1240 I think I'll start working on a tutorial/course, seems like a lot of people are asking for this..
@@joseduarte1240 Hey man, I took your suggestion and made a video :) check it out here:
th-cam.com/video/ShEOoJLSLbI/w-d-xo.html
nice video. thx
Thanks for the comment!
Do you have a video tutorial on your process of how you created the code? Did you use AI development tools? Would love to see a AI walk through with the project to help us learn. God bless
Hmm interesting suggestion, I will consider making this! I used Claude.AI and fed it a bunch of internal documents from Condo Cube
@@PropTechFounder , Oh, nice! Didn't hear of Condo Cube before. My wife is a Realtor in Vancouver, Canada. It's an interesting project as I haven't seen any project like this using AI. Yes, would love to see your process as it will help others learn too. When you have time... :) God bless
@@agsvk-com Awesome, a lot of people seem to be asking for a course/tutorial so I think I'll start working on one soon :)
Thanks for the feedback
@@agsvk-com Hey man, I just released 2 videos on my process for developing this project, here is the latest one:
th-cam.com/video/ShEOoJLSLbI/w-d-xo.html
Thanks for this example its amazing. I am not python coder just 20% knowledge .. do I have the ability to use ChatGPT to write the codes for me .. is this accepted in the companies now in Europe or USA if u know?
Hey thanks for the feedback. Nothing is stopping you from using ChatGPT (I use mostly Claude AI) but you need to make sure you understand the code and can answer questions about it.
Are you a software developer in another language? You can use LangChain in JS as well.
Perhaps I will make a video of the interview questions I faced when presenting my projects...
@@PropTechFounder I am a Data Engineer and in this field I encounter a huge amount of tools to know and understand which let me not able to get deep learn python as an example
@@ahmedsomir This is a great foundation for getting into AI and ML, but you should definitely brush up on your python skills and be able to write some code.
I am making a tutorial on this project and how to code it so you should try following along to that and see if you are able to make something similar by yourself afterwards.
@@ahmedsomir here's the tutorial I talked about in case you are interested!
th-cam.com/video/ShEOoJLSLbI/w-d-xo.html
@@PropTechFounder thx so much
can i become ai engineer starting with n8n?
I'm dyslexic looking at hundreds of line code... always challenging but with n8n i only face to face less code step by step n8n help alot
Never heard of n8n so not sure.. the AI Engineer role is still quite new.
If you have trouble focusing on reading code, check out the tips in this video th-cam.com/video/4bz7Ey2ZNiM/w-d-xo.htmlsi=lEqHn9Zg0TKkv5bV
@@PropTechFounder cool thanks!
That depends on your end goal!!!
@@free_thinker4958 what do you mean? isn't n8n able to achieve most of langchain or any other agentic workflow too?
Cool, looks interesting. By the way, can you add the hacktober fest tag to the issues, so more people would be willing to contribute, especially as a part of hacktoberfest
Great suggestion, thank you! I added the 'topic' on the repo, but I couldn't find a way to do so on the issues, did you mean to add the hacktoberfest as a label on each issue?
@@PropTechFounder So you need to specify all three labels (“help wanted”, “good first issue”, and “hacktoberfest” ) for the issues
@@tharunbhaskar6795 Done, thanks for this suggestion!